Uses of Enum
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.
-
Uses of JsonParser.Feature in com.fasterxml.jackson.core
Methods in com.fasterxml.jackson.core that return JsonParser.FeatureModifier and TypeMethodDescriptionStreamReadFeature.mappedFeature()
static JsonParser.Feature
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.FeatureModifier and TypeMethodDescriptionprotected void
TSFBuilder._legacyDisable
(JsonParser.Feature f) protected void
TSFBuilder._legacyEnable
(JsonParser.Feature f) final JsonFactory
JsonFactory.configure
(JsonParser.Feature f, boolean state) Method for enabling or disabling specified parser feature (checkJsonParser.Feature
for list of features)JsonParser.configure
(JsonParser.Feature f, boolean state) Method for enabling or disabling specified feature (checkJsonParser.Feature
for list of features)JsonFactory.disable
(JsonParser.Feature f) Method for disabling specified parser features (checkJsonParser.Feature
for list of features)JsonParser.disable
(JsonParser.Feature f) Method for disabling specified feature (checkJsonParser.Feature
for list of features)JsonFactory.enable
(JsonParser.Feature f) Method for enabling specified parser feature (checkJsonParser.Feature
for list of features)JsonParser.enable
(JsonParser.Feature f) Method for enabling specified parser feature (checkJsonParser.Feature
for list of features)final boolean
JsonFactory.isEnabled
(JsonParser.Feature f) Method for checking if the specified parser feature is enabled.boolean
JsonParser.isEnabled
(JsonParser.Feature f) Method for checking whether specifiedJsonParser.Feature
is enabled.abstract boolean
TokenStreamFactory.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) boolean
JsonParserDelegate.isEnabled
(JsonParser.Feature f)