Class ContextAttributes.Impl
- java.lang.Object
-
- com.fasterxml.jackson.databind.cfg.ContextAttributes
-
- com.fasterxml.jackson.databind.cfg.ContextAttributes.Impl
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- ContextAttributes
public static class ContextAttributes.Impl extends ContextAttributes implements Serializable
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.cfg.ContextAttributes
ContextAttributes.Impl
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectgetAttribute(Object key)Accessor for value of specified attributestatic ContextAttributesgetEmpty()ContextAttributeswithoutSharedAttribute(Object key)ContextAttributeswithPerCallAttribute(Object key, Object value)Mutator used during call (via context) to set value of "non-shared" part of attribute set.ContextAttributeswithSharedAttribute(Object key, Object value)ContextAttributeswithSharedAttributes(Map<?,?> shared)
-
-
-
Method Detail
-
getEmpty
public static ContextAttributes getEmpty()
-
withSharedAttribute
public ContextAttributes withSharedAttribute(Object key, Object value)
- Specified by:
withSharedAttributein classContextAttributes
-
withSharedAttributes
public ContextAttributes withSharedAttributes(Map<?,?> shared)
- Specified by:
withSharedAttributesin classContextAttributes
-
withoutSharedAttribute
public ContextAttributes withoutSharedAttribute(Object key)
- Specified by:
withoutSharedAttributein classContextAttributes
-
getAttribute
public Object getAttribute(Object key)
Description copied from class:ContextAttributesAccessor for value of specified attribute- Specified by:
getAttributein classContextAttributes
-
withPerCallAttribute
public ContextAttributes withPerCallAttribute(Object key, Object value)
Description copied from class:ContextAttributesMutator used during call (via context) to set value of "non-shared" part of attribute set.- Specified by:
withPerCallAttributein classContextAttributes
-
-