Class ASTFloatingPointLiteral
- java.lang.Object
-
- org.apache.velocity.runtime.parser.node.SimpleNode
-
- org.apache.velocity.runtime.parser.node.ASTFloatingPointLiteral
-
- All Implemented Interfaces:
Node
,Renderable
public class ASTFloatingPointLiteral extends SimpleNode
Handles floating point numbers. The value will be either a Double or a BigDecimal.- Since:
- 1.5
-
-
Constructor Summary
Constructors Constructor Description ASTFloatingPointLiteral(int id)
ASTFloatingPointLiteral(Parser p, int id)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object
init(InternalContextAdapter context, java.lang.Object data)
Initialization method - doesn't do much but do the object creation.java.lang.Object
jjtAccept(ParserVisitor visitor, java.lang.Object data)
java.lang.Object
value(InternalContextAdapter context)
-
Methods inherited from class org.apache.velocity.runtime.parser.node.SimpleNode
childrenAccept, dump, evaluate, execute, getColumn, getFirstToken, getInfo, getLastToken, getLine, getLocation, getRuntimeServices, getTemplateName, getType, isInvalid, jjtAddChild, jjtClose, jjtGetChild, jjtGetNumChildren, jjtGetParent, jjtOpen, jjtSetParent, literal, render, setFirstToken, setInfo, setInvalid, toString, toString
-
-
-
-
Constructor Detail
-
ASTFloatingPointLiteral
public ASTFloatingPointLiteral(int id)
- Parameters:
id
-
-
ASTFloatingPointLiteral
public ASTFloatingPointLiteral(Parser p, int id)
- Parameters:
p
-id
-
-
-
Method Detail
-
jjtAccept
public java.lang.Object jjtAccept(ParserVisitor visitor, java.lang.Object data)
- Specified by:
jjtAccept
in interfaceNode
- Overrides:
jjtAccept
in classSimpleNode
- Returns:
- The Node execution result object.
- See Also:
SimpleNode.jjtAccept(org.apache.velocity.runtime.parser.node.ParserVisitor, java.lang.Object)
-
init
public java.lang.Object init(InternalContextAdapter context, java.lang.Object data) throws TemplateInitException
Initialization method - doesn't do much but do the object creation. We only need to do it once.- Specified by:
init
in interfaceNode
- Overrides:
init
in classSimpleNode
- Parameters:
context
-data
-- Returns:
- The data object.
- Throws:
TemplateInitException
- See Also:
Node.init(org.apache.velocity.context.InternalContextAdapter, java.lang.Object)
-
value
public java.lang.Object value(InternalContextAdapter context)
- Specified by:
value
in interfaceNode
- Overrides:
value
in classSimpleNode
- Returns:
- The node value.
- See Also:
SimpleNode.value(org.apache.velocity.context.InternalContextAdapter)
-
-