Class Identifier
- java.lang.Object
-
- org.apache.sling.scripting.sightly.compiler.expression.nodes.Identifier
-
- All Implemented Interfaces:
ExpressionNode
,Atom
public final class Identifier extends java.lang.Object implements Atom
Defines a single variable.
-
-
Constructor Summary
Constructors Constructor Description Identifier(java.lang.String name)
Creates an identifier.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> T
accept(NodeVisitor<T> visitor)
Accept a visitor to process this node.java.lang.String
getName()
Retrieves the name of the identifierjava.lang.String
getText()
Get the text content for this nodesjava.lang.String
toString()
-
-
-
Method Detail
-
accept
public <T> T accept(NodeVisitor<T> visitor)
Description copied from interface:ExpressionNode
Accept a visitor to process this node.- Specified by:
accept
in interfaceExpressionNode
- Type Parameters:
T
- the type of the visitor- Parameters:
visitor
- The visitor- Returns:
- the node after it has been evaluated by the visitor
-
getName
public java.lang.String getName()
Retrieves the name of the identifier- Returns:
- the name string
-
getText
public java.lang.String getText()
Description copied from interface:Atom
Get the text content for this nodes
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-