| Prev Class | Next Class | Frames | No Frames |
| Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
java.lang.Objectorg.apache.commons.collections.list.AbstractLinkedList.Nodeprotected static class AbstractLinkedList.Nodeextends Objectvalue property
is via the methods on this class.
Field Summary | |
protected AbstractLinkedList.Node |
|
protected AbstractLinkedList.Node |
|
protected Object |
|
Constructor Summary | |
| |
| |
| |
Method Summary | |
protected AbstractLinkedList.Node |
|
protected AbstractLinkedList.Node |
|
protected Object |
|
protected void |
|
protected void |
|
protected void |
|
protected Node()
Constructs a new header node.
protected Node(Object value)
Constructs a new node.
- Parameters:
value- the value to store
protected Node(AbstractLinkedList.Node previous, AbstractLinkedList.Node next, Object value)
Constructs a new node.
- Parameters:
previous- the previous node in the listnext- the next node in the listvalue- the value to store
protected AbstractLinkedList.Node getNextNode()
Gets the next node.
- Returns:
- the next node
- Since:
- Commons Collections 3.1
protected AbstractLinkedList.Node getPreviousNode()
Gets the previous node.
- Returns:
- the previous node
- Since:
- Commons Collections 3.1
protected Object getValue()
Gets the value of the node.
- Returns:
- the value
- Since:
- Commons Collections 3.1
protected void setNextNode(AbstractLinkedList.Node next)
Sets the next node.
- Parameters:
next- the next node
- Since:
- Commons Collections 3.1
protected void setPreviousNode(AbstractLinkedList.Node previous)
Sets the previous node.
- Parameters:
previous- the previous node
- Since:
- Commons Collections 3.1
protected void setValue(Object value)
Sets the value of the node.
- Parameters:
value- the value
- Since:
- Commons Collections 3.1