Home
last modified time | relevance | path

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

/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/creators/
DTestCreatorNullPrimitives.java47 .with(DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES); in testCreatorNullPrimitive()
61 .with(DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES); in testCreatorNullPrimitiveInNestedObject()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/jdk/
DJDKScalarsTest.java252 .with(DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES) in testCharacterWrapper()
259 .without(DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES) in testCharacterWrapper()
568 .with(DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES); in testEmptyStringFailForBooleanPrimitive()
605 .with(DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES); in testNullForPrimitives()
674 .with(DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES) in testNullForPrimitivesViaCreator()
713 .with(DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES); in _testNullForPrimitiveArrays()
DJDKNumberDeserTest.java166 MAPPER.readerFor(Integer.TYPE).with(DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES) in testTextualNullAsNumber()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DDeserializationFeature.java133 FAIL_ON_NULL_FOR_PRIMITIVES(false), enumConstant
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/std/
DStdDeserializer.java1316 if (ctxt.isEnabled(DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES)) { in _verifyNullForPrimitive()
1339 } else if (ctxt.isEnabled(DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES)) { in _verifyNullForPrimitiveCoercion()
1340 feat = DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES; in _verifyNullForPrimitiveCoercion()
1433 … } else if (isPrimitive && ctxt.isEnabled(DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES)) { in _coerceEmptyString()
1434 feat = DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES; in _coerceEmptyString()
DNumberDeserializers.java174 if (_primitive && ctxt.isEnabled(DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES)) { in getNullValue()
/external/jackson-databind/release-notes/
DCREDITS-2.x702 * Reported #403: Make FAIL_ON_NULL_FOR_PRIMITIVES apply to primitive arrays and other
DVERSION-2.x596 #403: Make FAIL_ON_NULL_FOR_PRIMITIVES apply to primitive arrays and other types that wrap primitiv…
1076 `DeserializationFeature .FAIL_ON_NULL_FOR_PRIMITIVES` is `true`