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 booleanDatabindContext.isEnabled(DatatypeFeature feature) Method for checking whether specified datatype feature is enabled or not.final booleanDeserializationConfig.isEnabled(DatatypeFeature feature) Accessor for checking whether giveDatatypeFeatureis enabled or not.final booleanDeserializationContext.isEnabled(DatatypeFeature feature) booleanObjectReader.isEnabled(DatatypeFeature f) booleanObjectWriter.isEnabled(DatatypeFeature f) final booleanSerializationConfig.isEnabled(DatatypeFeature feature) Accessor for checking whether giveDatatypeFeatureis enabled or not.final booleanSerializerProvider.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 TypeClassDescriptionenumNew Datatype-specific configuration options related to handling ofEnumtypes.enumNew Datatype-specific configuration options related to handling ofJsonNodetypes.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, ornullif not explicitly set (default value)booleanDatatypeFeatures.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 booleanMapperConfig.isEnabled(DatatypeFeature feature) Accessor for checking whether giveDatatypeFeatureis enabled or not.booleanDatatypeFeatures.isExplicitlyDisabled(DatatypeFeature f) Convenience method equivalent to:booleanDatatypeFeatures.isExplicitlyEnabled(DatatypeFeature f) Convenience method equivalent to:booleanDatatypeFeatures.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 TMapperConfigBase.with(DatatypeFeature feature) Fluent factory method that will return a configuration object instance with specified feature enabled: this may bethisinstance (if no changes effected), or a newly constructed instance.final TMapperConfigBase.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 TMapperConfigBase.withFeatures(DatatypeFeature... features) Fluent factory method that will return a configuration object instance with specified features enabled: this may bethisinstance (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 TMapperConfigBase.without(DatatypeFeature feature) Fluent factory method that will return a configuration object instance with specified feature disabled: this may bethisinstance (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 TMapperConfigBase.withoutFeatures(DatatypeFeature... features) Fluent factory method that will return a configuration object instance with specified features disabled: this may bethisinstance (if no changes effected), or a newly constructed instance.