Uses of Class
io.pebbletemplates.pebble.node.expression.BinaryExpression
-
Packages that use BinaryExpression Package Description io.pebbletemplates.pebble.extension.debug io.pebbletemplates.pebble.node.expression io.pebbletemplates.pebble.operator -
-
Uses of BinaryExpression in io.pebbletemplates.pebble.extension.debug
Methods in io.pebbletemplates.pebble.extension.debug with parameters of type BinaryExpression Modifier and Type Method Description void
PrettyPrintNodeVisitor. visit(BinaryExpression<?> node)
-
Uses of BinaryExpression in io.pebbletemplates.pebble.node.expression
Subclasses of BinaryExpression in io.pebbletemplates.pebble.node.expression Modifier and Type Class Description class
AddExpression
class
AndExpression
class
ConcatenateExpression
Expression which implements the string concatenation.class
ContainsExpression
class
DivideExpression
class
EqualsExpression
class
FilterExpression
class
GreaterThanEqualsExpression
class
GreaterThanExpression
class
LessThanEqualsExpression
class
LessThanExpression
class
ModulusExpression
class
MultiplyExpression
class
NegativeTestExpression
class
NotEqualsExpression
class
OrExpression
class
PositiveTestExpression
class
RangeExpression
Expression which implements the range function.class
SubtractExpression
-
Uses of BinaryExpression in io.pebbletemplates.pebble.operator
Fields in io.pebbletemplates.pebble.operator with type parameters of type BinaryExpression Modifier and Type Field Description private java.util.function.Supplier<? extends BinaryExpression<?>>
BinaryOperatorImpl. nodeSupplier
Methods in io.pebbletemplates.pebble.operator that return BinaryExpression Modifier and Type Method Description BinaryExpression<?>
BinaryOperator. createInstance()
BinaryExpression<?>
BinaryOperatorImpl. createInstance()
Method parameters in io.pebbletemplates.pebble.operator with type arguments of type BinaryExpression Modifier and Type Method Description private static BinaryOperatorType
BinaryOperatorImpl. getDefaultType(java.lang.Class<? extends BinaryExpression<?>> nodeClass)
Constructor parameters in io.pebbletemplates.pebble.operator with type arguments of type BinaryExpression 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
-