Uses of Class
com.ezylang.evalex.operators.AbstractOperator
-
Packages that use AbstractOperator Package Description com.ezylang.evalex.operators.arithmetic com.ezylang.evalex.operators.booleans -
-
Uses of AbstractOperator in com.ezylang.evalex.operators.arithmetic
Subclasses of AbstractOperator in com.ezylang.evalex.operators.arithmetic Modifier and Type Class Description classInfixDivisionOperatorDivision of two numbers.classInfixMinusOperatorSubtraction of two numbers.classInfixModuloOperatorRemainder (modulo) of two numbers.classInfixMultiplicationOperatorMultiplication of two numbers.classInfixPlusOperatorAddition of numbers and strings.classInfixPowerOfOperatorPower of operator, calculates the power of right operand of left operand.classPrefixMinusOperatorUnary prefix minus.classPrefixPlusOperatorUnary prefix plus. -
Uses of AbstractOperator in com.ezylang.evalex.operators.booleans
Subclasses of AbstractOperator in com.ezylang.evalex.operators.booleans Modifier and Type Class Description classInfixAndOperatorBoolean AND of two values.classInfixEqualsOperatorEquality of two values.classInfixGreaterEqualsOperatorGreater or equals of two values.classInfixGreaterOperatorGreater of two values.classInfixLessEqualsOperatorLess or equals of two values.classInfixLessOperatorLess of two values.classInfixNotEqualsOperatorNo equality of two values.classInfixOrOperatorBoolean OR of two values.classPrefixNotOperatorBoolean negation of value.
-