Interface ArrayStoreInstruction
- All Superinterfaces:
ClassFileElement,CodeElement,Instruction
Models an array store instruction in the
code array of a Code
attribute. Corresponding opcodes will have a kind of Opcode.Kind.ARRAY_STORE. Delivered as a CodeElement when
traversing the elements of a CodeModel.- Since:
- 24
-
Method Summary
Modifier and TypeMethodDescriptionstatic ArrayStoreInstructionReturns an array store instruction.typeKind()Returns the component type of the array.Methods declared in interface java.lang.classfile.Instruction
opcode, sizeInBytes
-
Method Details
-
typeKind
-
of
Returns an array store instruction.- Parameters:
op- the opcode for the specific type of array store instruction, which must be of kindOpcode.Kind.ARRAY_STORE- Returns:
- an array store instruction
- Throws:
IllegalArgumentException- if the opcode kind is notOpcode.Kind.ARRAY_STORE.
-