Uses of Interface
java.lang.classfile.constantpool.MemberRefEntry
Packages that use MemberRefEntry
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 MemberRefEntry in java.lang.classfile
Methods in java.lang.classfile with parameters of type MemberRefEntryModifier and TypeMethodDescriptiondefault CodeBuilder
CodeBuilder.invoke
(Opcode opcode, MemberRefEntry ref) Generates an instruction to invoke a method. -
Uses of MemberRefEntry in java.lang.classfile.constantpool
Subinterfaces of MemberRefEntry in java.lang.classfile.constantpoolModifier and TypeInterfaceDescriptioninterface
Models aCONSTANT_Fieldref_info
structure, or a symbolic reference to a field, 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_MethodRef_info
structure, or a symbolic reference to a class method, in the constant pool of aclass
file.Methods in java.lang.classfile.constantpool that return MemberRefEntryModifier and TypeMethodDescriptionMethodHandleEntry.reference()
Returns the constant pool entry describing the field or method, according to the reference kind.Methods in java.lang.classfile.constantpool with parameters of type MemberRefEntryModifier and TypeMethodDescriptionConstantPoolBuilder.methodHandleEntry
(int refKind, MemberRefEntry reference) Returns aMethodHandleEntry
encoding a reference kind and referring to aMemberRefEntry
. -
Uses of MemberRefEntry in java.lang.classfile.instruction
Methods in java.lang.classfile.instruction that return MemberRefEntryModifier and TypeMethodDescriptionInvokeInstruction.method()
Returns theMethodRefEntry
orInterfaceMethodRefEntry
constant described by this instruction.Methods in java.lang.classfile.instruction with parameters of type MemberRefEntryModifier and TypeMethodDescriptionstatic InvokeInstruction
InvokeInstruction.of
(Opcode op, MemberRefEntry method) Returns an invocation instruction.