Home
last modified time | relevance | path

Searched refs:PRIMITIVE_OR_WRAPPER_DEFAULT_VALUES (Results 1 – 1 of 1) sorted by relevance

/external/mockito/src/main/java/org/mockito/internal/util/
DPrimitives.java14 …private static final Map<Class<?>, Object> PRIMITIVE_OR_WRAPPER_DEFAULT_VALUES = new HashMap<Class… field in Primitives
42 return PRIMITIVE_OR_WRAPPER_DEFAULT_VALUES.containsKey(type); in isPrimitiveOrWrapper()
60 return (T) PRIMITIVE_OR_WRAPPER_DEFAULT_VALUES.get(primitiveOrWrapperType); in defaultValue()
76 PRIMITIVE_OR_WRAPPER_DEFAULT_VALUES.put(Boolean.class, false); in PRIMITIVE_OR_WRAPPER_DEFAULT_VALUES.put()
77 PRIMITIVE_OR_WRAPPER_DEFAULT_VALUES.put(Character.class, '\u0000'); in PRIMITIVE_OR_WRAPPER_DEFAULT_VALUES.put()
78 PRIMITIVE_OR_WRAPPER_DEFAULT_VALUES.put(Byte.class, (byte) 0); in PRIMITIVE_OR_WRAPPER_DEFAULT_VALUES.put()
79 PRIMITIVE_OR_WRAPPER_DEFAULT_VALUES.put(Short.class, (short) 0); in PRIMITIVE_OR_WRAPPER_DEFAULT_VALUES.put()
80 PRIMITIVE_OR_WRAPPER_DEFAULT_VALUES.put(Integer.class, 0); in PRIMITIVE_OR_WRAPPER_DEFAULT_VALUES.put()
81 PRIMITIVE_OR_WRAPPER_DEFAULT_VALUES.put(Long.class, 0L); in PRIMITIVE_OR_WRAPPER_DEFAULT_VALUES.put()
82 PRIMITIVE_OR_WRAPPER_DEFAULT_VALUES.put(Float.class, 0F); in PRIMITIVE_OR_WRAPPER_DEFAULT_VALUES.put()
[all …]