Uses of Interface
com.fasterxml.jackson.core.FormatFeature
Packages that use FormatFeature
Package
Description
Main public API classes of the core streaming JSON
processor: most importantly
JsonFactory
used for constructing
JSON parser (JsonParser)
and generator
(JsonGenerator)
instances.JSON-specific parser and generator implementation classes that
Jackson defines and uses.
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.-
Uses of FormatFeature in com.fasterxml.jackson.core
Methods in com.fasterxml.jackson.core that return types with arguments of type FormatFeatureModifier and TypeMethodDescriptionClass<? extends FormatFeature>JsonFactory.getFormatReadFeatureType()abstract Class<? extends FormatFeature>TokenStreamFactory.getFormatReadFeatureType()Method for accessing kind ofFormatFeaturethat a parserJsonParserproduced by this factory would accept, if any;nullreturned if none.Class<? extends FormatFeature>JsonFactory.getFormatWriteFeatureType()abstract Class<? extends FormatFeature>TokenStreamFactory.getFormatWriteFeatureType()Method for accessing kind ofFormatFeaturethat a parserJsonGeneratorproduced by this factory would accept, if any;nullreturned if none. -
Uses of FormatFeature in com.fasterxml.jackson.core.json
Classes in com.fasterxml.jackson.core.json that implement FormatFeatureModifier and TypeClassDescriptionenumToken reader (parser) features specific to JSON backend.enumToken writer features specific to JSON backend. -
Uses of FormatFeature in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind with parameters of type FormatFeatureModifier and TypeMethodDescriptionDeserializationConfig.with(FormatFeature feature) Fluent factory method that will construct and return a new configuration object instance with specified features enabled.ObjectReader.with(FormatFeature feature) Method for constructing a new reader instance that is configured with specified feature enabled.ObjectWriter.with(FormatFeature feature) SerializationConfig.with(FormatFeature feature) Fluent factory method that will construct and return a new configuration object instance with specified feature enabled.DeserializationConfig.withFeatures(FormatFeature... features) Fluent factory method that will construct and return a new configuration object instance with specified features enabled.ObjectReader.withFeatures(FormatFeature... features) Method for constructing a new reader instance that is configured with specified features enabled.ObjectWriter.withFeatures(FormatFeature... features) SerializationConfig.withFeatures(FormatFeature... features) Fluent factory method that will construct and return a new configuration object instance with specified features enabled.DeserializationConfig.without(FormatFeature feature) Fluent factory method that will construct and return a new configuration object instance with specified feature disabled.ObjectReader.without(FormatFeature feature) Method for constructing a new reader instance that is configured with specified feature disabled.ObjectWriter.without(FormatFeature feature) SerializationConfig.without(FormatFeature feature) Fluent factory method that will construct and return a new configuration object instance with specified feature disabled.DeserializationConfig.withoutFeatures(FormatFeature... features) Fluent factory method that will construct and return a new configuration object instance with specified features disabled.ObjectReader.withoutFeatures(FormatFeature... features) Method for constructing a new reader instance that is configured with specified features disabled.ObjectWriter.withoutFeatures(FormatFeature... features) SerializationConfig.withoutFeatures(FormatFeature... features) Fluent factory method that will construct and return a new configuration object instance with specified features disabled.