1 /*
2 * MIT License
3 * Copyright (c) 2006-2025 JMockit developers
4 * See LICENSE file for full license text.
5 */
6 package mockit.asm.jvmConstants;
7
8 /**
9 * Types for the argument of a NEWARRAY instruction.
10 */
11 public interface ArrayElementType {
12 int BOOLEAN = 4;
13 int CHAR = 5;
14 int FLOAT = 6;
15 int DOUBLE = 7;
16 int BYTE = 8;
17 int SHORT = 9;
18 int INT = 10;
19 int LONG = 11;
20 }