Uses of Class
org.jparsec.ParseTree
-
Packages that use ParseTree Package Description org.jparsec Provides core Parser implementations for parser combinator logic.org.jparsec.error Provides interfaces and classes for advanced error handling. -
-
Uses of ParseTree in org.jparsec
Fields in org.jparsec with type parameters of type ParseTree Modifier and Type Field Description private java.util.List<ParseTree>ParseTree. childrenMethods in org.jparsec that return ParseTree Modifier and Type Method Description (package private) ParseTreeParseContext. buildErrorParseTree()(package private) ParseTreeParseContext. buildParseTree()ParseTreeParser. parseTree(java.lang.CharSequence source)Parsessourceand returns aParseTreecorresponding to the syntactical structure of the input.(package private) ParseTreeTreeNode. toParseTree()Converts this node into aParseTreerepresentation.Methods in org.jparsec that return types with arguments of type ParseTree Modifier and Type Method Description java.util.List<ParseTree>ParseTree. getChildren()Returns the immutable list of child nodes that correspond tolabeledparsers syntactically enclosed inside parent parser.Constructor parameters in org.jparsec with type arguments of type ParseTree Constructor Description ParseTree(java.lang.String name, int beginIndex, int endIndex, java.lang.Object value, java.util.List<ParseTree> children) -
Uses of ParseTree in org.jparsec.error
Fields in org.jparsec.error declared as ParseTree Modifier and Type Field Description private ParseTreeParserException. parseTreeMethods in org.jparsec.error that return ParseTree Modifier and Type Method Description ParseTreeParserException. getParseTree()Returns the parse tree until the parse error happened, whenparseTree()was invoked.Methods in org.jparsec.error with parameters of type ParseTree Modifier and Type Method Description voidParserException. setParseTree(ParseTree parseTree)
-