Package java.util
Class LinkedList

Public Method get

Object get(int index)

Overrides:

_INSERT_METHOD_SIGNATURE_HERE_

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.