Class ASTIntegerLiteral
- java.lang.Object
-
- org.apache.velocity.runtime.parser.node.SimpleNode
-
- org.apache.velocity.runtime.parser.node.ASTIntegerLiteral
-
- All Implemented Interfaces:
Node
,Renderable
public class ASTIntegerLiteral extends SimpleNode
Handles integer numbers. The value will be either an Integer, a Long, or a BigInteger.- Since:
- 1.5
-
-
Constructor Summary
Constructors Constructor Description ASTIntegerLiteral(int id)
ASTIntegerLiteral(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)
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
-
ASTIntegerLiteral
public ASTIntegerLiteral(int id)
- Parameters:
id
-
-
ASTIntegerLiteral
public ASTIntegerLiteral(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
- Specified by:
init
in interfaceNode
- Overrides:
init
in classSimpleNode
- Returns:
- The init result.
- Throws:
TemplateInitException
- See Also:
SimpleNode.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)
-
-