Uses of Class
io.pebbletemplates.pebble.operator.Associativity
-
Packages that use Associativity Package Description io.pebbletemplates.pebble.operator -
-
Uses of Associativity in io.pebbletemplates.pebble.operator
Fields in io.pebbletemplates.pebble.operator declared as Associativity Modifier and Type Field Description private Associativity
BinaryOperatorImpl. associativity
Methods in io.pebbletemplates.pebble.operator that return Associativity Modifier and Type Method Description Associativity
BinaryOperator. getAssociativity()
Associativity
BinaryOperatorImpl. getAssociativity()
static Associativity
Associativity. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Associativity[]
Associativity. 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 Associativity Constructor Description BinaryOperatorImpl(java.lang.String symbol, int precedence, java.lang.Class<? extends BinaryExpression<?>> nodeClass, Associativity associativity)
This constuctor left for backward compatibility with custom extensionsBinaryOperatorImpl(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
-