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.


Variable Index

 o CONSTANT_Class
The tag value for a class or an interface.
 o CONSTANT_Double
The tag value for a constant double.
 o CONSTANT_Fieldref
The tag value for a class field.
 o CONSTANT_Float
The tag value for a constant float.
 o CONSTANT_Integer
The tag value for a constant integer.
 o CONSTANT_InterfaceMethodref
The tag value for an interface method.
 o CONSTANT_Long
The tag value for a constant long.
 o CONSTANT_Methodref
The tag value for a class method.
 o CONSTANT_NameAndType
The tag value for a field or method that does not indicate affiliation with a specific class or interface.
 o CONSTANT_String
The tag value for a java.lang.String object.
 o CONSTANT_Utf8
The tag value for a constant string.

Constructor Index

 o ClassConstants()

Variables

 o CONSTANT_Utf8
 public static final byte CONSTANT_Utf8
The tag value for a constant string.

 o CONSTANT_Integer
 public static final byte CONSTANT_Integer
The tag value for a constant integer.

 o CONSTANT_Float
 public static final byte CONSTANT_Float
The tag value for a constant float.

 o CONSTANT_Long
 public static final byte CONSTANT_Long
The tag value for a constant long.

 o CONSTANT_Double
 public static final byte CONSTANT_Double
The tag value for a constant double.

 o CONSTANT_Class
 public static final byte CONSTANT_Class
The tag value for a class or an interface.

 o CONSTANT_String
 public static final byte CONSTANT_String
The tag value for a java.lang.String object.

 o CONSTANT_Fieldref
 public static final byte CONSTANT_Fieldref
The tag value for a class field.

 o CONSTANT_Methodref
 public static final byte CONSTANT_Methodref
The tag value for a class method.

 o CONSTANT_InterfaceMethodref
 public static final byte CONSTANT_InterfaceMethodref
The tag value for an interface method.

 o 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.

Constructors

 o ClassConstants
 public ClassConstants()

All Packages  Class Hierarchy  This Package  Previous  Next  Index