Uses of Class
org.jparsec.OperatorTable.Associativity
-
Packages that use OperatorTable.Associativity Package Description org.jparsec Provides core Parser implementations for parser combinator logic. -
-
Uses of OperatorTable.Associativity in org.jparsec
Fields in org.jparsec declared as OperatorTable.Associativity Modifier and Type Field Description (package private) OperatorTable.Associativity
OperatorTable.Operator. associativity
Methods in org.jparsec that return OperatorTable.Associativity Modifier and Type Method Description static OperatorTable.Associativity
OperatorTable.Associativity. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static OperatorTable.Associativity[]
OperatorTable.Associativity. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.jparsec with parameters of type OperatorTable.Associativity Modifier and Type Method Description private static <T> Parser<T>
OperatorTable. build(Parser op, OperatorTable.Associativity associativity, Parser<T> operand)
Constructors in org.jparsec with parameters of type OperatorTable.Associativity Constructor Description Operator(Parser<?> op, int precedence, OperatorTable.Associativity associativity)
-