Uses of Class
com.ezylang.evalex.operators.InfixOperator
-
Packages that use InfixOperator Package Description com.ezylang.evalex.operators.arithmetic com.ezylang.evalex.operators.booleans -
-
Uses of InfixOperator in com.ezylang.evalex.operators.arithmetic
Classes in com.ezylang.evalex.operators.arithmetic with annotations of type InfixOperator 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. -
Uses of InfixOperator in com.ezylang.evalex.operators.booleans
Classes in com.ezylang.evalex.operators.booleans with annotations of type InfixOperator 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.
-