Uses of Interface
org.parboiled.trees.MutableTreeNode
-
Packages that use MutableTreeNode Package Description org.parboiled.trees -
-
Uses of MutableTreeNode in org.parboiled.trees
Classes in org.parboiled.trees with type parameters of type MutableTreeNode Modifier and Type Interface Description interfaceMutableTreeNode<T extends MutableTreeNode<T>>ATreeNodespecialiation that allow for mutability of the tree structure.classMutableTreeNodeImpl<T extends MutableTreeNode<T>>A base implementation of theMutableTreeNode.Subinterfaces of MutableTreeNode in org.parboiled.trees Modifier and Type Interface Description interfaceMutableBinaryTreeNode<T extends MutableBinaryTreeNode<T>>AMutableTreeNodespecialization also satisfying theBinaryTreeNodeinterface and providing mutability methods.Classes in org.parboiled.trees that implement MutableTreeNode Modifier and Type Class Description classMutableBinaryTreeNodeImpl<T extends MutableBinaryTreeNode<T>>A simpleMutableBinaryTreeNodeimplementation based on theMutableTreeNodeImpl.classMutableTreeNodeImpl<T extends MutableTreeNode<T>>A base implementation of theMutableTreeNode.Methods in org.parboiled.trees with type parameters of type MutableTreeNode Modifier and Type Method Description static <T extends MutableTreeNode<T>>
voidTreeUtils. addChild(T parent, T child)Adds a new child node to a given MutableTreeNode parent.static <T extends MutableTreeNode<T>>
voidTreeUtils. removeChild(T parent, T child)Removes the given child from the given parent node.
-