Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
java.util.LinkedList.Entry

Uses of LinkedList.Entry in java.util
 

Fields in java.util declared as LinkedList.Entry
(package private)  LinkedList.Entry LinkedList.first
          The first element in the list.
(package private)  LinkedList.Entry LinkedList.last
          The last element in the list.
(package private)  LinkedList.Entry LinkedList.Entry.next
          The next list entry, null if this is last.
(package private)  LinkedList.Entry LinkedList.Entry.previous
          The previous list entry, null if this is first.
private  LinkedList.Entry LinkedList.LinkedListItr.next
          Entry that will be returned by next().
private  LinkedList.Entry LinkedList.LinkedListItr.previous
          Entry that will be returned by previous().
private  LinkedList.Entry LinkedList.LinkedListItr.lastReturned
          Entry that will be affected by remove() or set().
 

Methods in java.util that return LinkedList.Entry
(package private)  LinkedList.Entry LinkedList.getEntry(int n)
          Obtain the Entry at a given position in a list.
 

Methods in java.util with parameters of type LinkedList.Entry
(package private)  void LinkedList.removeEntry(LinkedList.Entry e)
          Remove an entry from the list.
private  void LinkedList.addLastEntry(LinkedList.Entry e)
          Inserts an element at the end of the list.