com.github.antlrjavaparser.api.expr
Class IntegerLiteralExpr

java.lang.Object
  extended by com.github.antlrjavaparser.api.Node
      extended by com.github.antlrjavaparser.api.expr.Expression
          extended by com.github.antlrjavaparser.api.expr.LiteralExpr
              extended by com.github.antlrjavaparser.api.expr.StringLiteralExpr
                  extended by com.github.antlrjavaparser.api.expr.IntegerLiteralExpr
Direct Known Subclasses:
IntegerLiteralMinValueExpr

public class IntegerLiteralExpr
extends StringLiteralExpr

Author:
Julio Vilmar Gesser

Field Summary
protected static String MIN_VALUE
           
 
Fields inherited from class com.github.antlrjavaparser.api.expr.StringLiteralExpr
value
 
Constructor Summary
IntegerLiteralExpr()
           
IntegerLiteralExpr(int beginLine, int beginColumn, int endLine, int endColumn, String value)
           
IntegerLiteralExpr(String value)
           
 
Method Summary
<R,A> R
accept(GenericVisitor<R,A> v, A arg)
          Accept method for visitor support.
<A> void
accept(VoidVisitor<A> v, A arg)
          Accept method for visitor support.
 boolean isMinValue()
           
 
Methods inherited from class com.github.antlrjavaparser.api.expr.StringLiteralExpr
getValue, setValue
 
Methods inherited from class com.github.antlrjavaparser.api.Node
equals, getBeginColumn, getBeginComments, getBeginLine, getData, getEndColumn, getEndComments, getEndLine, getInternalComments, hashCode, setBeginColumn, setBeginComments, setBeginLine, setData, setEndColumn, setEndComments, setEndLine, setInternalComments, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

MIN_VALUE

protected static final String MIN_VALUE
See Also:
Constant Field Values
Constructor Detail

IntegerLiteralExpr

public IntegerLiteralExpr()

IntegerLiteralExpr

public IntegerLiteralExpr(String value)

IntegerLiteralExpr

public IntegerLiteralExpr(int beginLine,
                          int beginColumn,
                          int endLine,
                          int endColumn,
                          String value)
Method Detail

accept

public <R,A> R accept(GenericVisitor<R,A> v,
                      A arg)
Description copied from class: Node
Accept method for visitor support.

Overrides:
accept in class StringLiteralExpr
Type Parameters:
R - the type the return value of the visitor
A - the type the argument passed for the visitor
Parameters:
v - the visitor implementation
arg - any value relevant for the visitor
Returns:
the result of the visit

accept

public <A> void accept(VoidVisitor<A> v,
                       A arg)
Description copied from class: Node
Accept method for visitor support.

Overrides:
accept in class StringLiteralExpr
Type Parameters:
A - the type the argument passed for the visitor
Parameters:
v - the visitor implementation
arg - any value relevant for the visitor

isMinValue

public final boolean isMinValue()


Copyright © 2013. All Rights Reserved.