Package gnu.bytecode
Class CpoolNameAndType
- java.lang.Object
-
- gnu.bytecode.CpoolEntry
-
- gnu.bytecode.CpoolNameAndType
-
public class CpoolNameAndType extends CpoolEntry
A CONSTANT_NameAndType entry in the constant pool.
-
-
Field Summary
-
Fields inherited from class gnu.bytecode.CpoolEntry
index
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CpoolUtf8
getName()
int
getTag()
CpoolUtf8
getType()
int
hashCode()
void
print(ClassTypeWriter dst, int verbosity)
Print this constant pool entry.-
Methods inherited from class gnu.bytecode.CpoolEntry
getIndex
-
-
-
-
Method Detail
-
getTag
public int getTag()
- Specified by:
getTag
in classCpoolEntry
-
getName
public final CpoolUtf8 getName()
-
getType
public final CpoolUtf8 getType()
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classCpoolEntry
-
print
public void print(ClassTypeWriter dst, int verbosity)
Description copied from class:CpoolEntry
Print this constant pool entry. If verbosity==0, print very tersely (no extraneous text). If verbosity==1, prefix the type of the constant. If verbosity==2, add more descriptive text.- Specified by:
print
in classCpoolEntry
-
-