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 StoreInstructionReturns a local variable store instruction.static StoreInstructionReturns a local variable store instruction.intslot()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- ifkindisvoidorslotis 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.STOREslot- the local variable slot to store to- Returns:
- a local variable store instruction
- Throws:
IllegalArgumentException- if the opcode kind is notOpcode.Kind.STOREorslotis out of range
-