Class NumericConstant
java.lang.Object
org.apache.sling.scripting.sightly.compiler.expression.nodes.NumericConstant
- All Implemented Interfaces:
ExpressionNode
,Atom
Defines a numeric constant expression (e.g. "42.1").
-
Field Summary
Modifier and TypeFieldDescriptionstatic final NumericConstant
static final NumericConstant
static final NumericConstant
-
Constructor Summary
ConstructorDescriptionNumericConstant
(Number value) Creates a numeric constant based on aNumber
representation.NumericConstant
(String text) Creates a numeric constant. -
Method Summary
-
Field Details
-
ZERO
-
ONE
-
TWO
-
-
Constructor Details
-
NumericConstant
Creates a numeric constant.- Parameters:
text
- the text representation- Throws:
NumberFormatException
- if the text is not in a numeric format
-
NumericConstant
Creates a numeric constant based on aNumber
representation.- Parameters:
value
- the number representation
-
-
Method Details
-
getValue
Returns the number representation of this constant.- Returns:
- the number representation of this constant
-
getText
Description copied from interface:Atom
Get the text content for this nodes -
accept
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
-
toString
-