MCPcopy
hub / github.com/Konloch/bytecode-viewer / ConstantType

Interface ConstantType

plugins/java/ClassParser.java:330–346  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected