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
- Author:
- Will Glass-Husain
-
-
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.Objectinit(InternalContextAdapter context, java.lang.Object data)java.lang.ObjectjjtAccept(ParserVisitor visitor, java.lang.Object data)java.lang.Objectvalue(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:
jjtAcceptin interfaceNode- Overrides:
jjtAcceptin 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:
initin interfaceNode- Overrides:
initin 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:
valuein interfaceNode- Overrides:
valuein classSimpleNode- Returns:
- The node value.
- See Also:
SimpleNode.value(org.apache.velocity.context.InternalContextAdapter)
-
-