Package io.pebbletemplates.pebble.node
Class NamedArgumentNode
- java.lang.Object
-
- io.pebbletemplates.pebble.node.NamedArgumentNode
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
name
private Expression<?>
value
-
Constructor Summary
Constructors Constructor Description NamedArgumentNode(java.lang.String name, Expression<?> value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(NodeVisitor visitor)
java.lang.String
getName()
Expression<?>
getValueExpression()
-
-
-
Field Detail
-
value
private final Expression<?> value
-
name
private final java.lang.String name
-
-
Constructor Detail
-
NamedArgumentNode
public NamedArgumentNode(java.lang.String name, Expression<?> value)
-
-
Method Detail
-
accept
public void accept(NodeVisitor visitor)
-
getValueExpression
public Expression<?> getValueExpression()
-
getName
public java.lang.String getName()
-
-