Module io.github.dmlloyd.classfile
Interface NewPrimitiveArrayInstruction
- All Superinterfaces:
ClassFileElement,CodeElement,Instruction
Models a
where
newarray instruction in the code
array of a Code attribute. Delivered as a CodeElement
when traversing the elements of a CodeModel.
A new primitive array instruction is composite:
NewPrimitiveArrayInstruction(TypeKind typeKind)
typeKind is primitive and not void.- Since:
- 24
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionstatic NewPrimitiveArrayInstructionReturns a new primitive array instruction.typeKind()Returns the component type of the array.Methods inherited from interface io.github.dmlloyd.classfile.Instruction
opcode, sizeInBytes
-
Method Details
-
typeKind
TypeKind typeKind()Returns the component type of the array.- Returns:
- the component type of the array
-
of
Returns a new primitive array instruction.- Parameters:
typeKind- the component type of the array- Returns:
- a new primitive array instruction
- Throws:
IllegalArgumentException- whentypeKindis not primitive or isvoid- See Also:
-