Class ASTFloatingPointLiteral
- java.lang.Object
-
- org.apache.velocity.runtime.parser.node.SimpleNode
-
- org.apache.velocity.runtime.parser.node.ASTFloatingPointLiteral
-
- All Implemented Interfaces:
Cloneable
,Node
,Renderable
public class ASTFloatingPointLiteral extends SimpleNode
Handles floating point numbers. The value will be either a Double or a BigDecimal.- Since:
- 1.5
- Author:
- Will Glass-Husain
-
-
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 boolean
evaluate(InternalContextAdapter context)
Object
init(InternalContextAdapter context, Object data)
Initialization method - doesn't do much but do the object creation.Object
jjtAccept(StandardParserVisitor visitor, Object data)
Object
value(InternalContextAdapter context)
-
Methods inherited from class org.apache.velocity.runtime.parser.node.SimpleNode
childrenAccept, cleanupParserAndTokens, clone, clone, dump, dump, dump, execute, getColumn, getFirstToken, getFirstTokenImage, getInfo, getLastToken, getLastTokenImage, getLine, getLocation, getParser, getRuntimeServices, getTemplate, getTemplateName, getType, isInvalid, jjtAddChild, jjtClose, jjtGetChild, jjtGetNumChildren, jjtGetParent, jjtOpen, jjtSetParent, literal, render, saveTokenImages, 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 Object jjtAccept(StandardParserVisitor visitor, 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.StandardParserVisitor, java.lang.Object)
-
init
public Object init(InternalContextAdapter context, 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 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)
-
evaluate
public boolean evaluate(InternalContextAdapter context)
- Specified by:
evaluate
in interfaceNode
- Overrides:
evaluate
in classSimpleNode
- Returns:
- The evaluation result.
- See Also:
SimpleNode.evaluate(org.apache.velocity.context.InternalContextAdapter)
-
-