Uses of Class
com.vladium.jcd.cls.constant.CONSTANT_info

Packages that use CONSTANT_info
com.vladium.jcd.cls   
com.vladium.jcd.cls.constant   
 

Uses of CONSTANT_info in com.vladium.jcd.cls
 

Methods in com.vladium.jcd.cls that return CONSTANT_info
 CONSTANT_info IConstantCollection.get(int index)
          Returns a CONSTANT_info at a given pool index.
 CONSTANT_info ConstantCollection.get(int index)
           
 CONSTANT_info IConstantCollection.IConstantIterator.nextConstant()
          Returns the next entry.
 CONSTANT_info ConstantCollection.ConstantIterator.nextConstant()
           
 CONSTANT_info IConstantCollection.IConstantIterator.set(CONSTANT_info constant)
          A convenience method that is equivalent to IConstantCollection.set(int, com.vladium.jcd.cls.constant.CONSTANT_info) and replaces the entry that was visited last without invalidating the iterator.
 CONSTANT_info ConstantCollection.ConstantIterator.set(CONSTANT_info constant)
           
 CONSTANT_info IConstantCollection.set(int index, CONSTANT_info constant)
          Replaces an existing constant pool entry.
 CONSTANT_info ConstantCollection.set(int index, CONSTANT_info constant)
           
 

Methods in com.vladium.jcd.cls with parameters of type CONSTANT_info
 int IConstantCollection.add(CONSTANT_info constant)
          Appends 'constant' to the end of the collection.
 int ConstantCollection.add(CONSTANT_info constant)
           
 boolean IConstantCollection.IConstantComparator.equals(CONSTANT_info constant)
           
 CONSTANT_info IConstantCollection.IConstantIterator.set(CONSTANT_info constant)
          A convenience method that is equivalent to IConstantCollection.set(int, com.vladium.jcd.cls.constant.CONSTANT_info) and replaces the entry that was visited last without invalidating the iterator.
 CONSTANT_info ConstantCollection.ConstantIterator.set(CONSTANT_info constant)
           
 CONSTANT_info IConstantCollection.set(int index, CONSTANT_info constant)
          Replaces an existing constant pool entry.
 CONSTANT_info ConstantCollection.set(int index, CONSTANT_info constant)
           
 

Uses of CONSTANT_info in com.vladium.jcd.cls.constant
 

Subclasses of CONSTANT_info in com.vladium.jcd.cls.constant
 class CONSTANT_Class_info
          The CONSTANT_Class_info structure is used to represent a class or an interface.
 class CONSTANT_Double_info
          The CONSTANT_Long_info and CONSTANT_Double_info represent eight-byte numeric (long and double) constants.
 class CONSTANT_Fieldref_info
          This structure is used in the constant pool to represent dynamic references to fields.
 class CONSTANT_Float_info
          The CONSTANT_Integer_info and CONSTANT_Float_info structures represent four-byte numeric (int and float) constants.
 class CONSTANT_Integer_info
          The CONSTANT_Integer_info and CONSTANT_Float_info structures represent four-byte numeric (int and float) constants.
 class CONSTANT_InterfaceMethodref_info
          This structure is used in the constant pool to represent dynamic references to interface methods.
 class CONSTANT_literal_info
          Abstract base for all CONSTANT_XXX_info structures representing literal values in the constant pool.
 class CONSTANT_Long_info
          The CONSTANT_Long_info and CONSTANT_Double_info represent eight-byte numeric (long and double) constants.
 class CONSTANT_Methodref_info
          This structure is used in the constant pool to represent dynamic references to class methods.
 class CONSTANT_NameAndType_info
          The CONSTANT_NameAndType_info structure is used to represent a field or method, without indicating which class or interface type it belongs to.
 class CONSTANT_ref_info
          Abstract base for all CONSTANT_XXXref_info structures.
 class CONSTANT_String_info
          The CONSTANT_String_info structure is used to represent constant objects of the type java.lang.String.
 class CONSTANT_Utf8_info
          The CONSTANT_Utf8_info structure is used to represent constant string values.
 

Methods in com.vladium.jcd.cls.constant that return CONSTANT_info
static CONSTANT_info CONSTANT_info.new_CONSTANT_info(UDataInputStream bytes)
          Virtual constructor method for all CONSTANT_XXX_info structures.
 

Methods in com.vladium.jcd.cls.constant with parameters of type CONSTANT_info
static java.lang.String CONSTANT_info.tagToString(CONSTANT_info constant)