java.lang.Object
tools.jackson.databind.util.LinkedNode<T>
- All Implemented Interfaces:
Serializable
Node of a forward-only linked list.
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic <ST> booleancontains(LinkedNode<ST> node, ST value) Convenience method that can be used to check if a linked list with given head node (which may be null to indicate empty list) contains given valuevoidlinkNext(LinkedNode<T> n) next()value()
-
Constructor Details
-
LinkedNode
-
-
Method Details
-
linkNext
-
next
-
value
-
contains
Convenience method that can be used to check if a linked list with given head node (which may be null to indicate empty list) contains given value- Type Parameters:
ST- Type argument that defines contents of the linked list parameter- Parameters:
node- Head node of the linked listvalue- Value to look for- Returns:
- True if linked list contains the value, false otherwise
-