Frames | No Frames |
Constructors with parameter type org.apache.commons.collections.list.AbstractLinkedList.Node | |
AbstractLinkedList.Node.Node(AbstractLinkedList.Node previous, AbstractLinkedList.Node next, Object value) Constructs a new node. |
Fields of type org.apache.commons.collections.list.AbstractLinkedList.Node | |
AbstractLinkedList.Node | The last node that was returned by next() or previous() . |
AbstractLinkedList.Node | The first cached node, or null if no nodes are cached. |
AbstractLinkedList.Node | A AbstractLinkedList.Node which indicates the start and end of the list and does not
hold a value. |
AbstractLinkedList.Node | The node that will be returned by next() . |
AbstractLinkedList.Node | A pointer to the node after this node |
AbstractLinkedList.Node | A pointer to the node before this node |
Methods with parameter type org.apache.commons.collections.list.AbstractLinkedList.Node | |
void | AbstractLinkedList.addNode(AbstractLinkedList.Node nodeToInsert, AbstractLinkedList.Node insertBeforeNode) Inserts a new node into the list. |
void | CursorableLinkedList.addNode(AbstractLinkedList.Node nodeToInsert, AbstractLinkedList.Node insertBeforeNode) Inserts a new node into the list. |
void | Creates a new node with the specified object as its
value and inserts it after node . |
void | Creates a new node with the specified object as its
value and inserts it before node . |
void | Adds a node to the cache, if the cache isn't full. |
void | Informs all of my registered cursors that the specified
element was changed. |
void | Informs all of my registered cursors that the specified
element was just added to my list. |
void | Informs all of my registered cursors that the specified
element was just removed from my list. |
void | Handle event from the list when a node has changed. |
void | Handle event from the list when a node has been added. |
void | Handle event from the list when a node has been removed. |
void | Removes the specified node from the list. |
void | Removes the specified node from the list. |
void | Removes the node from the list, storing it in the cache for reuse
if the cache is not yet full. |
void | Sets the next node. |
void | Sets the previous node. |
void | Updates the node with a new value. |
void | Updates the node with a new value. |
Methods with return type org.apache.commons.collections.list.AbstractLinkedList.Node | |
AbstractLinkedList.Node | Creates a new node with previous, next and element all set to null. |
AbstractLinkedList.Node | AbstractLinkedList.createNode(Object value) Creates a new node with the specified properties. |
AbstractLinkedList.Node | NodeCachingLinkedList.createNode(Object value) Creates a new node, either by reusing one from the cache or creating
a new one. |
AbstractLinkedList.Node | Gets the last node returned. |
AbstractLinkedList.Node | Gets the next node. |
AbstractLinkedList.Node | AbstractLinkedList.getNode(int index, boolean endMarkerAllowed) Gets the node at a particular index. |
AbstractLinkedList.Node | Gets a node from the cache. |
AbstractLinkedList.Node | Gets the previous node. |