Uses of Interface
java.lang.classfile.constantpool.FieldRefEntry
Packages that use FieldRefEntry
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 FieldRefEntry in java.lang.classfile
Methods in java.lang.classfile with parameters of type FieldRefEntryModifier and TypeMethodDescriptiondefault CodeBuilder
CodeBuilder.fieldAccess
(Opcode opcode, FieldRefEntry ref) Generates an instruction to access a field.default CodeBuilder
CodeBuilder.getfield
(FieldRefEntry ref) Generates an instruction to fetch field from an object.default CodeBuilder
CodeBuilder.getstatic
(FieldRefEntry ref) Generates an instruction to get static field from a class or interface.default CodeBuilder
CodeBuilder.putfield
(FieldRefEntry ref) Generates an instruction to set field in an object.default CodeBuilder
CodeBuilder.putstatic
(FieldRefEntry ref) Generates an instruction to set static field in a class. -
Uses of FieldRefEntry in java.lang.classfile.constantpool
Methods in java.lang.classfile.constantpool that return FieldRefEntryModifier and TypeMethodDescriptionConstantPoolBuilder.fieldRefEntry
(ClassEntry owner, NameAndTypeEntry nameAndType) default FieldRefEntry
ConstantPoolBuilder.fieldRefEntry
(ClassDesc owner, String name, ClassDesc type) Returns aFieldRefEntry
describing a field of a class. -
Uses of FieldRefEntry in java.lang.classfile.instruction
Methods in java.lang.classfile.instruction that return FieldRefEntryModifier and TypeMethodDescriptionFieldInstruction.field()
Returns theFieldRefEntry
constant described by this instruction.Methods in java.lang.classfile.instruction with parameters of type FieldRefEntryModifier and TypeMethodDescriptionstatic FieldInstruction
FieldInstruction.of
(Opcode op, FieldRefEntry field) Returns a field access instruction.