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>> extends LinkedNode<V,NODE>
BasicDoubleLinkedNode
instead.Modifier and Type | Method and Description |
---|---|
NODE |
getPrevious()
This method gets the previous node of the double linked list.
|
boolean |
isLinked()
This method determines if this node is linked.
|
addToList, getNext, getValue, toList
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.Copyright © 2001–2016 mmm-Team. All rights reserved.