1 package mockit.asm.jvmConstants; 2 3 /** 4 * Types for the argument of a NEWARRAY instruction. 5 */ 6 public interface ArrayElementType { 7 int BOOLEAN = 4; 8 int CHAR = 5; 9 int FLOAT = 6; 10 int DOUBLE = 7; 11 int BYTE = 8; 12 int SHORT = 9; 13 int INT = 10; 14 int LONG = 11; 15 }