Uses of Interface
com.fasterxml.jackson.databind.cfg.DatatypeFeature
-
Packages that use DatatypeFeature 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 DatatypeFeature in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind with parameters of type DatatypeFeature Modifier and Type Method Description ObjectMapperObjectMapper. 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.booleanDeserializationConfig. isEnabled(DatatypeFeature feature)Accessor for checking whether giveDatatypeFeatureis enabled or not.booleanDeserializationContext. isEnabled(DatatypeFeature feature)booleanObjectReader. isEnabled(DatatypeFeature f)booleanObjectWriter. isEnabled(DatatypeFeature f)booleanSerializationConfig. isEnabled(DatatypeFeature feature)Accessor for checking whether giveDatatypeFeatureis enabled or not.booleanSerializerProvider. isEnabled(DatatypeFeature feature)ObjectReaderObjectReader. with(DatatypeFeature feature)Method for constructing a new reader instance that is configured with specified feature enabled.ObjectWriterObjectWriter. with(DatatypeFeature feature)Method for constructing a new instance that is configured with specified feature enabled.ObjectReaderObjectReader. withFeatures(DatatypeFeature... features)Method for constructing a new reader instance that is configured with specified features enabled.ObjectWriterObjectWriter. withFeatures(DatatypeFeature... features)Method for constructing a new instance that is configured with specified features enabled.ObjectReaderObjectReader. without(DatatypeFeature feature)Method for constructing a new reader instance that is configured with specified feature disabled.ObjectWriterObjectWriter. without(DatatypeFeature feature)Method for constructing a new instance that is configured with specified feature disabled.ObjectReaderObjectReader. withoutFeatures(DatatypeFeature... features)Method for constructing a new reader instance that is configured with specified features disabled.ObjectWriterObjectWriter. 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 DatatypeFeature Modifier and Type Class Description classEnumFeatureNew Datatype-specific configuration options related to handling ofEnumtypes.classJsonNodeFeatureNew Datatype-specific configuration options related to handling ofJsonNodetypes.Methods in com.fasterxml.jackson.databind.cfg with parameters of type DatatypeFeature Modifier and Type Method Description BMapperBuilder. configure(DatatypeFeature feature, boolean state)BMapperBuilder. disable(DatatypeFeature... features)BMapperBuilder. enable(DatatypeFeature... features)java.lang.BooleanDatatypeFeatures. 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.DatatypeFeaturesDatatypeFeatures. with(DatatypeFeature f)Mutant factory method that returns an instance with given Feature explicitly enabled.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.TMapperConfigBase. with(DatatypeFeature feature, boolean state)Fluent factory method that will construct and return a new configuration object instance with specified features disabled.DatatypeFeaturesDatatypeFeatures. withFeatures(DatatypeFeature... features)"Bulk" variant ofDatatypeFeatures.with(DatatypeFeature)which allows explicit enabling of multiple featuresTMapperConfigBase. 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.DatatypeFeaturesDatatypeFeatures. without(DatatypeFeature f)Mutant factory method that returns an instance with given Feature explicitly disabled.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.DatatypeFeaturesDatatypeFeatures. withoutFeatures(DatatypeFeature... features)"Bulk" variant ofDatatypeFeatures.without(DatatypeFeature)which allows explicit disabling of multiple featuresTMapperConfigBase. 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.
-