Interface StackInstruction
- All Superinterfaces:
ClassFileElement,CodeElement,Instruction
Models a stack manipulation instruction in the
code array of a
Code attribute. Corresponding opcodes will have a kind of
Opcode.Kind.STACK. Delivered as a CodeElement when
traversing the elements of a CodeModel.- Since:
- 24
-
Method Summary
Static MethodsModifier and TypeMethodDescriptionstatic StackInstructionReturns a stack manipulation instruction.Methods declared in interface java.lang.classfile.Instruction
opcode, sizeInBytes
-
Method Details
-
of
Returns a stack manipulation instruction.- Parameters:
op- the opcode for the specific type of stack instruction, which must be of kindOpcode.Kind.STACK- Returns:
- a stack manipulation instruction
- Throws:
IllegalArgumentException- if the opcode kind is notOpcode.Kind.STACK.
-