Uses of Interface
org.parboiled.Node
Packages that use Node
-
Uses of Node in org.parboiled
Subinterfaces with type arguments of type Node in org.parboiledModifier and TypeInterfaceDescriptioninterfaceNode<V>Represents a node in the parse tree created during a parsing run.Methods in org.parboiled that return NodeMethods in org.parboiled that return types with arguments of type NodeModifier and TypeMethodDescriptionContext.getSubNodes()Returns the parse tree subnodes already created in the current context scope.MatcherContext.getSubNodes() -
Uses of Node in org.parboiled.support
Classes in org.parboiled.support that implement interfaces with type arguments of type NodeModifier and TypeClassDescriptionclassA simple Node predicate determining whether a Node matches a given label prefix.classA simple Formatterthat provides String representation for parse tree nodes. Fields in org.parboiled.support declared as NodeModifier and TypeFieldDescriptionParsingResult.parseTreeRootThe root node of the parse tree created by the parsing run.Fields in org.parboiled.support with type parameters of type NodeModifier and TypeFieldDescriptionFilters.SKIP_EMPTY_OPTSA predicate for Node tree printing, suppresses printing of parse tree nodes for Optional rules that do not have sub nodes.Filters.SKIP_EMPTY_OPTS_AND_ZOMSA predicate for Node tree printing, suppresses printing of parse tree nodes for Optional and ZeroOrMore rules that do not have sub nodes.Filters.SKIP_EMPTY_ZOMSA predicate for Node tree printing, suppresses printing of parse tree nodes for ZeroOrMore rules that do not have sub nodes.Methods in org.parboiled.support with type parameters of type NodeModifier and TypeMethodDescriptionstatic <V, C extends Collection<Node<V>>>
CParseTreeUtils.collectNodes(List<Node<V>> parents, Predicate<Node<V>> predicate, C collection) Collects all nodes underneath the given parents for which the given predicate evaluates to true.static <V, C extends Collection<Node<V>>>
CParseTreeUtils.collectNodes(Node<V> parent, Predicate<Node<V>> predicate, C collection) Collects all nodes underneath the given parent for which the given predicate evaluates to true.static <V, C extends Collection<Node<V>>>
CParseTreeUtils.collectNodesByPath(List<Node<V>> parents, String path, C collection) Collects all nodes underneath the given parents that match the given path.static <V, C extends Collection<Node<V>>>
CParseTreeUtils.collectNodesByPath(Node<V> parent, String path, C collection) Collects all nodes underneath the given parent that match the given path.Methods in org.parboiled.support that return NodeModifier and TypeMethodDescriptionstatic <V> Node<V> ParseTreeUtils.findLastNode(List<Node<V>> parents, Predicate<Node<V>> predicate) Returns the last node underneath the given parents for which the given predicate evaluates to true.static <V> Node<V> ParseTreeUtils.findLastNode(Node<V> parent, Predicate<Node<V>> predicate) Returns the last node underneath the given parent for which the given predicate evaluates to true.static <V> Node<V> Returns the first node underneath the given parents for which the given predicate evaluates to true.static <V> Node<V> Returns the first node underneath the given parent for which the given predicate evaluates to true.static <V> Node<V> ParseTreeUtils.findNodeByLabel(List<Node<V>> parents, String labelPrefix) Returns the first node underneath the given parents which matches the given label prefix.static <V> Node<V> ParseTreeUtils.findNodeByLabel(Node<V> parent, String labelPrefix) Returns the first node underneath the given parent for which matches the given label prefix.static <V> Node<V> ParseTreeUtils.findNodeByPath(List<Node<V>> parents, String path) Returns the node underneath the given parents that matches the given path.static <V> Node<V> ParseTreeUtils.findNodeByPath(Node<V> parent, String path) Returns the parse tree node underneath the given parent that matches the given path.Methods in org.parboiled.support with parameters of type NodeModifier and TypeMethodDescriptionbooleanstatic <V, C extends Collection<Node<V>>>
CParseTreeUtils.collectNodes(Node<V> parent, Predicate<Node<V>> predicate, C collection) Collects all nodes underneath the given parent for which the given predicate evaluates to true.static <V, C extends Collection<Node<V>>>
CParseTreeUtils.collectNodesByPath(Node<V> parent, String path, C collection) Collects all nodes underneath the given parent that match the given path.static <V> Node<V> ParseTreeUtils.findLastNode(Node<V> parent, Predicate<Node<V>> predicate) Returns the last node underneath the given parent for which the given predicate evaluates to true.static <V> Node<V> Returns the first node underneath the given parent for which the given predicate evaluates to true.static <V> Node<V> ParseTreeUtils.findNodeByLabel(Node<V> parent, String labelPrefix) Returns the first node underneath the given parent for which matches the given label prefix.static <V> Node<V> ParseTreeUtils.findNodeByPath(Node<V> parent, String path) Returns the parse tree node underneath the given parent that matches the given path.static StringParseTreeUtils.getNodeText(Node<?> node, InputBuffer inputBuffer) Returns the input text matched by the given node, with error correction.Method parameters in org.parboiled.support with type arguments of type NodeModifier and TypeMethodDescriptionstatic <V, C extends Collection<Node<V>>>
CParseTreeUtils.collectNodes(List<Node<V>> parents, Predicate<Node<V>> predicate, C collection) Collects all nodes underneath the given parents for which the given predicate evaluates to true.static <V, C extends Collection<Node<V>>>
CParseTreeUtils.collectNodes(List<Node<V>> parents, Predicate<Node<V>> predicate, C collection) Collects all nodes underneath the given parents for which the given predicate evaluates to true.static <V, C extends Collection<Node<V>>>
CParseTreeUtils.collectNodes(Node<V> parent, Predicate<Node<V>> predicate, C collection) Collects all nodes underneath the given parent for which the given predicate evaluates to true.static <V, C extends Collection<Node<V>>>
CParseTreeUtils.collectNodesByPath(List<Node<V>> parents, String path, C collection) Collects all nodes underneath the given parents that match the given path.static <V> Node<V> ParseTreeUtils.findLastNode(List<Node<V>> parents, Predicate<Node<V>> predicate) Returns the last node underneath the given parents for which the given predicate evaluates to true.static <V> Node<V> ParseTreeUtils.findLastNode(List<Node<V>> parents, Predicate<Node<V>> predicate) Returns the last node underneath the given parents for which the given predicate evaluates to true.static <V> Node<V> ParseTreeUtils.findLastNode(Node<V> parent, Predicate<Node<V>> predicate) Returns the last node underneath the given parent for which the given predicate evaluates to true.static <V> Node<V> Returns the first node underneath the given parents for which the given predicate evaluates to true.static <V> Node<V> Returns the first node underneath the given parents for which the given predicate evaluates to true.static <V> Node<V> Returns the first node underneath the given parent for which the given predicate evaluates to true.static <V> Node<V> ParseTreeUtils.findNodeByLabel(List<Node<V>> parents, String labelPrefix) Returns the first node underneath the given parents which matches the given label prefix.static <V> Node<V> ParseTreeUtils.findNodeByPath(List<Node<V>> parents, String path) Returns the node underneath the given parents that matches the given path.static <V> StringParseTreeUtils.printNodeTree(ParsingResult<V> parsingResult, Predicate<Node<V>> nodeFilter, Predicate<Node<V>> subTreeFilter) Creates a readable string represenation of the parse tree in thee givenParsingResultobject.Constructors in org.parboiled.support with parameters of type NodeModifierConstructorDescriptionParsingResult(boolean matched, Node<V> parseTreeRoot, ValueStack<V> valueStack, List<ParseError> parseErrors, InputBuffer inputBuffer) Creates a new ParsingResult.