Data structure providing access to a list of Person objects.
Public Method Summary
| Person |
get(int position)
Get the item at the specified position.
|
Inherited Method Summary
Public Methods
public Person get (int position)
Get the item at the specified position. Note that the objects returned from subsequent invocations of this method for the same position may not be identical objects, but will be equal in value. In other words:
buffer.get(i) == buffer.get(i) may return false.
buffer.get(i).equals(buffer.get(i)) will return true.
Parameters
| position | The position of the item to retrieve. |
|---|
Returns
- the item at
positionin this buffer.
