Uses of Interface
org.apache.commons.jexl2.parser.Node
-
Packages that use Node Package Description org.apache.commons.jexl2.parser -
-
Uses of Node in org.apache.commons.jexl2.parser
Classes in org.apache.commons.jexl2.parser that implement Node Modifier and Type Class Description classASTAdditiveNodeclassASTAdditiveOperatorclassASTAmbiguousclassASTAndNodeclassASTArrayAccessclassASTArrayLiteralclassASTAssignmentclassASTBitwiseAndNodeclassASTBitwiseComplNodeclassASTBitwiseOrNodeclassASTBitwiseXorNodeclassASTBlockclassASTConstructorNodeclassASTDivNodeclassASTEmptyFunctionclassASTEQNodeclassASTERNodeclassASTFalseNodeclassASTFloatLiteralDeprecated.Only for use in maintaining binary compatibility - should not actually be used - will be removed in 3.0classASTForeachStatementclassASTFunctionNodeclassASTGENodeclassASTGTNodeclassASTIdentifierIdentifiers, variables and registers.classASTIfStatementclassASTIntegerLiteralDeprecated.Only for use in maintaining binary compatibility - should not actually be used - will be removed in 3.0classASTJexlScriptEnhanced script to allow parameters declaration.classASTLENodeclassASTLTNodeclassASTMapEntryclassASTMapLiteralclassASTMethodNodeclassASTModNodeclassASTMulNodeclassASTNENodeclassASTNotNodeclassASTNRNodeclassASTNullLiteralclassASTNumberLiteralclassASTOrNodeclassASTReferenceclassASTReferenceExpressionclassASTReturnStatementclassASTSizeFunctionclassASTSizeMethodclassASTStringLiteralclassASTTernaryNodeclassASTTrueNodeclassASTUnaryMinusNodeclassASTVarDeclares a local variable.classASTWhileStatementclassJexlNodeBase class for parser nodes - holds an 'image' of the token for later use.classSimpleNodeA class originally generated by JJTree with the following JavaCCOptions: MULTI=true,NODE_USES_PARSER=true,VISITOR=true,TRACK_TOKENS=false,NODE_PREFIX=AST,NODE_EXTENDS=,NODE_FACTORY= Works around issue https://javacc.dev.java.net/issues/show_bug.cgi?id=227 As soon as this issue if fixed and the maven plugin uses the correct version of Javacc, this class can go away.Methods in org.apache.commons.jexl2.parser that return Node Modifier and Type Method Description NodeNode. jjtGetChild(int i)This method returns a child node.NodeNode. jjtGetParent()NodeJJTParserState. peekNode()NodeJJTParserState. popNode()NodeJJTParserState. rootNode()Methods in org.apache.commons.jexl2.parser with parameters of type Node Modifier and Type Method Description voidJJTParserState. clearNodeScope(Node n)voidJJTParserState. closeNodeScope(Node n, boolean condition)voidJJTParserState. closeNodeScope(Node n, int num)voidNode. jjtAddChild(Node n, int i)This method tells the node to add its argument to the node's list of children.voidSimpleNode. jjtAddChild(Node n, int i)Adds a child node.voidNode. jjtSetParent(Node n)This pair of methods are used to inform the node of its parent.voidSimpleNode. jjtSetParent(Node n)Sets this node's parent.voidJJTParserState. openNodeScope(Node n)voidJJTParserState. pushNode(Node n)
-