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