Package org.parboiled.trees
Class ImmutableGraphNode<T extends GraphNode<T>>
- java.lang.Object
-
- org.parboiled.trees.ImmutableGraphNode<T>
-
- Type Parameters:
T
- the actual implementation type of this ImmutableGraphNode
- All Implemented Interfaces:
GraphNode<T>
- Direct Known Subclasses:
AbstractMatcher
,ImmutableTreeNode
public class ImmutableGraphNode<T extends GraphNode<T>> extends java.lang.Object implements GraphNode<T>
A simple, immutableGraphNode
implementation.
-
-
Constructor Summary
Constructors Constructor Description ImmutableGraphNode()
ImmutableGraphNode(java.util.List<T> children)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<T>
getChildren()
Returns the sub nodes of this node.
-
-
-
Constructor Detail
-
ImmutableGraphNode
public ImmutableGraphNode()
-
ImmutableGraphNode
public ImmutableGraphNode(java.util.List<T> children)
-
-