Uses of Class
com.fasterxml.jackson.core.JsonParser.Feature
-
Packages that use JsonParser.Feature Package Description com.fasterxml.jackson.core Main public API classes of the core streaming JSON processor: most importantlyJsonFactoryused for constructing JSON parser (JsonParser) and generator (JsonGenerator) instances.com.fasterxml.jackson.core.base Base classes used by concrete Parser and Generator implementations; contain functionality that is not specific to JSON or input abstraction (byte vs char).com.fasterxml.jackson.core.json JSON-specific parser and generator implementation classes that Jackson defines and uses.com.fasterxml.jackson.core.util Utility classes used by Jackson Core functionality.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).com.fasterxml.jackson.jakarta.rs.base com.fasterxml.jackson.jakarta.rs.cfg -
-
Uses of JsonParser.Feature in com.fasterxml.jackson.core
Methods in com.fasterxml.jackson.core that return JsonParser.Feature Modifier and Type Method Description JsonParser.FeatureStreamReadFeature. mappedFeature()static JsonParser.FeatureJsonParser.Feature. valueOf(String name)Returns the enum constant of this type with the specified name.static JsonParser.Feature[]JsonParser.Feature. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.fasterxml.jackson.core with parameters of type JsonParser.Feature Modifier and Type Method Description protected voidTSFBuilder. _legacyDisable(JsonParser.Feature f)protected voidTSFBuilder. _legacyEnable(JsonParser.Feature f)JsonFactoryJsonFactory. configure(JsonParser.Feature f, boolean state)Method for enabling or disabling specified parser feature (checkJsonParser.Featurefor list of features)JsonParserJsonParser. configure(JsonParser.Feature f, boolean state)Method for enabling or disabling specified feature (checkJsonParser.Featurefor list of features)JsonFactoryJsonFactory. disable(JsonParser.Feature f)Method for disabling specified parser features (checkJsonParser.Featurefor list of features)JsonParserJsonParser. disable(JsonParser.Feature f)Method for disabling specified feature (checkJsonParser.Featurefor list of features)JsonFactoryJsonFactory. enable(JsonParser.Feature f)Method for enabling specified parser feature (checkJsonParser.Featurefor list of features)JsonParserJsonParser. enable(JsonParser.Feature f)Method for enabling specified parser feature (checkJsonParser.Featurefor list of features)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.Feature Modifier and Type Method Description JsonParserParserBase. disable(JsonParser.Feature f)JsonParserParserBase. 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 Modifier and Type Method Description JsonParser.FeatureJsonReadFeature. mappedFeature() -
Uses of JsonParser.Feature in com.fasterxml.jackson.core.util
Methods in com.fasterxml.jackson.core.util with parameters of type JsonParser.Feature Modifier and Type Method Description JsonParserJsonParserDelegate. disable(JsonParser.Feature f)JsonParserJsonParserDelegate. 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.Feature Modifier and Type Method Description ObjectMapperObjectMapper. configure(JsonParser.Feature f, boolean state)Method for changing state of specifiedJsonParser.Features for parser instances this object mapper creates.ObjectMapperObjectMapper. disable(JsonParser.Feature... features)Method for disabling specifiedJsonParser.Features for parser instances this object mapper creates.ObjectMapperObjectMapper. enable(JsonParser.Feature... features)Method for enabling specifiedJsonParser.Features for parser instances this object mapper creates.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.DeserializationConfigDeserializationConfig. with(JsonParser.Feature feature)Fluent factory method that will construct and return a new configuration object instance with specified features enabled.ObjectReaderObjectReader. with(JsonParser.Feature feature)Method for constructing a new reader instance that is configured with specified feature enabled.DeserializationConfigDeserializationConfig. withFeatures(JsonParser.Feature... features)Fluent factory method that will construct and return a new configuration object instance with specified features enabled.ObjectReaderObjectReader. withFeatures(JsonParser.Feature... features)Method for constructing a new reader instance that is configured with specified features enabled.DeserializationConfigDeserializationConfig. without(JsonParser.Feature feature)Fluent factory method that will construct and return a new configuration object instance with specified feature disabled.ObjectReaderObjectReader. without(JsonParser.Feature feature)Method for constructing a new reader instance that is configured with specified feature disabled.DeserializationConfigDeserializationConfig. withoutFeatures(JsonParser.Feature... features)Fluent factory method that will construct and return a new configuration object instance with specified features disabled.ObjectReaderObjectReader. 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.Feature Modifier and Type Method Description BMapperBuilder. configure(JsonParser.Feature feature, boolean state)BMapperBuilder. disable(JsonParser.Feature... features)BMapperBuilder. 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.Feature Modifier and Type Method Description THISProviderBase. configure(JsonParser.Feature f, boolean state)THISProviderBase. disable(JsonParser.Feature f)THISProviderBase. 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.Feature Modifier and Type Method Description voidMapperConfiguratorBase. configure(JsonParser.Feature f, boolean state)
-