Uses of Interface
com.gengoai.parsing.PostfixHandler
-
Packages that use PostfixHandler Package Description com.gengoai.parsing -
-
Uses of PostfixHandler in com.gengoai.parsing
Fields in com.gengoai.parsing declared as PostfixHandler Modifier and Type Field Description static PostfixHandler
BinaryInfixOperatorExpression. HANDLER
Generic Handler for generatingBinaryInfixOperatorExpression
s for infix operators usingParser.parseExpression()
to generate the right-hand value of the operator.static PostfixHandler
UnaryOperatorExpression. POSTFIX_OPERATOR_HANDLER
Generic Handler for generatingUnaryOperatorExpression
s for postfix operators.static PostfixHandler
BinaryInfixOperatorExpression. RIGHT_ASSOCIATIVE_HANDLER
Methods in com.gengoai.parsing that return types with arguments of type PostfixHandler Modifier and Type Method Description Optional<PostfixHandler>
Grammar. getPostfixHandler(ParserToken token)
Gets the postfix handler associated with theTag
of the givenParserToken
Optional<PostfixHandler>
Grammar. getPostfixHandler(Tag tag)
Gets the postfix handler associated with the givenTag
.Methods in com.gengoai.parsing with parameters of type PostfixHandler Modifier and Type Method Description Grammar
Grammar. postfix(Tag tag, PostfixHandler handler)
Grammar
Grammar. postfix(Tag tag, PostfixHandler handler, int precedence)
Registers aPostfixHandler
with the given precedence for the givenTag
<E extends Expression>
GrammarGrammar. postfix(Tag tag, PostfixHandler handler, int precedence, SerializablePredicate<E> validator)
Registers aPostfixHandler
with the given precedence for the givenTag
-