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