Uses of Class
jellyj.classfile.javaclass.Constant

Packages that use Constant
jellyj.classfile.classgen 
jellyj.classfile.javaclass 

Uses of Constant in jellyj.classfile.classgen
 

Constructors in jellyj.classfile.classgen with parameters of type Constant
ConstantPoolGen.ConstantPoolGen(Constant[] c)
          Initialize with given array of constants.
 

Methods in jellyj.classfile.classgen that return Constant
ConstantConstantPoolGen.getConstant(int i)
          
 

Methods in jellyj.classfile.classgen with parameters of type Constant
final intConstantPoolGen.addConstant(Constant c)
          Add a given constant (without checking for double entries).
final intConstantPoolGen.lookupConstant(Constant c)
          Look up constant in ConstantPool.
 

Uses of Constant in jellyj.classfile.javaclass
 

Subclasses of Constant in jellyj.classfile.javaclass
class ConstantClass
          This class is derived from the abstract Constant class and represents a reference to a (external) class.
class ConstantCP
          Abstract super class for Fieldref and Methodref constants.
class ConstantDouble
          This class is derived from the abstract Constant class and represents a reference to a Double object.
class ConstantFloat
          This class is derived from the abstract Constant class and represents a reference to a float object.
class ConstantInteger
          This class is derived from the abstract Constant class and represents a reference to an int object.
class ConstantLong
          This class is derived from the abstract Constant class and represents a reference to a long object.
class ConstantNameAndType
          This class is derived from the abstract Constant class and represents a reference to the name and signature of a field or method.
class ConstantString
          This class is derived from the abstract Constant class and represents a reference to a String object.
class ConstantUnicode
          This class is derived from the abstract Constant class and represents a reference to a Unicode encoded string.
class ConstantUtf8
          This class is derived from the abstract Constant class and represents a reference to a Utf8 encoded string.
 

Constructors in jellyj.classfile.javaclass with parameters of type Constant
ConstantPool.ConstantPool(Constant[] constant_pool)
          
 

Methods in jellyj.classfile.javaclass that return Constant
final ConstantConstantPool.getConstant(int index, byte tag)
          Get constant from constant pool and check whether it has the expected type.
final ConstantConstantPool.getConstant(int index)
          Get constant from constant pool.
final Constant[]ConstantPool.getConstantPool()
          
 

Methods in jellyj.classfile.javaclass with parameters of type Constant
StringConstantPool.constantToString(Constant c)
          Resolve constant to a string representation.
final voidConstantPool.setConstant(int index, Constant constant)
          
final voidConstantPool.setConstantPool(Constant[] constant_pool)