| 328 | } |
| 329 | |
| 330 | private interface ConstantType |
| 331 | { |
| 332 | public static final byte CONSTANT_Utf8 = 1; |
| 333 | public static final byte CONSTANT_Class = 7; |
| 334 | public static final byte CONSTANT_Fieldref = 9; |
| 335 | public static final byte CONSTANT_Methodref = 10; |
| 336 | public static final byte CONSTANT_InterfaceMethodref = 11; |
| 337 | public static final byte CONSTANT_String = 8; |
| 338 | public static final byte CONSTANT_Integer = 3; |
| 339 | public static final byte CONSTANT_Float = 4; |
| 340 | public static final byte CONSTANT_Long = 5; |
| 341 | public static final byte CONSTANT_Double = 6; |
| 342 | public static final byte CONSTANT_NameAndType = 12; |
| 343 | public static final byte CONSTANT_MethodHandle = 15; |
| 344 | public static final byte CONSTANT_MethodType = 16; |
| 345 | public static final byte CONSTANT_InvokeDynamic = 18; |
| 346 | } |
| 347 | } |
nothing calls this directly
no outgoing calls
no test coverage detected