W3cubDocs

/OpenJDK 25

Interface NewPrimitiveArrayInstruction

All Superinterfaces:
ClassFileElement, CodeElement, Instruction
public sealed interface NewPrimitiveArrayInstruction extends Instruction
Models a 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:

where typeKind is primitive and not void.
See Java Virtual Machine Specification:
6.5.newarray newarray
Since:
24
See Also:

Method Summary

Modifier and Type Method Description
static NewPrimitiveArrayInstruction of(TypeKind typeKind)
Returns a new primitive array instruction.
TypeKind typeKind()
Returns the component type of the array.

Methods declared in interface Instruction

opcode, sizeInBytes

Method Details

typeKind

TypeKind typeKind()
Returns the component type of the array.
API Note:
The backing array code for this instruction is available through typeKind().newarrayCode().
Returns:
the component type of the array

of

static NewPrimitiveArrayInstruction of(TypeKind typeKind)
Returns a new primitive array instruction.
Parameters:
typeKind - the component type of the array
Returns:
a new primitive array instruction
Throws:
IllegalArgumentException - when typeKind is not primitive or is void
See Also:

© 1993, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/25/docs/api/java.base/java/lang/classfile/instruction/NewPrimitiveArrayInstruction.html