Java Doc: http://java.sun.com/javase/6/docs/api/java/util/LinkedList.html
See Also:
java util List
addFirst(E e) Inserts the specified element at the beginning of this list.
addLast(E e) Appends the specified element to the end of this list.
descendingIterator?() Returns an iterator over the elements in this deque in reverse sequential order.
element?() Retrieves, but does not remove, the head (first element) of this list.
getFirst() Returns the first element in this list.
getLast() Returns the last element in this list.
lastIndexOf?(Object o) Returns the index of the last occurrence of the specified element in this list, or -1 if this list does not contain the element.
offer?(E e) Adds the specified element as the tail (last element) of this list.
offerFirst?(E e) Inserts the specified element at the front of this list.
offerLast?(E e) Inserts the specified element at the end of this list.
peek?() Retrieves, but does not remove, the head (first element) of this list.
peekFirst?() Retrieves, but does not remove, the first element of this list, or returns null if this list is empty.
peekLast?() Retrieves, but does not remove, the last element of this list, or returns null if this list is empty.
poll?() Retrieves and removes the head (first element) of this list
pollFirst?() Retrieves and removes the first element of this list, or returns null if this list is empty.
pollLast?() Retrieves and removes the last element of this list, or returns null if this list is empty.
pop() Pops an element from the stack represented by this list.
push?(E e) Pushes an element onto the stack represented by this list.
removeFirst() Removes and returns the first element from this list.
removeFirstOccurrence?(Object o) Removes the first occurrence of the specified element in this list (when traversing the list from head to tail).
removeLast() Removes and returns the last element from this list.
removeLastOccurrence?(Object o) Removes the last occurrence of the specified element in this list (when traversing the list from head to tail).