Interface StoreInstruction
- All Superinterfaces:
ClassFileElement
,CodeElement
,Instruction
Models a local variable store instruction in the
code
array of a
Code
attribute. Corresponding opcodes will have a kind
of
Opcode.Kind.STORE
. Delivered as a CodeElement
when
traversing the elements of a CodeModel
.- Since:
- 24
-
Method Summary
Modifier and TypeMethodDescriptionstatic StoreInstruction
Returns a local variable store instruction.static StoreInstruction
Returns a local variable store instruction.int
slot()
Returns the local variable slot to store to.typeKind()
Returns the type of the value to be stored.Methods declared in interface java.lang.classfile.Instruction
opcode, sizeInBytes
-
Method Details
-
slot
int slot()Returns the local variable slot to store to.- Returns:
- the local variable slot to store to
-
typeKind
TypeKind typeKind()Returns the type of the value to be stored.- Returns:
- the type of the value to be stored
-
of
Returns a local variable store instruction.- Parameters:
kind
- the type of the value to be storedslot
- the local variable slot to store to- Returns:
- a local variable store instruction
- Throws:
IllegalArgumentException
- ifkind
isvoid
orslot
is out of range
-
of
Returns a local variable store instruction.- Parameters:
op
- the opcode for the specific type of store instruction, which must be of kindOpcode.Kind.STORE
slot
- the local variable slot to store to- Returns:
- a local variable store instruction
- Throws:
IllegalArgumentException
- if the opcode kind is notOpcode.Kind.STORE
orslot
is out of range
-