Package java.util
Class LinkedList
void addLast(Object o)
_INSERT_METHOD_SIGNATURE_HERE_
Description:
Appends the given element to the end of this list.
Example
LinkedList linkedList = new LinkedList();
linkedList.add("List");
linkedList.addLast("Linked");
Logger.log(linkedList.toString());
The example above constructs a new LinkedList, adds elements to the list, and appends an element at the end of this list.