Uses of Interface
io.smallrye.classfile.constantpool.FieldRefEntry
Packages that use FieldRefEntry
Package
Description
Provides classfile parsing, generation, and transformation library.
Provides interfaces describing constant pool entries for the
io.smallrye.classfile library.Provides interfaces describing code instructions for the
io.smallrye.classfile library.-
Uses of FieldRefEntry in io.smallrye.classfile
Methods in io.smallrye.classfile with parameters of type FieldRefEntryModifier and TypeMethodDescriptiondefault CodeBuilderCodeBuilder.fieldAccess(Opcode opcode, FieldRefEntry ref) Generates an instruction to access a field.default CodeBuilderCodeBuilder.getfield(FieldRefEntry ref) Generates an instruction to fetch field from an object.default CodeBuilderCodeBuilder.getstatic(FieldRefEntry ref) Generates an instruction to get static field from a class or interface.default CodeBuilderCodeBuilder.putfield(FieldRefEntry ref) Generates an instruction to set field in an object.default CodeBuilderCodeBuilder.putstatic(FieldRefEntry ref) Generates an instruction to set static field in a class. -
Uses of FieldRefEntry in io.smallrye.classfile.constantpool
Methods in io.smallrye.classfile.constantpool that return FieldRefEntryModifier and TypeMethodDescriptionConstantPoolBuilder.fieldRefEntry(ClassEntry owner, NameAndTypeEntry nameAndType) default FieldRefEntryConstantPoolBuilder.fieldRefEntry(ClassDesc owner, String name, ClassDesc type) Returns aFieldRefEntrydescribing a field of a class. -
Uses of FieldRefEntry in io.smallrye.classfile.instruction
Methods in io.smallrye.classfile.instruction that return FieldRefEntryModifier and TypeMethodDescriptionFieldInstruction.field()Returns theFieldRefEntryconstant described by this instruction.Methods in io.smallrye.classfile.instruction with parameters of type FieldRefEntryModifier and TypeMethodDescriptionstatic FieldInstructionFieldInstruction.of(Opcode op, FieldRefEntry field) Returns a field access instruction.