Uses of Interface
java.lang.classfile.constantpool.LoadableConstantEntry
Packages that use LoadableConstantEntry
Package
Description
Provides classfile parsing, generation, and transformation library.
Provides interfaces describing constant pool entries for the
java.lang.classfile
library.Provides interfaces describing code instructions for the
java.lang.classfile
library.-
Uses of LoadableConstantEntry in java.lang.classfile
Methods in java.lang.classfile that return types with arguments of type LoadableConstantEntryModifier and TypeMethodDescriptionBootstrapMethodEntry.arguments()
Returns the bootstrap arguments.Methods in java.lang.classfile with parameters of type LoadableConstantEntryModifier and TypeMethodDescriptiondefault CodeBuilder
CodeBuilder.ldc
(LoadableConstantEntry entry) Generates an instruction pushing an item from the run-time constant pool onto the operand stack. -
Uses of LoadableConstantEntry in java.lang.classfile.constantpool
Subinterfaces of LoadableConstantEntry in java.lang.classfile.constantpoolModifier and TypeInterfaceDescriptioninterface
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
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_Long_info
structure, or along
constant, in the constant pool of aclass
file.interface
Models aCONSTANT_MethodHandle_info
structure, or a symbolic reference to a method handle, 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_String_info
structure, or a string constant, in the constant pool of aclass
file.Methods in java.lang.classfile.constantpool that return LoadableConstantEntryModifier and TypeMethodDescriptiondefault LoadableConstantEntry
ConstantPoolBuilder.loadableConstantEntry
(ConstantDesc c) Returns aLoadableConstantEntry
describing the provided constant value.Method parameters in java.lang.classfile.constantpool with type arguments of type LoadableConstantEntryModifier and TypeMethodDescriptionConstantPoolBuilder.bsmEntry
(MethodHandleEntry methodReference, List<LoadableConstantEntry> arguments) Returns aBootstrapMethodEntry
referring to aMethodHandleEntry
and a list ofLoadableConstantEntry
. -
Uses of LoadableConstantEntry in java.lang.classfile.instruction
Methods in java.lang.classfile.instruction that return LoadableConstantEntryModifier and TypeMethodDescriptionConstantInstruction.LoadConstantInstruction.constantEntry()
Returns the constant value.Methods in java.lang.classfile.instruction with parameters of type LoadableConstantEntryModifier and TypeMethodDescriptionConstantInstruction.ofLoad
(Opcode op, LoadableConstantEntry constant) Returns a load constant instruction.