Home
last modified time | relevance | path

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

/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/cfg/
DSerConfigTest.java58 assertNotSame(config, config.withoutFeatures(JsonGenerator.Feature.IGNORE_UNKNOWN)); in testGeneratorFeatures()
68 assertNotSame(config, config.withoutFeatures(BogusFormatFeature.FF_DISABLED_BY_DEFAULT, in testFormatFeatures()
DDeserializationConfigTest.java67 assertNotSame(config, config.withoutFeatures(JsonReadFeature.ALLOW_JAVA_COMMENTS, in testParserFeatures()
78 assertNotSame(config, config.withoutFeatures(BogusFormatFeature.FF_DISABLED_BY_DEFAULT, in testFormatFeatures()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DObjectWriter.java313 public ObjectWriter withoutFeatures(SerializationFeature... features) { in withoutFeatures() method in ObjectWriter
314 return _new(this, _config.withoutFeatures(features)); in withoutFeatures()
347 public ObjectWriter withoutFeatures(JsonGenerator.Feature... features) { in withoutFeatures() method in ObjectWriter
348 return _new(this, _config.withoutFeatures(features)); in withoutFeatures()
401 public ObjectWriter withoutFeatures(FormatFeature... features) { in withoutFeatures() method in ObjectWriter
402 return _new(this, _config.withoutFeatures(features)); in withoutFeatures()
DSerializationConfig.java436 public SerializationConfig withoutFeatures(SerializationFeature... features) in withoutFeatures() method in SerializationConfig
512 public SerializationConfig withoutFeatures(JsonGenerator.Feature... features) in withoutFeatures() method in SerializationConfig
603 public SerializationConfig withoutFeatures(FormatFeature... features) in withoutFeatures() method in SerializationConfig
DObjectReader.java432 public ObjectReader withoutFeatures(DeserializationFeature... features) { in withoutFeatures() method in ObjectReader
433 return _with(_config.withoutFeatures(features)); in withoutFeatures()
487 public ObjectReader withoutFeatures(JsonParser.Feature... features) { in withoutFeatures() method in ObjectReader
488 return _with(_config.withoutFeatures(features)); in withoutFeatures()
563 public ObjectReader withoutFeatures(FormatFeature... features) { in withoutFeatures() method in ObjectReader
564 return _with(_config.withoutFeatures(features)); in withoutFeatures()
DDeserializationConfig.java433 public DeserializationConfig withoutFeatures(DeserializationFeature... features) in withoutFeatures() method in DeserializationConfig
510 public DeserializationConfig withoutFeatures(JsonParser.Feature... features) in withoutFeatures() method in DeserializationConfig
602 public DeserializationConfig withoutFeatures(FormatFeature... features) in withoutFeatures() method in DeserializationConfig
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/
DObjectWriterTest.java257 assertSame(newW, newW.withoutFeatures(SerializationFeature.FAIL_ON_EMPTY_BEANS)); in testFeatureSettings()
259 assertNotSame(w, w.withoutFeatures(SerializationFeature.FAIL_ON_EMPTY_BEANS, in testFeatureSettings()
271 assertNotSame(w, w.withoutFeatures(JsonGenerator.Feature.AUTO_CLOSE_TARGET)); in testGeneratorFeatures()
DObjectReaderTest.java177 r = r.withoutFeatures(DeserializationFeature.FAIL_ON_IGNORED_PROPERTIES, in testFeatureSettings()
219 ObjectReader r3 = r2.withoutFeatures(JsonParser.Feature.IGNORE_UNDEFINED, in testFeatureSettingsDeprecated()