Uses of Interface
com.fasterxml.jackson.databind.cfg.DatatypeFeature
Packages that use DatatypeFeature
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 DatatypeFeature in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind with parameters of type DatatypeFeatureModifier and TypeMethodDescriptionObjectMapper.configure
(DatatypeFeature f, boolean state) Method for changing state of an on/off datatype-specific feature for this object mapper.abstract boolean
DatabindContext.isEnabled
(DatatypeFeature feature) Method for checking whether specified datatype feature is enabled or not.final boolean
DeserializationConfig.isEnabled
(DatatypeFeature feature) Accessor for checking whether giveDatatypeFeature
is enabled or not.final boolean
DeserializationContext.isEnabled
(DatatypeFeature feature) boolean
ObjectReader.isEnabled
(DatatypeFeature f) boolean
ObjectWriter.isEnabled
(DatatypeFeature f) final boolean
SerializationConfig.isEnabled
(DatatypeFeature feature) Accessor for checking whether giveDatatypeFeature
is enabled or not.final boolean
SerializerProvider.isEnabled
(DatatypeFeature feature) ObjectReader.with
(DatatypeFeature feature) Method for constructing a new reader instance that is configured with specified feature enabled.ObjectWriter.with
(DatatypeFeature feature) Method for constructing a new instance that is configured with specified feature enabled.ObjectReader.withFeatures
(DatatypeFeature... features) Method for constructing a new reader instance that is configured with specified features enabled.ObjectWriter.withFeatures
(DatatypeFeature... features) Method for constructing a new instance that is configured with specified features enabled.ObjectReader.without
(DatatypeFeature feature) Method for constructing a new reader instance that is configured with specified feature disabled.ObjectWriter.without
(DatatypeFeature feature) Method for constructing a new instance that is configured with specified feature disabled.ObjectReader.withoutFeatures
(DatatypeFeature... features) Method for constructing a new reader instance that is configured with specified features disabled.ObjectWriter.withoutFeatures
(DatatypeFeature... features) Method for constructing a new instance that is configured with specified features disabled. -
Uses of DatatypeFeature in com.fasterxml.jackson.databind.cfg
Classes in com.fasterxml.jackson.databind.cfg that implement DatatypeFeatureModifier and TypeClassDescriptionenum
New Datatype-specific configuration options related to handling ofEnum
types.enum
New Datatype-specific configuration options related to handling ofJsonNode
types.Methods in com.fasterxml.jackson.databind.cfg with parameters of type DatatypeFeatureModifier and TypeMethodDescriptionMapperBuilder.configure
(DatatypeFeature feature, boolean state) MapperBuilder.disable
(DatatypeFeature... features) MapperBuilder.enable
(DatatypeFeature... features) DatatypeFeatures.getExplicitState
(DatatypeFeature f) Accessor for getting explicit state of given feature in this set iff explicitly set, ornull
if not explicitly set (default value)boolean
DatatypeFeatures.isEnabled
(DatatypeFeature f) Accessor for getting value of specified feature in this set, regardless of whether explicit defined or not (if not explicitly enabled/disabled returns default value,JacksonFeature.enabledByDefault()
.abstract boolean
MapperConfig.isEnabled
(DatatypeFeature feature) Accessor for checking whether giveDatatypeFeature
is enabled or not.boolean
DatatypeFeatures.isExplicitlyDisabled
(DatatypeFeature f) Convenience method equivalent to:boolean
DatatypeFeatures.isExplicitlyEnabled
(DatatypeFeature f) Convenience method equivalent to:boolean
DatatypeFeatures.isExplicitlySet
(DatatypeFeature f) Accessor for checking whether given feature has been explicitly enabled or disabled in this set or not: if not it has the default value.DatatypeFeatures.with
(DatatypeFeature f) Mutant factory method that returns an instance with given Feature explicitly enabled.final T
MapperConfigBase.with
(DatatypeFeature feature) Fluent factory method that will return a configuration object instance with specified feature enabled: this may bethis
instance (if no changes effected), or a newly constructed instance.final T
MapperConfigBase.with
(DatatypeFeature feature, boolean state) Fluent factory method that will construct and return a new configuration object instance with specified features disabled.DatatypeFeatures.withFeatures
(DatatypeFeature... features) "Bulk" variant ofDatatypeFeatures.with(DatatypeFeature)
which allows explicit enabling of multiple featuresfinal T
MapperConfigBase.withFeatures
(DatatypeFeature... features) Fluent factory method that will return a configuration object instance with specified features enabled: this may bethis
instance (if no changes effected), or a newly constructed instance.DatatypeFeatures.without
(DatatypeFeature f) Mutant factory method that returns an instance with given Feature explicitly disabled.final T
MapperConfigBase.without
(DatatypeFeature feature) Fluent factory method that will return a configuration object instance with specified feature disabled: this may bethis
instance (if no changes effected), or a newly constructed instance.DatatypeFeatures.withoutFeatures
(DatatypeFeature... features) "Bulk" variant ofDatatypeFeatures.without(DatatypeFeature)
which allows explicit disabling of multiple featuresfinal T
MapperConfigBase.withoutFeatures
(DatatypeFeature... features) Fluent factory method that will return a configuration object instance with specified features disabled: this may bethis
instance (if no changes effected), or a newly constructed instance.