Uses of Interface
com.fasterxml.jackson.databind.cfg.ConfigFeature
-
Packages that use ConfigFeature 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
). -
-
Uses of ConfigFeature in com.fasterxml.jackson.databind
Classes in com.fasterxml.jackson.databind that implement ConfigFeature Modifier and Type Class Description class
DeserializationFeature
Enumeration that defines simple on/off features that affect the way Java objects are deserialized from JSONclass
MapperFeature
Enumeration that defines simple on/off features to set forObjectMapper
, and accessible (but not changeable) viaObjectReader
andObjectWriter
(as well as through various convenience methods through context objects).class
SerializationFeature
Enumeration that defines simple on/off features that affect the way Java objects are serialized. -
Uses of ConfigFeature in com.fasterxml.jackson.databind.cfg
Classes in com.fasterxml.jackson.databind.cfg with type parameters of type ConfigFeature Modifier and Type Class Description class
MapperConfigBase<CFG extends ConfigFeature,T extends MapperConfigBase<CFG,T>>
Methods in com.fasterxml.jackson.databind.cfg with type parameters of type ConfigFeature Modifier and Type Method Description static <F extends java.lang.Enum<F> & ConfigFeature>
intMapperConfig. collectFeatureDefaults(java.lang.Class<F> enumClass)
Method that calculates bit set (flags) of all features that are enabled by default.
-