Package org.dbunit.util.concurrent
Class LinkedNode
java.lang.Object
org.dbunit.util.concurrent.LinkedNode
A standard linked list node used in various queue classes
- Since:
- ? (pre 2.1)
- Version:
- $Revision$ $Date$
- Author:
- Doug Lea, Last changed by: $Author$
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe next node in the list, ornullif this is the last node.The value held by this node. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.LinkedNode(Object x) Constructs a node holding the given value.LinkedNode(Object x, LinkedNode n) Constructs a node holding the given value and linked to the given next node. -
Method Summary
-
Field Details
-
value
The value held by this node. -
next
The next node in the list, ornullif this is the last node.
-
-
Constructor Details
-
LinkedNode
public LinkedNode()Default constructor. -
LinkedNode
Constructs a node holding the given value.- Parameters:
x- the value held by this node.
-
LinkedNode
Constructs a node holding the given value and linked to the given next node.- Parameters:
x- the value held by this node.n- the next node in the list.
-