Uses of Class
org.jparsec.examples.java.ast.expression.Operator
-
Packages that use Operator Package Description org.jparsec.examples.java.ast.expression org.jparsec.examples.java.parser -
-
Uses of Operator in org.jparsec.examples.java.ast.expression
Fields in org.jparsec.examples.java.ast.expression declared as Operator Modifier and Type Field Description Operator
BinaryExpression. op
Operator
PostfixUnaryExpression. op
Operator
PrefixUnaryExpression. op
Methods in org.jparsec.examples.java.ast.expression that return Operator Modifier and Type Method Description static Operator
Operator. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Operator[]
Operator. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.jparsec.examples.java.ast.expression with parameters of type Operator Constructor Description BinaryExpression(Expression left, Operator op, Expression right)
PostfixUnaryExpression(Expression expression, Operator op)
PrefixUnaryExpression(Operator op, Expression expression)
-
Uses of Operator in org.jparsec.examples.java.parser
Methods in org.jparsec.examples.java.parser with parameters of type Operator Modifier and Type Method Description private static Parser<java.util.function.BinaryOperator<Expression>>
ExpressionParser. binary(Operator op)
private static Parser<java.util.function.UnaryOperator<Expression>>
ExpressionParser. postfix(Operator op)
private static Parser<java.util.function.UnaryOperator<Expression>>
ExpressionParser. prefix(Operator op)
-