Uses of Interface
tools.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 (
tools.jackson.databind).-
Uses of DatatypeFeature in tools.jackson.databind
Methods in tools.jackson.databind with parameters of type DatatypeFeatureModifier and TypeMethodDescriptionabstract booleanDatabindContext.isEnabled(DatatypeFeature feature) Method for checking whether specified datatype feature is enabled or not.final booleanDeserializationContext.isEnabled(DatatypeFeature feature) booleanJacksonModule.SetupContext.isEnabled(DatatypeFeature f) booleanObjectMapper.isEnabled(DatatypeFeature f) Method for checking whether given datatype-specific feature is enabled.booleanObjectReader.isEnabled(DatatypeFeature f) booleanObjectWriter.isEnabled(DatatypeFeature f) final booleanSerializationContext.isEnabled(DatatypeFeature feature) ObjectMapper.reader(DatatypeFeature feature) Factory method for constructingObjectReaderwith specified feature enabled (compared to settings that this mapper instance has).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.ObjectMapper.writer(DatatypeFeature f) Factory method for constructingObjectWriterwith specified features enabled (compared to settings that this mapper instance has). -
Uses of DatatypeFeature in tools.jackson.databind.cfg
Classes in tools.jackson.databind.cfg that implement DatatypeFeatureModifier and TypeClassDescriptionenumConfigurable on/off features to configure Date/Time handling.enumNew Datatype-specific configuration options related to handling ofEnumtypes.enumNew Datatype-specific configuration options related to handling ofJsonNodetypes.Methods in tools.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().booleanMapperBuilder.isEnabled(DatatypeFeature f) abstract booleanMapperConfig.isEnabled(DatatypeFeature feature) Accessor for checking whether giveDatatypeFeatureis enabled or not.final booleanMapperConfigBase.isEnabled(DatatypeFeature feature) booleanModuleContextBase.isEnabled(DatatypeFeature f) 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.