Fields Summary |
---|
short | indexIndex of this item in the constant pool. |
int | typeType of this constant pool item. A single class is used to represent all
constant pool item types, in order to minimize the bytecode size of this
package. The value of this field is one of the constants defined in the
{@link ClassWriter ClassWriter} class. |
int | intValValue of this item, for a {@link ClassWriter#INT INT} item. |
long | longValValue of this item, for a {@link ClassWriter#LONG LONG} item. |
float | floatValValue of this item, for a {@link ClassWriter#FLOAT FLOAT} item. |
double | doubleValValue of this item, for a {@link ClassWriter#DOUBLE DOUBLE} item. |
String | strVal1First part of the value of this item, for items that do not hold a
primitive value. |
String | strVal2Second part of the value of this item, for items that do not hold a
primitive value. |
String | strVal3Third part of the value of this item, for items that do not hold a
primitive value. |
int | hashCodeThe hash code value of this constant pool item. |
Item | nextLink to another constant pool item, used for collision lists in the
constant pool's hash table. |