Uses of Class
io.pebbletemplates.pebble.operator.BinaryOperatorType
-
Packages that use BinaryOperatorType Package Description io.pebbletemplates.pebble.operator -
-
Uses of BinaryOperatorType in io.pebbletemplates.pebble.operator
Fields in io.pebbletemplates.pebble.operator declared as BinaryOperatorType Modifier and Type Field Description private BinaryOperatorType
BinaryOperatorImpl. type
Methods in io.pebbletemplates.pebble.operator that return BinaryOperatorType Modifier and Type Method Description private static BinaryOperatorType
BinaryOperatorImpl. getDefaultType(java.lang.Class<? extends BinaryExpression<?>> nodeClass)
BinaryOperatorType
BinaryOperator. getType()
BinaryOperatorType
BinaryOperatorImpl. getType()
static BinaryOperatorType
BinaryOperatorType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BinaryOperatorType[]
BinaryOperatorType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in io.pebbletemplates.pebble.operator with parameters of type BinaryOperatorType Constructor Description BinaryOperatorImpl(java.lang.String symbol, int precedence, java.util.function.Supplier<? extends BinaryExpression<?>> nodeSupplier, BinaryOperatorType type, Associativity associativity)
This constuctor allows you to completely control the instantiation of the expression class
-