Class ConcurrentLinkedBag.Node
java.lang.Object
edu.harvard.seas.pl.abcdatalog.util.datastructures.ConcurrentLinkedBag.Node
- Enclosing class:
ConcurrentLinkedBag<T>
A node in the linked list.
-
Method Summary
-
Method Details
-
getVal
Get the value of this node.- Returns:
- the value
-
getNext
Returns the next node in the linked list, or null if this is the last node.- Returns:
- the next node, or null
-