public static enum ConstantPool.SUBTAG extends java.lang.Enum<ConstantPool.SUBTAG>
Enum Constant and Description |
---|
REF_GETFIELD |
REF_GETSTATIC |
REF_INVOKEINTERFACE |
REF_INVOKESPECIAL |
REF_INVOKESTATIC |
REF_INVOKEVIRTUAL |
REF_NEWINVOKESPECIAL |
REF_PUTFIELD |
REF_PUTSTATIC |
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
printval |
private java.lang.String |
tagname |
private java.lang.Byte |
value |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
description() |
java.lang.String |
tagname() |
java.lang.String |
toString() |
byte |
value() |
static ConstantPool.SUBTAG |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConstantPool.SUBTAG[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConstantPool.SUBTAG REF_GETFIELD
public static final ConstantPool.SUBTAG REF_GETSTATIC
public static final ConstantPool.SUBTAG REF_PUTFIELD
public static final ConstantPool.SUBTAG REF_PUTSTATIC
public static final ConstantPool.SUBTAG REF_INVOKEVIRTUAL
public static final ConstantPool.SUBTAG REF_INVOKESTATIC
public static final ConstantPool.SUBTAG REF_INVOKESPECIAL
public static final ConstantPool.SUBTAG REF_NEWINVOKESPECIAL
public static final ConstantPool.SUBTAG REF_INVOKEINTERFACE
private final java.lang.Byte value
private final java.lang.String tagname
private final java.lang.String printval
public static ConstantPool.SUBTAG[] values()
for (ConstantPool.SUBTAG c : ConstantPool.SUBTAG.values()) System.out.println(c);
public static ConstantPool.SUBTAG valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic byte value()
public java.lang.String tagname()
public java.lang.String description()
public java.lang.String toString()
toString
in class java.lang.Enum<ConstantPool.SUBTAG>