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. -
-
Uses of JsonParser.Feature in com.fasterxml.jackson.core
Fields in com.fasterxml.jackson.core declared as JsonParser.Feature Modifier and Type Field Description private JsonParser.FeatureStreamReadFeature. _mappedFeatureFor backwards compatibility we may need to map to one of existingJsonParser.Features; if so, this is the feature to enable/disable.Methods in com.fasterxml.jackson.core that return JsonParser.Feature Modifier and Type Method Description JsonParser.FeatureStreamReadFeature. mappedFeature()static JsonParser.FeatureJsonParser.Feature. valueOf(java.lang.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)Checked whether specified parser feature is enabled.booleanJsonParser. isEnabled(JsonParser.Feature f)Method for checking whether specifiedJsonParser.Featureis enabled.abstract booleanTokenStreamFactory. isEnabled(JsonParser.Feature f)Constructors in com.fasterxml.jackson.core with parameters of type JsonParser.Feature Constructor Description StreamReadFeature(JsonParser.Feature mapTo) -
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
Fields in com.fasterxml.jackson.core.json declared as JsonParser.Feature Modifier and Type Field Description private JsonParser.FeatureJsonReadFeature. _mappedFeatureFor backwards compatibility we may need to map to one of existingJsonParser.Features; if so, this is the feature to enable/disable.Methods in com.fasterxml.jackson.core.json that return JsonParser.Feature Modifier and Type Method Description JsonParser.FeatureJsonReadFeature. mappedFeature()Constructors in com.fasterxml.jackson.core.json with parameters of type JsonParser.Feature Constructor Description JsonReadFeature(boolean defaultState, JsonParser.Feature mapTo) -
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)
-