Uses of Class
com.fasterxml.jackson.databind.cfg.DatatypeFeatures
-
Packages that use DatatypeFeatures 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 DatatypeFeatures in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind that return DatatypeFeatures Modifier and Type Method Description abstract DatatypeFeatures
DatabindContext. getDatatypeFeatures()
DatatypeFeatures
DeserializationContext. getDatatypeFeatures()
DatatypeFeatures
SerializerProvider. getDatatypeFeatures()
Methods in com.fasterxml.jackson.databind with parameters of type DatatypeFeatures Modifier and Type Method Description protected DeserializationConfig
DeserializationConfig. _with(DatatypeFeatures dtFeatures)
protected SerializationConfig
SerializationConfig. _with(DatatypeFeatures dtFeatures)
Constructors in com.fasterxml.jackson.databind with parameters of type DatatypeFeatures Constructor Description DeserializationConfig(BaseSettings base, SubtypeResolver str, SimpleMixInResolver mixins, RootNameLookup rootNames, ConfigOverrides configOverrides, CoercionConfigs coercionConfigs, DatatypeFeatures datatypeFeatures)
Constructor used by ObjectMapper to create default configuration object instance.DeserializationConfig(DeserializationConfig src, DatatypeFeatures datatypeFeatures)
SerializationConfig(BaseSettings base, SubtypeResolver str, SimpleMixInResolver mixins, RootNameLookup rootNames, ConfigOverrides configOverrides, DatatypeFeatures datatypeFeatures)
Constructor used by ObjectMapper to create default configuration object instance.SerializationConfig(SerializationConfig src, DatatypeFeatures dtFeatures)
-
Uses of DatatypeFeatures in com.fasterxml.jackson.databind.cfg
Fields in com.fasterxml.jackson.databind.cfg declared as DatatypeFeatures Modifier and Type Field Description protected DatatypeFeatures
MapperConfigBase. _datatypeFeatures
Set ofDatatypeFeature
s enabled.Methods in com.fasterxml.jackson.databind.cfg that return DatatypeFeatures Modifier and Type Method Description protected DatatypeFeatures
MapperConfigBase. _datatypeFeatures()
static DatatypeFeatures
DatatypeFeatures. defaultFeatures()
abstract DatatypeFeatures
MapperConfig. getDatatypeFeatures()
DatatypeFeatures
MapperConfigBase. getDatatypeFeatures()
DatatypeFeatures
DatatypeFeatures. with(DatatypeFeature f)
Mutant factory method that returns an instance with given Feature explicitly enabled.DatatypeFeatures
DatatypeFeatures. withFeatures(DatatypeFeature... features)
"Bulk" variant ofwith(DatatypeFeature)
which allows explicit enabling of multiple featuresDatatypeFeatures
DatatypeFeatures. without(DatatypeFeature f)
Mutant factory method that returns an instance with given Feature explicitly disabled.DatatypeFeatures
DatatypeFeatures. withoutFeatures(DatatypeFeature... features)
"Bulk" variant ofwithout(DatatypeFeature)
which allows explicit disabling of multiple featuresMethods in com.fasterxml.jackson.databind.cfg with parameters of type DatatypeFeatures Modifier and Type Method Description protected abstract T
MapperConfigBase. _with(DatatypeFeatures dtFeatures)
Constructors in com.fasterxml.jackson.databind.cfg with parameters of type DatatypeFeatures Constructor Description MapperConfigBase(BaseSettings base, SubtypeResolver str, SimpleMixInResolver mixins, RootNameLookup rootNames, ConfigOverrides configOverrides, DatatypeFeatures datatypeFeatures)
Constructor used when creating a new instance (compared to that of creating fluent copies)MapperConfigBase(MapperConfigBase<CFG,T> src, DatatypeFeatures datatypeFeatures)
-