Uses of Interface
io.pebbletemplates.pebble.operator.BinaryOperator
-
-
Uses of BinaryOperator in io.pebbletemplates.pebble.extension
Fields in io.pebbletemplates.pebble.extension with type parameters of type BinaryOperator Modifier and Type Field Description private java.util.Map<java.lang.String,BinaryOperator>
ExtensionRegistry. binaryOperators
Binary operators used during the lexing phase.Methods in io.pebbletemplates.pebble.extension that return types with arguments of type BinaryOperator Modifier and Type Method Description java.util.List<BinaryOperator>
AbstractExtension. getBinaryOperators()
java.util.List<BinaryOperator>
Extension. getBinaryOperators()
Use this method to provide custom binary operators.java.util.List<BinaryOperator>
ExtensionCustomizer. getBinaryOperators()
java.util.Map<java.lang.String,BinaryOperator>
ExtensionRegistry. getBinaryOperators()
-
Uses of BinaryOperator in io.pebbletemplates.pebble.extension.core
Methods in io.pebbletemplates.pebble.extension.core that return types with arguments of type BinaryOperator Modifier and Type Method Description java.util.List<BinaryOperator>
CoreExtension. getBinaryOperators()
-
Uses of BinaryOperator in io.pebbletemplates.pebble.lexer
Fields in io.pebbletemplates.pebble.lexer with type parameters of type BinaryOperator Modifier and Type Field Description private java.util.Collection<BinaryOperator>
LexerImpl. binaryOperators
Binary operators -
Uses of BinaryOperator in io.pebbletemplates.pebble.operator
Classes in io.pebbletemplates.pebble.operator that implement BinaryOperator Modifier and Type Class Description class
BinaryOperatorImpl
-
Uses of BinaryOperator in io.pebbletemplates.pebble.parser
Fields in io.pebbletemplates.pebble.parser with type parameters of type BinaryOperator Modifier and Type Field Description private java.util.Map<java.lang.String,BinaryOperator>
ExpressionParser. binaryOperators
private java.util.Map<java.lang.String,BinaryOperator>
ParserImpl. binaryOperators
Binary operatorsConstructor parameters in io.pebbletemplates.pebble.parser with type arguments of type BinaryOperator Constructor Description ExpressionParser(Parser parser, java.util.Map<java.lang.String,BinaryOperator> binaryOperators, java.util.Map<java.lang.String,UnaryOperator> unaryOperators, ParserOptions parserOptions)
Constructor
-