R
raw type

A parameterized type invoked without its parameter. ArrayList<E> is a parameterized type. You can either supply a parameter for E, or you can forget about it, in which case your invocation is ArrayList aList = new ArrayList();, and aList is then referred to as a raw type.

reference

A data element (object or interface) that serves as a pointer to an address in memory where the object is stored. A reference variable is a name used to reference a particular instance of a Java class.

return

A Java keyword used to indicate that a method has completed execution, and should give control back to the caller. return is optionally followed by a value or expression as required by the method definition. The following are all legal: return;, return ...

Get Java Garage now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.