Package | Description |
---|---|
com.fasterxml.jackson.databind |
Basic data binding (mapping) functionality that
allows for reading JSON content into Java Objects (POJOs)
and JSON Trees (
JsonNode ), as well as
writing Java Objects and trees as JSON. |
com.fasterxml.jackson.databind.cfg |
Package that contains most of configuration-related classes;
exception being couple of most-commonly used configuration
things (like Feature enumerations) that are at the
main level (
com.fasterxml.jackson.databind ). |
Modifier and Type | Method and Description |
---|---|
MutableConfigOverride |
ObjectMapper.configOverride(Class<?> type)
Accessor for getting a mutable configuration override object for
given type, needed to add or change per-type overrides applied
to properties of given type.
|
MutableConfigOverride |
Module.SetupContext.configOverride(Class<?> type)
"Mutant accessor" for getting a mutable configuration override object for
given type, needed to add or change per-type overrides applied
to properties of given type.
|
Modifier and Type | Field and Description |
---|---|
protected Map<Class<?>,MutableConfigOverride> |
ConfigOverrides._overrides |
Modifier and Type | Method and Description |
---|---|
protected MutableConfigOverride |
MutableConfigOverride.copy() |
MutableConfigOverride |
ConfigOverrides.findOrCreateOverride(Class<?> type) |
MutableConfigOverride |
MutableConfigOverride.setFormat(JsonFormat.Value v) |
MutableConfigOverride |
MutableConfigOverride.setIgnorals(JsonIgnoreProperties.Value v) |
MutableConfigOverride |
MutableConfigOverride.setInclude(JsonInclude.Value v) |
MutableConfigOverride |
MutableConfigOverride.setIsIgnoredType(Boolean v) |
Modifier and Type | Method and Description |
---|---|
protected Map<Class<?>,MutableConfigOverride> |
ConfigOverrides._newMap() |
Constructor and Description |
---|
MutableConfigOverride(MutableConfigOverride src) |
Constructor and Description |
---|
ConfigOverrides(Map<Class<?>,MutableConfigOverride> overrides) |
Copyright © 2008–2016 FasterXML. All rights reserved.