Interface FieldInstruction
- All Superinterfaces:
ClassFileElement
,CodeElement
,Instruction
Models a field access instruction in the
code
array of a Code
attribute. Corresponding opcodes will have a kind
of Opcode.Kind.FIELD_ACCESS
. Delivered as a CodeElement
when
traversing the elements of a CodeModel
.- Since:
- 24
-
Method Summary
Modifier and TypeMethodDescriptionfield()
Returns theFieldRefEntry
constant described by this instruction.default Utf8Entry
name()
Returns the name of the field.static FieldInstruction
of
(Opcode op, ClassEntry owner, NameAndTypeEntry nameAndType) Returns a field access instruction.static FieldInstruction
of
(Opcode op, ClassEntry owner, Utf8Entry name, Utf8Entry type) Returns a field access instruction.static FieldInstruction
of
(Opcode op, FieldRefEntry field) Returns a field access instruction.default ClassEntry
owner()
Returns the class holding the field.default Utf8Entry
type()
Returns the field descriptor of the field.default ClassDesc
Returns a symbolic descriptor for the type of the field.Methods declared in interface java.lang.classfile.Instruction
opcode, sizeInBytes
-
Method Details
-
field
FieldRefEntry field()Returns theFieldRefEntry
constant described by this instruction.- Returns:
- the
FieldRefEntry
constant described by this instruction
-
owner
Returns the class holding the field.- Returns:
- the class holding the field
-
name
-
type
Returns the field descriptor of the field.- Returns:
- the field descriptor of the field
-
typeSymbol
Returns a symbolic descriptor for the type of the field.- Returns:
- a symbolic descriptor for the type of the field
-
of
Returns a field access instruction.- Parameters:
op
- the opcode for the specific type of field access instruction, which must be of kindOpcode.Kind.FIELD_ACCESS
field
- a constant pool entry describing the field- Returns:
- a field access instruction
- Throws:
IllegalArgumentException
- if the opcode kind is notOpcode.Kind.FIELD_ACCESS
.
-
of
Returns a field access instruction.- Parameters:
op
- the opcode for the specific type of field access instruction, which must be of kindOpcode.Kind.FIELD_ACCESS
owner
- the class holding the fieldname
- the name of the fieldtype
- the field descriptor- Returns:
- a field access instruction
-
of
Returns a field access instruction.- Parameters:
op
- the opcode for the specific type of field access instruction, which must be of kindOpcode.Kind.FIELD_ACCESS
owner
- the class holding the fieldnameAndType
- the name and field descriptor of the field- Returns:
- a field access instruction
-