Uses of Class
com.fasterxml.jackson.databind.cfg.DatatypeFeatures
Packages that use DatatypeFeatures
Package
Description
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.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 DatatypeFeaturesModifier and TypeMethodDescriptionabstract DatatypeFeaturesDatabindContext.getDatatypeFeatures()final DatatypeFeaturesDeserializationContext.getDatatypeFeatures()final DatatypeFeaturesSerializerProvider.getDatatypeFeatures()Methods in com.fasterxml.jackson.databind with parameters of type DatatypeFeaturesModifier and TypeMethodDescriptionprotected final DeserializationConfigDeserializationConfig._with(DatatypeFeatures dtFeatures) protected final SerializationConfigSerializationConfig._with(DatatypeFeatures dtFeatures) Constructors in com.fasterxml.jackson.databind with parameters of type DatatypeFeaturesModifierConstructorDescriptionDeserializationConfig(BaseSettings base, SubtypeResolver str, SimpleMixInResolver mixins, RootNameLookup rootNames, ConfigOverrides configOverrides, CoercionConfigs coercionConfigs, DatatypeFeatures datatypeFeatures) Constructor used by ObjectMapper to create default configuration object instance.protectedDeserializationConfig(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.protectedSerializationConfig(SerializationConfig src, DatatypeFeatures dtFeatures) -
Uses of DatatypeFeatures in com.fasterxml.jackson.databind.cfg
Fields in com.fasterxml.jackson.databind.cfg declared as DatatypeFeaturesModifier and TypeFieldDescriptionprotected final DatatypeFeaturesMapperConfigBase._datatypeFeaturesSet ofDatatypeFeatures enabled.Methods in com.fasterxml.jackson.databind.cfg that return DatatypeFeaturesModifier and TypeMethodDescriptionprotected DatatypeFeaturesMapperConfigBase._datatypeFeatures()static DatatypeFeaturesDatatypeFeatures.defaultFeatures()abstract DatatypeFeaturesMapperConfig.getDatatypeFeatures()final DatatypeFeaturesMapperConfigBase.getDatatypeFeatures()DatatypeFeatures.with(DatatypeFeature f) Mutant factory method that returns an instance with given Feature explicitly enabled.DatatypeFeatures.withFeatures(DatatypeFeature... features) "Bulk" variant ofDatatypeFeatures.with(DatatypeFeature)which allows explicit enabling of multiple featuresDatatypeFeatures.without(DatatypeFeature f) Mutant factory method that returns an instance with given Feature explicitly disabled.DatatypeFeatures.withoutFeatures(DatatypeFeature... features) "Bulk" variant ofDatatypeFeatures.without(DatatypeFeature)which allows explicit disabling of multiple featuresMethods in com.fasterxml.jackson.databind.cfg with parameters of type DatatypeFeaturesModifier and TypeMethodDescriptionprotected abstract TMapperConfigBase._with(DatatypeFeatures dtFeatures) Constructors in com.fasterxml.jackson.databind.cfg with parameters of type DatatypeFeaturesModifierConstructorDescriptionprotectedMapperConfigBase(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)protectedMapperConfigBase(MapperConfigBase<CFG, T> src, DatatypeFeatures datatypeFeatures)