|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.apache.commons.collections.list.AbstractLinkedList.Node
A node within the linked list.
Field Summary | |
protected AbstractLinkedList.Node |
next
A pointer to the node after this node |
protected AbstractLinkedList.Node |
previous
A pointer to the node before this node |
protected Object |
value
The object contained within this node |
Constructor Summary | |
protected |
AbstractLinkedList.Node()
Constructs a new header node. |
protected |
AbstractLinkedList.Node(AbstractLinkedList.Node previous,
AbstractLinkedList.Node next,
Object value)
Constructs a new node. |
protected |
AbstractLinkedList.Node(Object value)
Constructs a new node. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
protected AbstractLinkedList.Node previous
protected AbstractLinkedList.Node next
protected Object value
Constructor Detail |
protected AbstractLinkedList.Node()
protected AbstractLinkedList.Node(Object value)
value
- the value to storeprotected AbstractLinkedList.Node(AbstractLinkedList.Node previous, AbstractLinkedList.Node next, Object value)
previous
- the previous node in the listnext
- the next node in the listvalue
- the value to store
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |