Uses of Enum Class
com.fasterxml.jackson.core.JsonParser.Feature
Packages that use JsonParser.Feature
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.Base classes used by concrete Parser and Generator implementations;
contain functionality that is not specific to JSON or input
abstraction (byte vs char).
JSON-specific parser and generator implementation classes that
Jackson defines and uses.
Utility classes used by Jackson Core functionality.
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 JsonParser.Feature in com.fasterxml.jackson.core
Methods in com.fasterxml.jackson.core that return JsonParser.FeatureModifier and TypeMethodDescriptionStreamReadFeature.mappedFeature()static JsonParser.FeatureReturns the enum constant of this class with the specified name.static JsonParser.Feature[]JsonParser.Feature.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.fasterxml.jackson.core with parameters of type JsonParser.FeatureModifier and TypeMethodDescriptionprotected voidTSFBuilder._legacyDisable(JsonParser.Feature f) protected voidTSFBuilder._legacyEnable(JsonParser.Feature f) final JsonFactoryJsonFactory.configure(JsonParser.Feature f, boolean state) Method for enabling or disabling specified parser feature (checkJsonParser.Featurefor list of features)JsonParser.configure(JsonParser.Feature f, boolean state) Method for enabling or disabling specified feature (checkJsonParser.Featurefor list of features)JsonFactory.disable(JsonParser.Feature f) Method for disabling specified parser features (checkJsonParser.Featurefor list of features)JsonParser.disable(JsonParser.Feature f) Method for disabling specified feature (checkJsonParser.Featurefor list of features)JsonFactory.enable(JsonParser.Feature f) Method for enabling specified parser feature (checkJsonParser.Featurefor list of features)JsonParser.enable(JsonParser.Feature f) Method for enabling specified parser feature (checkJsonParser.Featurefor list of features)final booleanJsonFactory.isEnabled(JsonParser.Feature f) Method for checking if the specified parser feature is enabled.booleanJsonParser.isEnabled(JsonParser.Feature f) Method for checking whether specifiedJsonParser.Featureis enabled.abstract booleanTokenStreamFactory.isEnabled(JsonParser.Feature f) -
Uses of JsonParser.Feature in com.fasterxml.jackson.core.base
Methods in com.fasterxml.jackson.core.base with parameters of type JsonParser.FeatureModifier and TypeMethodDescriptionParserBase.disable(JsonParser.Feature f) ParserBase.enable(JsonParser.Feature f) -
Uses of JsonParser.Feature in com.fasterxml.jackson.core.json
Methods in com.fasterxml.jackson.core.json that return JsonParser.Feature -
Uses of JsonParser.Feature in com.fasterxml.jackson.core.util
Methods in com.fasterxml.jackson.core.util with parameters of type JsonParser.FeatureModifier and TypeMethodDescriptionJsonParserDelegate.disable(JsonParser.Feature f) JsonParserDelegate.enable(JsonParser.Feature f) booleanJsonParserDelegate.isEnabled(JsonParser.Feature f) -
Uses of JsonParser.Feature in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind with parameters of type JsonParser.FeatureModifier and TypeMethodDescriptionObjectMapper.configure(JsonParser.Feature f, boolean state) Method for changing state of specifiedJsonParser.Features for parser instances this object mapper creates.ObjectMapper.disable(JsonParser.Feature... features) Method for disabling specifiedJsonParser.Features for parser instances this object mapper creates.ObjectMapper.enable(JsonParser.Feature... features) Method for enabling specifiedJsonParser.Features for parser instances this object mapper creates.final booleanDeserializationConfig.isEnabled(JsonParser.Feature f, JsonFactory factory) booleanModule.SetupContext.isEnabled(JsonParser.Feature f) booleanObjectMapper.isEnabled(JsonParser.Feature f) booleanObjectReader.isEnabled(JsonParser.Feature f) booleanObjectWriter.isEnabled(JsonParser.Feature f) Deprecated.DeserializationConfig.with(JsonParser.Feature feature) Fluent factory method that will construct and return a new configuration object instance with specified features enabled.ObjectReader.with(JsonParser.Feature feature) Method for constructing a new reader instance that is configured with specified feature enabled.DeserializationConfig.withFeatures(JsonParser.Feature... features) Fluent factory method that will construct and return a new configuration object instance with specified features enabled.ObjectReader.withFeatures(JsonParser.Feature... features) Method for constructing a new reader instance that is configured with specified features enabled.DeserializationConfig.without(JsonParser.Feature feature) Fluent factory method that will construct and return a new configuration object instance with specified feature disabled.ObjectReader.without(JsonParser.Feature feature) Method for constructing a new reader instance that is configured with specified feature disabled.DeserializationConfig.withoutFeatures(JsonParser.Feature... features) Fluent factory method that will construct and return a new configuration object instance with specified features disabled.ObjectReader.withoutFeatures(JsonParser.Feature... features) Method for constructing a new reader instance that is configured with specified features disabled. -
Uses of JsonParser.Feature in com.fasterxml.jackson.databind.cfg
Methods in com.fasterxml.jackson.databind.cfg with parameters of type JsonParser.FeatureModifier and TypeMethodDescriptionMapperBuilder.configure(JsonParser.Feature feature, boolean state) MapperBuilder.disable(JsonParser.Feature... features) MapperBuilder.enable(JsonParser.Feature... features) booleanMapperBuilder.isEnabled(JsonParser.Feature f) -
Uses of JsonParser.Feature in com.fasterxml.jackson.jakarta.rs.base
Methods in com.fasterxml.jackson.jakarta.rs.base with parameters of type JsonParser.FeatureModifier and TypeMethodDescriptionProviderBase.configure(JsonParser.Feature f, boolean state) ProviderBase.disable(JsonParser.Feature f) ProviderBase.enable(JsonParser.Feature f) -
Uses of JsonParser.Feature in com.fasterxml.jackson.jakarta.rs.cfg
Methods in com.fasterxml.jackson.jakarta.rs.cfg with parameters of type JsonParser.FeatureModifier and TypeMethodDescriptionfinal voidMapperConfiguratorBase.configure(JsonParser.Feature f, boolean state)