All Packages Class Hierarchy This Package Previous Next Index
Class com.sun.wizards.builder.compiler.ClassConstants
java.lang.Object
|
+----com.sun.wizards.builder.compiler.ClassConstants
- public class ClassConstants
- extends Object
ClassConstants is a class that contains the constant pool
tag values. These values are used to interpret a class
file.
The information used to write this class was obtained from
the book "The Java Virtual Machine Specification", pages
84 - 118.
Note: The use of all lower-case variable names with
underscores is done to show an exact translation
from the Virtual Machine Specification.
-
CONSTANT_Class
- The tag value for a class or an
interface.
-
CONSTANT_Double
- The tag value for a constant double.
-
CONSTANT_Fieldref
- The tag value for a class field.
-
CONSTANT_Float
- The tag value for a constant float.
-
CONSTANT_Integer
- The tag value for a constant integer.
-
CONSTANT_InterfaceMethodref
- The tag value for an interface method.
-
CONSTANT_Long
- The tag value for a constant long.
-
CONSTANT_Methodref
- The tag value for a class method.
-
CONSTANT_NameAndType
- The tag value for a field or method that does
not indicate affiliation with a specific
class or interface.
-
CONSTANT_String
- The tag value for a java.lang.String
object.
-
CONSTANT_Utf8
- The tag value for a constant string.
-
ClassConstants()
-
CONSTANT_Utf8
public static final byte CONSTANT_Utf8
- The tag value for a constant string.
CONSTANT_Integer
public static final byte CONSTANT_Integer
- The tag value for a constant integer.
CONSTANT_Float
public static final byte CONSTANT_Float
- The tag value for a constant float.
CONSTANT_Long
public static final byte CONSTANT_Long
- The tag value for a constant long.
CONSTANT_Double
public static final byte CONSTANT_Double
- The tag value for a constant double.
CONSTANT_Class
public static final byte CONSTANT_Class
- The tag value for a class or an
interface.
CONSTANT_String
public static final byte CONSTANT_String
- The tag value for a java.lang.String
object.
CONSTANT_Fieldref
public static final byte CONSTANT_Fieldref
- The tag value for a class field.
CONSTANT_Methodref
public static final byte CONSTANT_Methodref
- The tag value for a class method.
CONSTANT_InterfaceMethodref
public static final byte CONSTANT_InterfaceMethodref
- The tag value for an interface method.
CONSTANT_NameAndType
public static final byte CONSTANT_NameAndType
- The tag value for a field or method that does
not indicate affiliation with a specific
class or interface.
ClassConstants
public ClassConstants()
All Packages Class Hierarchy This Package Previous Next Index