Home
last modified time | relevance | path

Searched refs:withoutAttribute (Results 1 – 5 of 5) sorted by relevance

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DObjectWriter.java643 public ObjectWriter withoutAttribute(Object key) { in withoutAttribute() method in ObjectWriter
644 return _new(this, _config.withoutAttribute(key)); in withoutAttribute()
DObjectReader.java919 public ObjectReader withoutAttribute(Object key) { in withoutAttribute() method in ObjectReader
920 return _with(_config.withoutAttribute(key)); in withoutAttribute()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/
DObjectWriterTest.java190 w = w.withoutAttribute("a"); in testMiscSettings()
DObjectReaderTest.java242 assertSame(r, r.withoutAttribute("foo")); in testMiscSettings()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/cfg/
DMapperConfigBase.java421 public T withoutAttribute(Object key) { in withoutAttribute() method in MapperConfigBase