| Package | Description |
|---|---|
| net.sf.mmm.util.collection.base |
Contains public implementations of the
Collection-Util API. |
| Modifier and Type | Field and Description |
|---|---|
private BasicDoubleLinkedNode<V> |
BasicDoubleLinkedNode.previous |
| Modifier and Type | Method and Description |
|---|---|
BasicDoubleLinkedNode<V> |
BasicDoubleLinkedNode.getPrevious()
This method gets the previous node of the double linked list.
|
BasicDoubleLinkedNode<V> |
BasicDoubleLinkedNode.insertAsNext(V value,
boolean overrideNullValue)
This method inserts the given
value into the list at the position represented by this node. |
BasicDoubleLinkedNode<V> |
BasicDoubleLinkedNode.insertAsPrevious(V value,
boolean overrideNullValue)
This method inserts the given
value into the list at the position represented by this node. |
| Modifier and Type | Method and Description |
|---|---|
void |
BasicDoubleLinkedNode.insertAsNext(BasicDoubleLinkedNode<V> node)
This method inserts the given
node into the list immediately after the position represented by this
node. |
void |
BasicDoubleLinkedNode.insertAsPrevious(BasicDoubleLinkedNode<V> node)
This method inserts the given
node into the list immediately before the position represented by this
node. |
void |
BasicDoubleLinkedNode.setPrevious(BasicDoubleLinkedNode<V> previous)
This method sets the
previous node. |
Copyright © 2001–2015 mmm-Team. All rights reserved.