Example
Retrieve the initial item from the list.
} |
Definition and Usage
The getFirst() method retrieves the first item in a list.
Tip: Employ the getLast() method to obtain the last item in a list.
public T getFirst() |
T
refers to the data type of items in the list.
None.
Returns: |
The initial element in the list |
Throws: |
NoSuchElementException occurs if the list is empty. |