Package com.udojava.evalex
Interface Operator
-
- All Superinterfaces:
LazyOperator
- All Known Implementing Classes:
AbstractOperator,AbstractUnaryOperator,Expression.Operator,Expression.UnaryOperator
public interface Operator extends LazyOperator
Base interface which is required for all operators. Abstract class AbstractOperator accepts postfix unary operators with the second operand v2=null.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.math.BigDecimaleval(java.math.BigDecimal v1, java.math.BigDecimal v2)Implementation for this operator.-
Methods inherited from interface com.udojava.evalex.LazyOperator
eval, getOper, getPrecedence, isBooleanOperator, isLeftAssoc, isUnaryOperator
-
-