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 DatatypeFeaturesDatabindContext. getDatatypeFeatures()DatatypeFeaturesDeserializationContext. getDatatypeFeatures()DatatypeFeaturesSerializerProvider. getDatatypeFeatures()Methods in com.fasterxml.jackson.databind with parameters of type DatatypeFeatures Modifier and Type Method Description protected DeserializationConfigDeserializationConfig. _with(DatatypeFeatures dtFeatures)protected SerializationConfigSerializationConfig. _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 DatatypeFeaturesMapperConfigBase. _datatypeFeaturesSet ofDatatypeFeatures enabled.Methods in com.fasterxml.jackson.databind.cfg that return DatatypeFeatures Modifier and Type Method Description protected DatatypeFeaturesMapperConfigBase. _datatypeFeatures()static DatatypeFeaturesDatatypeFeatures. defaultFeatures()abstract DatatypeFeaturesMapperConfig. getDatatypeFeatures()DatatypeFeaturesMapperConfigBase. getDatatypeFeatures()DatatypeFeaturesDatatypeFeatures. with(DatatypeFeature f)Mutant factory method that returns an instance with given Feature explicitly enabled.DatatypeFeaturesDatatypeFeatures. withFeatures(DatatypeFeature... features)"Bulk" variant ofwith(DatatypeFeature)which allows explicit enabling of multiple featuresDatatypeFeaturesDatatypeFeatures. without(DatatypeFeature f)Mutant factory method that returns an instance with given Feature explicitly disabled.DatatypeFeaturesDatatypeFeatures. 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 TMapperConfigBase. _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)
-