Searched refs:PRIMITIVE_CLASSES (Results 1 – 1 of 1) sorted by relevance
/libcore/luni/src/main/java/java/io/ |
D | ObjectInputStream.java | 103 …private static final HashMap<String, Class<?>> PRIMITIVE_CLASSES = new HashMap<String, Class<?>>(); field in ObjectInputStream 105 PRIMITIVE_CLASSES.put("boolean", boolean.class); 106 PRIMITIVE_CLASSES.put("byte", byte.class); 107 PRIMITIVE_CLASSES.put("char", char.class); 108 PRIMITIVE_CLASSES.put("double", double.class); 109 PRIMITIVE_CLASSES.put("float", float.class); 110 PRIMITIVE_CLASSES.put("int", int.class); 111 PRIMITIVE_CLASSES.put("long", long.class); 112 PRIMITIVE_CLASSES.put("short", short.class); 113 PRIMITIVE_CLASSES.put("void", void.class); [all …]
|