Searched defs:PRIMITIVE_TO_SIGNATURE (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/libcore/reflect/
H A DTypes.java32 private static final Map<Class<?>, String> PRIMITIVE_TO_SIGNATURE; field in class:Types
34 PRIMITIVE_TO_SIGNATURE = new HashMap<Class<?>, String>(9);
35 PRIMITIVE_TO_SIGNATURE.put(byte.class, "B");
36 PRIMITIVE_TO_SIGNATURE.put(char.class, "C");
37 PRIMITIVE_TO_SIGNATURE.put(short.class, "S");
38 PRIMITIVE_TO_SIGNATURE.put(int.class, "I");
39 PRIMITIVE_TO_SIGNATURE.put(long.class, "J");
40 PRIMITIVE_TO_SIGNATURE.put(float.class, "F");
41 PRIMITIVE_TO_SIGNATURE.put(double.class, "D");
42 PRIMITIVE_TO_SIGNATURE
[all...]

Completed in 62 milliseconds