Uses of Enum
org.jparsec.examples.java.ast.expression.Operator
Packages that use Operator
-
Uses of Operator in org.jparsec.examples.java.ast.expression
Subclasses with type arguments of type Operator in org.jparsec.examples.java.ast.expressionFields in org.jparsec.examples.java.ast.expression declared as OperatorModifier and TypeFieldDescriptionfinal OperatorBinaryExpression.opfinal OperatorPostfixUnaryExpression.opfinal OperatorPrefixUnaryExpression.opMethods in org.jparsec.examples.java.ast.expression that return OperatorModifier and TypeMethodDescriptionstatic OperatorReturns 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)