Uses of Enum
org.jparsec.examples.java.ast.expression.Operator
Packages that use Operator
-
Uses of Operator in org.jparsec.examples.java.ast.expression
Fields in org.jparsec.examples.java.ast.expression declared as OperatorModifier and TypeFieldDescriptionfinal Operator
BinaryExpression.op
final Operator
PostfixUnaryExpression.op
final Operator
PrefixUnaryExpression.op
Methods in org.jparsec.examples.java.ast.expression that return OperatorModifier and TypeMethodDescriptionstatic Operator
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 OperatorModifierConstructorDescriptionBinaryExpression
(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 OperatorModifier and TypeMethodDescriptionprivate static Parser
<BinaryOperator<Expression>> private static Parser
<UnaryOperator<Expression>> private static Parser
<UnaryOperator<Expression>>