|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
V - is the generic type of the value of this node.NODE - is the generic type of the node
itself.public interface DoubleLinkedNode<V,NODE extends DoubleLinkedNode<V,NODE>>
This is the interface for a node of a double linked list.
ATTENTION:
According to the generic-type-system of Java this interface can not be used
as a proper API until the generic <NODE> is finally bound. Please use
BasicDoubleLinkedNode instead.
| Method Summary | |
|---|---|
NODE |
getPrevious()
This method gets the previous node of the double linked list. |
boolean |
isLinked()
This method determines if this node is linked. |
| Methods inherited from interface net.sf.mmm.util.collection.api.LinkedNode |
|---|
addToList, getNext, getValue, toList |
| Method Detail |
|---|
NODE getPrevious()
null if this is the first node
(head).boolean isLinked()
next node.
A node is also linked if it has a previous node.
isLinked in interface LinkedNode<V,NODE extends DoubleLinkedNode<V,NODE>>true if linked, false otherwise.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||