Home
last modified time | relevance | path

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

/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/
DReadOnlyDeserFailOnUnknown2719Test.java35 r = r.with(DeserializationFeature.FAIL_ON_IGNORED_PROPERTIES); in testFailOnIgnore()
44 r = r.with(DeserializationFeature.FAIL_ON_IGNORED_PROPERTIES); in testFailOnIgnore()
DIncludeWithDeserTest.java137 r = r.with(DeserializationFeature.FAIL_ON_IGNORED_PROPERTIES); in testIncludeIgnoredAndUnrecognizedField()
155 r = r.without(DeserializationFeature.FAIL_ON_IGNORED_PROPERTIES); in testIncludeIgnoredAndUnrecognizedField()
DIgnoreWithDeserTest.java67 r = r.with(DeserializationFeature.FAIL_ON_IGNORED_PROPERTIES); in testFailOnIgnore()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/
DObjectReaderTest.java177 r = r.withoutFeatures(DeserializationFeature.FAIL_ON_IGNORED_PROPERTIES, in testFeatureSettings()
179 assertFalse(r.isEnabled(DeserializationFeature.FAIL_ON_IGNORED_PROPERTIES)); in testFeatureSettings()
181 r = r.withFeatures(DeserializationFeature.FAIL_ON_IGNORED_PROPERTIES, in testFeatureSettings()
183 assertTrue(r.isEnabled(DeserializationFeature.FAIL_ON_IGNORED_PROPERTIES)); in testFeatureSettings()
187 assertSame(r, r.with(DeserializationFeature.FAIL_ON_IGNORED_PROPERTIES, in testFeatureSettings()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DDeserializationFeature.java188 FAIL_ON_IGNORED_PROPERTIES(false), enumConstant
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/jsontype/
DTestPolymorphicWithDefaultImpl.java214 DeserializationFeature.FAIL_ON_IGNORED_PROPERTIES in testInvalidTypeId511()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/
DBeanDeserializerBase.java1700 if (ctxt.isEnabled(DeserializationFeature.FAIL_ON_IGNORED_PROPERTIES)) { in handleIgnoredProperty()
/external/jackson-databind/release-notes/
DVERSION-2.x41 #2719: `FAIL_ON_IGNORED_PROPERTIES` does not throw on `READONLY` properties with