Uses of Class
io.pebbletemplates.pebble.utils.Pair
-
Packages that use Pair Package Description io.pebbletemplates.pebble.lexer io.pebbletemplates.pebble.node io.pebbletemplates.pebble.template io.pebbletemplates.pebble.tokenParser -
-
Uses of Pair in io.pebbletemplates.pebble.lexer
Fields in io.pebbletemplates.pebble.lexer with type parameters of type Pair Modifier and Type Field Description private java.util.LinkedList<Pair<java.lang.String,java.lang.Integer>>
LexerImpl. brackets
Represents the brackets we are currently inside ordered by how recently we encountered them. -
Uses of Pair in io.pebbletemplates.pebble.node
Fields in io.pebbletemplates.pebble.node with type parameters of type Pair Modifier and Type Field Description private java.util.List<Pair<Expression<?>,BodyNode>>
IfNode. conditionsWithBodies
private java.util.List<Pair<java.lang.String,java.lang.String>>
FromNode. namedMacros
Methods in io.pebbletemplates.pebble.node that return types with arguments of type Pair Modifier and Type Method Description java.util.List<Pair<Expression<?>,BodyNode>>
IfNode. getConditionsWithBodies()
Constructor parameters in io.pebbletemplates.pebble.node with type arguments of type Pair Constructor Description FromNode(int lineNumber, Expression<?> fromExpression, java.util.List<Pair<java.lang.String,java.lang.String>> namedMacros)
IfNode(int lineNumber, java.util.List<Pair<Expression<?>,BodyNode>> conditionsWithBodies)
IfNode(int lineNumber, java.util.List<Pair<Expression<?>,BodyNode>> conditionsWithBodies, BodyNode elseBody)
-
Uses of Pair in io.pebbletemplates.pebble.template
Method parameters in io.pebbletemplates.pebble.template with type arguments of type Pair Modifier and Type Method Description void
PebbleTemplateImpl. importNamedMacrosFromTemplate(java.lang.String name, java.util.List<Pair<java.lang.String,java.lang.String>> namedMacros)
Imports named macros from specified template. -
Uses of Pair in io.pebbletemplates.pebble.tokenParser
Methods in io.pebbletemplates.pebble.tokenParser that return types with arguments of type Pair Modifier and Type Method Description private java.util.List<Pair<java.lang.String,java.lang.String>>
FromTokenParser. parseNamedMacros(Parser parser)
-