Uses of Interface
java.lang.classfile.constantpool.PoolEntry
Packages that use PoolEntry
Package
Description
Provides classfile parsing, generation, and transformation library.
Provides interfaces describing constant pool entries for the
java.lang.classfile
library.-
Uses of PoolEntry in java.lang.classfile
Methods in java.lang.classfile with type parameters of type PoolEntryModifier and TypeMethodDescription<T extends PoolEntry>
TReturns the constant pool entry of a given type whose index is given at the specified offset within theclass
file.<T extends PoolEntry>
TClassReader.readEntryOrNull
(int offset, Class<T> cls) Returns the constant pool entry of a given type whose index is given at the specified offset within theclass
file, ornull
if the index at the specified offset is zero.Methods in java.lang.classfile that return PoolEntryModifier and TypeMethodDescriptionClassReader.readEntry
(int offset) Returns the constant pool entry whose index is given at the specified offset within theclass
file.ClassReader.readEntryOrNull
(int offset) Returns the constant pool entry whose index is given at the specified offset within theclass
file, ornull
if the index at the specified offset is zero.Methods in java.lang.classfile with parameters of type PoolEntryModifier and TypeMethodDescriptionvoid
BufWriter.writeIndex
(PoolEntry entry) Writes the index of the specified constant pool entry as au2
.void
BufWriter.writeIndexOrZero
(PoolEntry entry) Writes the index of the specified constant pool entry, or the value0
if the specified entry isnull
, as au2
. -
Uses of PoolEntry in java.lang.classfile.constantpool
Subinterfaces of PoolEntry in java.lang.classfile.constantpoolModifier and TypeInterfaceDescriptioninterface
Marker interface for constant pool entries that can represent constant values associated with elements of annotations.interface
Models aCONSTANT_Class_info
structure, representing a reference type, in the constant pool of aclass
file.interface
Models aCONSTANT_Dynamic_info
structure, representing a dynamically-computed constant, in the constant pool of aclass
file.interface
Marker interface for constant pool entries that can represent constant values in theConstantValue
attribute.interface
Models aCONSTANT_Double_info
structure, representing adouble
constant, in the constant pool of aclass
file.interface
Superinterface modeling dynamically-computed constant pool entries, which includeConstantDynamicEntry
andInvokeDynamicEntry
, in the constant pool of aclass
file.interface
Models aCONSTANT_Fieldref_info
structure, or a symbolic reference to a field, in the constant pool of aclass
file.interface
Models aCONSTANT_Float_info
structure, or afloat
constant, in the constant pool of aclass
file.interface
Models aCONSTANT_Integer_info
structure, or anint
constant, in the constant pool of aclass
file.interface
Models aCONSTANT_InterfaceMethodRef_info
structure, or a symbolic reference to an interface method, in the constant pool of aclass
file.interface
Models aCONSTANT_InvokeDynamic_info
structure, or the symbolic reference to a dynamically-computed call site, in the constant pool of aclass
file.interface
Marker interface for constant pool entries suitable for loading via theldc
instructions.interface
Models aCONSTANT_Long_info
structure, or along
constant, in the constant pool of aclass
file.interface
Superinterface modeling symbolic references to a member of a class or interface in the constant pool of aclass
file, which include references to fields, class methods, and interface methods.interface
Models aCONSTANT_MethodHandle_info
structure, or a symbolic reference to a method handle, in the constant pool of aclass
file.interface
Models aCONSTANT_MethodRef_info
structure, or a symbolic reference to a class method, in the constant pool of aclass
file.interface
Models aCONSTANT_MethodType_info
structure, or a symbolic reference to a method type, in the constant pool of aclass
file.interface
Models aCONSTANT_Module_info
structure, denoting a module, in the constant pool of aclass
file.interface
Models aCONSTANT_NameAndType_info
structure, representing a field or method, in the constant pool of aclass
file.interface
Models aCONSTANT_Package_info
, representing a package, in the constant pool of aclass
file.interface
Models aCONSTANT_String_info
structure, or a string constant, in the constant pool of aclass
file.interface
Models aCONSTANT_UTF8_info
constant, representing strings, in the constant pool of aclass
file.Subinterfaces with type arguments of type PoolEntry in java.lang.classfile.constantpoolModifier and TypeInterfaceDescriptioninterface
Provides read access to the constant pool and the bootstrap method table of aclass
file.Methods in java.lang.classfile.constantpool with type parameters of type PoolEntryModifier and TypeMethodDescription<T extends PoolEntry>
TConstantPool.entryByIndex
(int index, Class<T> cls) Returns the entry of a given type at the specified index.Methods in java.lang.classfile.constantpool that return PoolEntryModifier and TypeMethodDescriptionConstantPool.entryByIndex
(int index) Returns the entry at the specified index.Methods in java.lang.classfile.constantpool that return types with arguments of type PoolEntry