Uses of Class
io.pebbletemplates.pebble.utils.OperatorUtils.Operation
-
Packages that use OperatorUtils.Operation Package Description io.pebbletemplates.pebble.utils -
-
Uses of OperatorUtils.Operation in io.pebbletemplates.pebble.utils
Methods in io.pebbletemplates.pebble.utils that return OperatorUtils.Operation Modifier and Type Method Description static OperatorUtils.Operation
OperatorUtils.Operation. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static OperatorUtils.Operation[]
OperatorUtils.Operation. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.pebbletemplates.pebble.utils with parameters of type OperatorUtils.Operation Modifier and Type Method Description private static java.math.BigDecimal
OperatorUtils. bigDecimalOperation(java.math.BigDecimal op1, java.math.BigDecimal op2, OperatorUtils.Operation operation)
private static double
OperatorUtils. doubleOperation(double op1, double op2, OperatorUtils.Operation operation)
private static java.lang.Float
OperatorUtils. floatOperation(java.lang.Float op1, java.lang.Float op2, OperatorUtils.Operation operation)
private static long
OperatorUtils. integerOperation(int op1, int op2, OperatorUtils.Operation operation)
private static long
OperatorUtils. longOperation(long op1, long op2, OperatorUtils.Operation operation)
private static java.lang.Object
OperatorUtils. wideningConversionBinaryOperation(java.lang.Object op1, java.lang.Object op2, OperatorUtils.Operation operation)
-