Uses of Class
org.aspectj.apache.bcel.classfile.Constant

Packages that use Constant
org.aspectj.apache.bcel.classfile   
 

Uses of Constant in org.aspectj.apache.bcel.classfile
 

Subclasses of Constant in org.aspectj.apache.bcel.classfile
 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 ConstantFieldref
          This class represents a constant pool reference to a field.
 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 ConstantInterfaceMethodref
          This class represents a constant pool reference to an interface method.
 class ConstantLong
          This class is derived from the abstract Constant class and represents a reference to a long object.
 class ConstantMethodref
          This class represents a constant pool reference to a method.
 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 ConstantUtf8
          This class is derived from the abstract Constant class and represents a reference to a Utf8 encoded string.
 

Methods in org.aspectj.apache.bcel.classfile that return Constant
 Constant Constant.copy()
           
 Constant ConstantPool.getConstant(int index)
           
 Constant ConstantPool.getConstant(int index, byte tag)
           
 Constant[] ConstantPool.getConstantPool()
           
 

Methods in org.aspectj.apache.bcel.classfile with parameters of type Constant
 int ConstantPool.addConstant(Constant c, ConstantPool cp)
           
 java.lang.String ConstantPool.constantToString(Constant c)
          Resolve constant to a string representation.
 

Constructors in org.aspectj.apache.bcel.classfile with parameters of type Constant
ConstantPool(Constant[] constants)