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
JsonParserUtility 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.FeatureReturns 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 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)voidJsonParser.disableFeature(JsonParser.Feature f) Deprecated.final voidJsonFactory.disableParserFeature(JsonParser.Feature f) Deprecated.UseJsonFactory.disable(JsonParser.Feature)insteadJsonFactory.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)voidJsonParser.enableFeature(JsonParser.Feature f) Deprecated.UseJsonParser.enable(Feature)insteadfinal voidJsonFactory.enableParserFeature(JsonParser.Feature f) Deprecated.UseJsonFactory.enable(JsonParser.Feature)insteadfinal booleanJsonFactory.isEnabled(JsonParser.Feature f) Checked whether specified parser feature is enabled.booleanJsonParser.isEnabled(JsonParser.Feature f) Method for checking whether specifiedJsonParser.Featureis enabled.final booleanJsonParser.isFeatureEnabled(JsonParser.Feature f) Deprecated.UseJsonParser.isEnabled(Feature)insteadfinal booleanJsonFactory.isParserFeatureEnabled(JsonParser.Feature f) Deprecated.UseJsonFactory.isEnabled(JsonParser.Feature)insteadvoidJsonParser.setFeature(JsonParser.Feature f, boolean state) Deprecated.final voidJsonFactory.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) voidMapperConfigurator.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/offJsonParserfeature forJsonFactoryinstance this object mapper uses.booleanModule.SetupContext.isEnabled(JsonParser.Feature f) booleanObjectMapper.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) booleanJsonParserDelegate.isEnabled(JsonParser.Feature f)
JsonParser.disable(Feature)instead