Uses of Interface
org.parboiled.trees.TreeNode
Packages that use TreeNode
-
Uses of TreeNode in org.parboiled
Subinterfaces of TreeNode in org.parboiledModifier and TypeInterfaceDescriptioninterface
Node<V>
Represents a node in the parse tree created during a parsing run. -
Uses of TreeNode in org.parboiled.trees
Classes in org.parboiled.trees with type parameters of type TreeNodeModifier and TypeClassDescriptionclass
ImmutableTreeNode<T extends TreeNode<T>>
AnImmutableGraphNode
specialization representing a tree node with a parent field linking back to the nodes (only) parent.interface
A specialization of aGraphNode
that contains a reference to its parent, thereby making the graph a tree (since each node can now have only one parent node).Subinterfaces of TreeNode in org.parboiled.treesModifier and TypeInterfaceDescriptioninterface
BinaryTreeNode<T extends BinaryTreeNode<T>>
ATreeNode
specialization with only two child nodes, left and right.interface
MutableBinaryTreeNode<T extends MutableBinaryTreeNode<T>>
AMutableTreeNode
specialization also satisfying theBinaryTreeNode
interface and providing mutability methods.interface
MutableTreeNode<T extends MutableTreeNode<T>>
ATreeNode
specialiation that allow for mutability of the tree structure.Classes in org.parboiled.trees that implement TreeNodeModifier and TypeClassDescriptionclass
ImmutableBinaryTreeNode<T extends BinaryTreeNode<T>>
A simple immutable implementation of theBinaryTreeNode
interface.class
ImmutableTreeNode<T extends TreeNode<T>>
AnImmutableGraphNode
specialization representing a tree node with a parent field linking back to the nodes (only) parent.class
MutableBinaryTreeNodeImpl<T extends MutableBinaryTreeNode<T>>
A simpleMutableBinaryTreeNode
implementation based on theMutableTreeNodeImpl
.class
MutableTreeNodeImpl<T extends MutableTreeNode<T>>
A base implementation of theMutableTreeNode
.Methods in org.parboiled.trees with type parameters of type TreeNode