Uses of Enum
org.codehaus.jackson.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
(JsonParser
)
instances.Jackson-based JAX-RS provider that can automatically
serialize and deserialize resources for
JSON content type (MediaType).
Contains basic mapper (conversion) functionality that
allows for converting between regular streaming json content and
Java objects (beans or Tree Model: support for both is via
ObjectMapper
class, as well
as convenience methods included in
JsonParser
Utility classes used by Jackson Core functionality.
-
Uses of JsonParser.Feature in org.codehaus.jackson
Methods in org.codehaus.jackson that return JsonParser.FeatureModifier and TypeMethodDescriptionstatic 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 org.codehaus.jackson with parameters of type JsonParser.FeatureModifier and TypeMethodDescriptionfinal 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)void
JsonParser.disableFeature
(JsonParser.Feature f) Deprecated.final void
JsonFactory.disableParserFeature
(JsonParser.Feature f) Deprecated.UseJsonFactory.disable(JsonParser.Feature)
insteadJsonFactory.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)void
JsonParser.enableFeature
(JsonParser.Feature f) Deprecated.UseJsonParser.enable(Feature)
insteadfinal void
JsonFactory.enableParserFeature
(JsonParser.Feature f) Deprecated.UseJsonFactory.enable(JsonParser.Feature)
insteadfinal boolean
JsonFactory.isEnabled
(JsonParser.Feature f) Checked whether specified parser feature is enabled.boolean
JsonParser.isEnabled
(JsonParser.Feature f) Method for checking whether specifiedJsonParser.Feature
is enabled.final boolean
JsonParser.isFeatureEnabled
(JsonParser.Feature f) Deprecated.UseJsonParser.isEnabled(Feature)
insteadfinal boolean
JsonFactory.isParserFeatureEnabled
(JsonParser.Feature f) Deprecated.UseJsonFactory.isEnabled(JsonParser.Feature)
insteadvoid
JsonParser.setFeature
(JsonParser.Feature f, boolean state) Deprecated.final void
JsonFactory.setParserFeature
(JsonParser.Feature f, boolean state) Deprecated. -
Uses of JsonParser.Feature in org.codehaus.jackson.jaxrs
Methods in org.codehaus.jackson.jaxrs with parameters of type JsonParser.FeatureModifier and TypeMethodDescriptionJacksonJsonProvider.configure
(JsonParser.Feature f, boolean state) void
MapperConfigurator.configure
(JsonParser.Feature f, boolean state) JacksonJsonProvider.disable
(JsonParser.Feature f, boolean state) JacksonJsonProvider.enable
(JsonParser.Feature f, boolean state) -
Uses of JsonParser.Feature in org.codehaus.jackson.map
Methods in org.codehaus.jackson.map with parameters of type JsonParser.FeatureModifier and TypeMethodDescriptionObjectMapper.configure
(JsonParser.Feature f, boolean state) Method for changing state of an on/offJsonParser
feature forJsonFactory
instance this object mapper uses.boolean
Module.SetupContext.isEnabled
(JsonParser.Feature f) boolean
ObjectMapper.isEnabled
(JsonParser.Feature f) Convenience method, equivalent to: -
Uses of JsonParser.Feature in org.codehaus.jackson.util
Methods in org.codehaus.jackson.util with parameters of type JsonParser.FeatureModifier and TypeMethodDescriptionJsonParserDelegate.disable
(JsonParser.Feature f) JsonParserDelegate.enable
(JsonParser.Feature f) boolean
JsonParserDelegate.isEnabled
(JsonParser.Feature f)
JsonParser.disable(Feature)
instead