Searched refs:withoutFeatures (Results 1 – 8 of 8) sorted by relevance
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/cfg/ |
D | SerConfigTest.java | 58 assertNotSame(config, config.withoutFeatures(JsonGenerator.Feature.IGNORE_UNKNOWN)); in testGeneratorFeatures() 68 assertNotSame(config, config.withoutFeatures(BogusFormatFeature.FF_DISABLED_BY_DEFAULT, in testFormatFeatures()
|
D | DeserializationConfigTest.java | 67 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/ |
D | ObjectWriter.java | 313 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()
|
D | SerializationConfig.java | 436 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
|
D | ObjectReader.java | 432 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()
|
D | DeserializationConfig.java | 433 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/ |
D | ObjectWriterTest.java | 257 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()
|
D | ObjectReaderTest.java | 177 r = r.withoutFeatures(DeserializationFeature.FAIL_ON_IGNORED_PROPERTIES, in testFeatureSettings() 219 ObjectReader r3 = r2.withoutFeatures(JsonParser.Feature.IGNORE_UNDEFINED, in testFeatureSettingsDeprecated()
|