Class IdentifierNode
- java.lang.Object
-
- com.aquima.interactions.expressions.parser.ParseNodeBase
-
- com.aquima.interactions.expressions.r7.parser.nodes.IdentifierNode
-
- All Implemented Interfaces:
IParseNode
public class IdentifierNode extends ParseNodeBase
Parse node representing an identifier.- Since:
- 6.4
- Author:
- F. van der Meer, O. Kerpershoek
-
-
Constructor Summary
Constructors Constructor Description IdentifierNode(String name)
Constructs the parse node with the name of the identifier.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
This method returns the name of the identifier.-
Methods inherited from class com.aquima.interactions.expressions.parser.ParseNodeBase
getEndPosition, getPosition, setPosition
-
-
-
-
Constructor Detail
-
IdentifierNode
public IdentifierNode(String name)
Constructs the parse node with the name of the identifier.- Parameters:
name
- the name of the identifier.
-
-
Method Detail
-
getName
public String getName()
This method returns the name of the identifier.- Returns:
- the name of the identifier.
-
-