Uses of Class
studio.magemonkey.codex.util.eval.javaluator.Operator
Packages that use Operator
-
Uses of Operator in studio.magemonkey.codex.util.eval.javaluator
Fields in studio.magemonkey.codex.util.eval.javaluator declared as OperatorModifier and TypeFieldDescriptionstatic final OperatorDoubleEvaluator.DIVIDEThe division operator.static final OperatorDoubleEvaluator.EXPONENTThe exponentiation operator.static final OperatorDoubleEvaluator.MINUSThe substraction operator.static final OperatorDoubleEvaluator.MODULOThe modulo operator.static final OperatorDoubleEvaluator.MULTIPLYThe multiplication operator.static final OperatorDoubleEvaluator.NEGATEThe negate unary operator in the standard operator precedence.static final OperatorDoubleEvaluator.NEGATE_HIGHThe negate unary operator in the Excel like operator precedence.static final OperatorDoubleEvaluator.PLUSThe addition operator.Fields in studio.magemonkey.codex.util.eval.javaluator with type parameters of type OperatorMethods in studio.magemonkey.codex.util.eval.javaluator that return OperatorModifier and TypeMethodDescriptionToken.getOperator()protected OperatorTokenizer.guessOperator(Token previous, List<Operator> candidates) When a token can be more than one operator (homonym operators), this method guesses the right operator.Methods in studio.magemonkey.codex.util.eval.javaluator that return types with arguments of type OperatorModifier and TypeMethodDescriptionAbstractEvaluator.getOperators()Gets the operators supported by this evaluator.Parameters.getOperators()Gets the supported operators.Methods in studio.magemonkey.codex.util.eval.javaluator with parameters of type OperatorModifier and TypeMethodDescriptionvoidAdds an operator to the supported ones.static TokenToken.buildOperator(Operator ope) protected TAbstractEvaluator.evaluate(Operator operator, Iterator<T> operands, EvaluationContext evaluationContext) Evaluates an operation.protected DoubleDoubleEvaluator.evaluate(Operator operator, Iterator<Double> operands, EvaluationContext evaluationContext) Method parameters in studio.magemonkey.codex.util.eval.javaluator with type arguments of type OperatorModifier and TypeMethodDescriptionvoidParameters.addOperators(Collection<Operator> operators) Adds operators to the supported ones.protected OperatorTokenizer.guessOperator(Token previous, List<Operator> candidates) When a token can be more than one operator (homonym operators), this method guesses the right operator.