Home
last modified time | relevance | path

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

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/std/
DStdDeserializer.java1269 if (!ctxt.isEnabled(MapperFeature.ALLOW_COERCION_OF_SCALARS)) { in _checkTextualNull()
1270 … _reportFailedNullCoerce(ctxt, true, MapperFeature.ALLOW_COERCION_OF_SCALARS, "String \"null\""); in _checkTextualNull()
1336 if (!ctxt.isEnabled(MapperFeature.ALLOW_COERCION_OF_SCALARS)) { in _verifyNullForPrimitiveCoercion()
1337 feat = MapperFeature.ALLOW_COERCION_OF_SCALARS; in _verifyNullForPrimitiveCoercion()
1412 MapperFeature feat = MapperFeature.ALLOW_COERCION_OF_SCALARS; in _verifyStringForScalarCoercion()
1430 if (!ctxt.isEnabled(MapperFeature.ALLOW_COERCION_OF_SCALARS)) { in _coerceEmptyString()
1431 feat = MapperFeature.ALLOW_COERCION_OF_SCALARS; in _coerceEmptyString()
1455 if (!ctxt.isEnabled(MapperFeature.ALLOW_COERCION_OF_SCALARS)) { in _verifyNullForScalarCoercion()
1457 _reportFailedNullCoerce(ctxt, true, MapperFeature.ALLOW_COERCION_OF_SCALARS, strDesc); in _verifyNullForScalarCoercion()
1464 MapperFeature feat = MapperFeature.ALLOW_COERCION_OF_SCALARS; in _verifyNumberForScalarCoercion()
[all …]
DEnumDeserializer.java251 if (!ctxt.isEnabled(MapperFeature.ALLOW_COERCION_OF_SCALARS)) { in _deserializeAltString()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DMapperFeature.java494 ALLOW_COERCION_OF_SCALARS(true), enumConstant
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/jdk/
DJDKNumberLeniencyTest.java11 .disable(MapperFeature.ALLOW_COERCION_OF_SCALARS)
DJDKNumberDeserTest.java174 .disable(MapperFeature.ALLOW_COERCION_OF_SCALARS) in testTextualNullAsNumber()
DEnumDeserializationTest.java459 .configure(MapperFeature.ALLOW_COERCION_OF_SCALARS, false) in testIndexAsString()
DJDKScalarsTest.java127 .disable(MapperFeature.ALLOW_COERCION_OF_SCALARS)
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/mixins/
DMapperMixinsCopy1998Test.java125 .configure(MapperFeature.ALLOW_COERCION_OF_SCALARS, false) in defaultMapper()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/convert/
DCoerceJDKScalarsTest.java23 .enable(MapperFeature.ALLOW_COERCION_OF_SCALARS)
27 .disable(MapperFeature.ALLOW_COERCION_OF_SCALARS)
DCoerceToBooleanTest.java27 .disable(MapperFeature.ALLOW_COERCION_OF_SCALARS)
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/cfg/
DCoercionConfigs.java215 if (!config.isEnabled(MapperFeature.ALLOW_COERCION_OF_SCALARS)) { in findCoercion()
/external/jackson-databind/release-notes/
DVERSION-2.x610 #1106: Add `MapperFeature.ALLOW_COERCION_OF_SCALARS` for enabling/disabling coercions