Uses of Class
edu.ksu.cis.projects.bogor.ast.Radix

Packages that use Radix
edu.ksu.cis.projects.bogor.ast Provides for Bogor input language AST. 
 

Uses of Radix in edu.ksu.cis.projects.bogor.ast
 

Methods in edu.ksu.cis.projects.bogor.ast that return Radix
 Radix IntConstant.getRadix()
           
 Radix IntLiteral.getRadix()
           
 Radix LongConstant.getRadix()
           
 Radix LongLiteral.getRadix()
           
static Radix Radix.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Radix[] Radix.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in edu.ksu.cis.projects.bogor.ast with parameters of type Radix
protected  void IntConstant.setRadix(Radix newRadix)
           
protected  void IntLiteral.setRadix(Radix newRadix)
           
protected  void LongConstant.setRadix(Radix newRadix)
           
protected  void LongLiteral.setRadix(Radix newRadix)
           
 

Constructors in edu.ksu.cis.projects.bogor.ast with parameters of type Radix
IntConstant(String id, BigInteger integer, Radix radix)
          Default constructor.
IntConstant(String id, BigInteger integer, Radix radix, ASTType coercedType)
          Default constructor.
IntConstant(String id, int integer, Radix radix)
          Default constructor.
IntConstant(String id, int integer, Radix radix, ASTType coercedType)
          Default constructor.
IntLiteral(BigInteger integer, Radix radix)
          Default constructor.
IntLiteral(int integer, Radix radix)
          Equivalent to IntLiteral(BigInteger.valueOf(integer), radix)
LongConstant(String id, BigInteger l, Radix radix)
          Default constructor.
LongConstant(String id, BigInteger l, Radix radix, ASTType coercedType)
          Default constructor.
LongConstant(String id, long l, Radix radix)
          Default constructor.
LongConstant(String id, long l, Radix radix, ASTType coercedType)
          Default constructor.
LongLiteral(BigInteger l, Radix radix)
          Default constructor.
LongLiteral(long l, Radix radix)
          Equivalent to LongLiteral(BigInteger.valueOf(l), radix)