Home
last modified time | relevance | path

Searched refs:ContextAttributes (Results 1 – 14 of 14) sorted by relevance

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/cfg/
DContextAttributes.java21 public abstract class ContextAttributes class
23 public static ContextAttributes getEmpty() { in getEmpty()
33 public abstract ContextAttributes withSharedAttribute(Object key, Object value); in withSharedAttribute()
35 public abstract ContextAttributes withSharedAttributes(Map<?,?> attributes); in withSharedAttributes()
37 public abstract ContextAttributes withoutSharedAttribute(Object key); in withoutSharedAttribute()
54 public abstract ContextAttributes withPerCallAttribute(Object key, Object value); in withPerCallAttribute()
62 public static class Impl extends ContextAttributes
102 public static ContextAttributes getEmpty() { in getEmpty()
113 public ContextAttributes withSharedAttribute(Object key, Object value) in withSharedAttribute()
127 public ContextAttributes withSharedAttributes(Map<?,?> shared) { in withSharedAttributes()
[all …]
DMapperConfigBase.java89 protected final ContextAttributes _attributes;
132 _attributes = ContextAttributes.getEmpty(); in MapperConfigBase()
250 protected MapperConfigBase(MapperConfigBase<CFG,T> src, ContextAttributes attr) in MapperConfigBase()
393 public abstract T with(ContextAttributes attrs); in with()
591 public final ContextAttributes getAttributes() { in getAttributes()
DMapperConfig.java629 public abstract ContextAttributes getAttributes(); in getAttributes()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/cfg/
DSerConfigTest.java45 …assertNotSame(config, config.with(new ContextAttributes.Impl(Collections.singletonMap("a", "b")))); in testSerConfig()
DDeserializationConfigTest.java122 …assertNotSame(config, config.with(new ContextAttributes.Impl(Collections.singletonMap("a", "b")))); in testMisc()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/objectid/
DTestObjectIdDeserialization.java19 import com.fasterxml.jackson.databind.cfg.ContextAttributes;
434ContextAttributes attrs = MAPPER.getDeserializationConfig().getAttributes().withSharedAttribute(PO… in testCustomPoolResolver()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DObjectWriter.java16 import com.fasterxml.jackson.databind.cfg.ContextAttributes;
619 public ObjectWriter with(ContextAttributes attrs) { in with()
970 public ContextAttributes getAttributes() { in getAttributes()
DSerializationConfig.java244 protected SerializationConfig(SerializationConfig src, ContextAttributes attrs) in SerializationConfig()
327 public SerializationConfig with(ContextAttributes attrs) { in with()
DDeserializationConfig.java267 protected DeserializationConfig(DeserializationConfig src, ContextAttributes attrs) in DeserializationConfig()
343 public DeserializationConfig with(ContextAttributes attrs) { in with()
DSerializerProvider.java13 import com.fasterxml.jackson.databind.cfg.ContextAttributes;
117 protected transient ContextAttributes _attributes;
DObjectReader.java15 import com.fasterxml.jackson.databind.cfg.ContextAttributes;
898 public ObjectReader with(ContextAttributes attrs) { in with()
987 public ContextAttributes getAttributes() { in getAttributes()
DDeserializationContext.java17 import com.fasterxml.jackson.databind.cfg.ContextAttributes;
144 protected transient ContextAttributes _attributes;
DObjectMapper.java3893 public ObjectWriter writer(ContextAttributes attrs) {
4119 public ObjectReader reader(ContextAttributes attrs) {
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/
DObjectReaderTest.java13 import com.fasterxml.jackson.databind.cfg.ContextAttributes;
239 ContextAttributes attrs = r.getAttributes(); in testMiscSettings()