|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.commons.collections4.list.AbstractLinkedList.Node<E>
protected static class AbstractLinkedList.Node<E>
A node within the linked list.
From Commons Collections 3.1, all access to the value
property
is via the methods on this class.
Field Summary | |
---|---|
protected AbstractLinkedList.Node<E> |
next
A pointer to the node after this node |
protected AbstractLinkedList.Node<E> |
previous
A pointer to the node before this node |
protected E |
value
The object contained within this node |
Constructor Summary | |
---|---|
protected |
AbstractLinkedList.Node()
Constructs a new header node. |
protected |
AbstractLinkedList.Node(AbstractLinkedList.Node<E> previous,
AbstractLinkedList.Node<E> next,
E value)
Constructs a new node. |
protected |
AbstractLinkedList.Node(E value)
Constructs a new node. |
Method Summary | |
---|---|
protected AbstractLinkedList.Node<E> |
getNextNode()
Gets the next node. |
protected AbstractLinkedList.Node<E> |
getPreviousNode()
Gets the previous node. |
protected E |
getValue()
Gets the value of the node. |
protected void |
setNextNode(AbstractLinkedList.Node<E> next)
Sets the next node. |
protected void |
setPreviousNode(AbstractLinkedList.Node<E> previous)
Sets the previous node. |
protected void |
setValue(E value)
Sets the value of the node. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected AbstractLinkedList.Node<E> previous
protected AbstractLinkedList.Node<E> next
protected E value
Constructor Detail |
---|
protected AbstractLinkedList.Node()
protected AbstractLinkedList.Node(E value)
value
- the value to storeprotected AbstractLinkedList.Node(AbstractLinkedList.Node<E> previous, AbstractLinkedList.Node<E> next, E value)
previous
- the previous node in the listnext
- the next node in the listvalue
- the value to storeMethod Detail |
---|
protected E getValue()
protected void setValue(E value)
value
- the valueprotected AbstractLinkedList.Node<E> getPreviousNode()
protected void setPreviousNode(AbstractLinkedList.Node<E> previous)
previous
- the previous nodeprotected AbstractLinkedList.Node<E> getNextNode()
protected void setNextNode(AbstractLinkedList.Node<E> next)
next
- the next node
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |