| java.lang.Object com.sun.satsa.jcrmic.classfile.constants.JConstant
All known Subclasses: com.sun.satsa.jcrmic.classfile.constants.JConstantInteger, com.sun.satsa.jcrmic.classfile.constants.JConstantString, com.sun.satsa.jcrmic.classfile.constants.JConstantMethodRef, com.sun.satsa.jcrmic.classfile.constants.JConstantDouble, com.sun.satsa.jcrmic.classfile.constants.JConstantClass, com.sun.satsa.jcrmic.classfile.constants.JConstantLong, com.sun.satsa.jcrmic.classfile.constants.JConstantUtf8, com.sun.satsa.jcrmic.classfile.constants.JConstantFieldRef, com.sun.satsa.jcrmic.classfile.constants.JConstantFloat, com.sun.satsa.jcrmic.classfile.constants.JConstantNameAndType,
JConstant | abstract public class JConstant (Code) | | This class is the base class for all constants.
It also defines a factory method for creating a constant based
on the constant type
|
CONSTANT_CLASS | final public static int CONSTANT_CLASS(Code) | | Constant pool entry tag.
|
CONSTANT_DOUBLE | final public static int CONSTANT_DOUBLE(Code) | | Constant pool entry tag.
|
CONSTANT_FIELDREF | final public static int CONSTANT_FIELDREF(Code) | | Constant pool entry tag.
|
CONSTANT_FLOAT | final public static int CONSTANT_FLOAT(Code) | | Constant pool entry tag.
|
CONSTANT_INTEGER | final public static int CONSTANT_INTEGER(Code) | | Constant pool entry tag.
|
CONSTANT_INTERFACE_METHODREF | final public static int CONSTANT_INTERFACE_METHODREF(Code) | | Constant pool entry tag.
|
CONSTANT_LONG | final public static int CONSTANT_LONG(Code) | | Constant pool entry tag.
|
CONSTANT_METHODREF | final public static int CONSTANT_METHODREF(Code) | | Constant pool entry tag.
|
CONSTANT_NAME_AND_TYPE | final public static int CONSTANT_NAME_AND_TYPE(Code) | | Constant pool entry tag.
|
CONSTANT_STRING | final public static int CONSTANT_STRING(Code) | | Constant pool entry tag.
|
CONSTANT_UTF8 | final public static int CONSTANT_UTF8(Code) | | Constant pool entry tag.
|
resolved | protected boolean resolved(Code) | | 'Resolved' flag.
|
JConstant | public JConstant(JConstantPool cp)(Code) | | Constructor.
Parameters: cp - constant pool reference |
create | final public static JConstant create(int tag, JConstantPool cp)(Code) | | Factory method for constant pool entry creation.
Parameters: tag - constant pool entry type tag Parameters: cp - constant pool reference constant pool entry object |
|
|