Package java.util
Class LinkedList
Description:
Returns the element at the position specified by the index argument.
Example
LinkedList linkedList = new LinkedList();
linkedList.add("Linked");
linkedList.add("List");
Logger.log(linkedList.get(0) + " " + linkedList.get(1));
The get method returns the specified element.