Uses of Class
org.codehaus.jackson.JsonParser.Feature
-
Packages that use JsonParser.Feature Package Description org.codehaus.jackson Main public API classes of the core streaming JSON processor: most importantlyJsonFactoryused for constructing JSON parser (JsonParser) and generator (JsonParser) instances.org.codehaus.jackson.jaxrs Jackson-based JAX-RS provider that can automatically serialize and deserialize resources for JSON content type (MediaType).org.codehaus.jackson.map 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 viaObjectMapperclass, as well as convenience methods included inJsonParserorg.codehaus.jackson.util Utility classes used by Jackson Core functionality. -
-
Uses of JsonParser.Feature in org.codehaus.jackson
Methods in org.codehaus.jackson that return JsonParser.Feature Modifier and Type Method Description 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 org.codehaus.jackson with parameters of type JsonParser.Feature Modifier and Type Method Description 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)voidJsonParser. disableFeature(JsonParser.Feature f)Deprecated.UseJsonParser.disable(Feature)insteadvoidJsonFactory. disableParserFeature(JsonParser.Feature f)Deprecated.UseJsonFactory.disable(JsonParser.Feature)insteadJsonFactoryJsonFactory. 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)voidJsonParser. enableFeature(JsonParser.Feature f)Deprecated.UseJsonParser.enable(Feature)insteadvoidJsonFactory. enableParserFeature(JsonParser.Feature f)Deprecated.UseJsonFactory.enable(JsonParser.Feature)insteadbooleanJsonFactory. isEnabled(JsonParser.Feature f)Checked whether specified parser feature is enabled.booleanJsonParser. isEnabled(JsonParser.Feature f)Method for checking whether specifiedJsonParser.Featureis enabled.booleanJsonParser. isFeatureEnabled(JsonParser.Feature f)Deprecated.UseJsonParser.isEnabled(Feature)insteadbooleanJsonFactory. isParserFeatureEnabled(JsonParser.Feature f)Deprecated.UseJsonFactory.isEnabled(JsonParser.Feature)insteadvoidJsonParser. setFeature(JsonParser.Feature f, boolean state)Deprecated.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.Feature Modifier and Type Method Description JacksonJsonProviderJacksonJsonProvider. configure(JsonParser.Feature f, boolean state)voidMapperConfigurator. configure(JsonParser.Feature f, boolean state)JacksonJsonProviderJacksonJsonProvider. disable(JsonParser.Feature f, boolean state)JacksonJsonProviderJacksonJsonProvider. 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.Feature Modifier and Type Method Description ObjectMapperObjectMapper. 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.Feature Modifier and Type Method Description JsonParserJsonParserDelegate. disable(JsonParser.Feature f)JsonParserJsonParserDelegate. enable(JsonParser.Feature f)booleanJsonParserDelegate. isEnabled(JsonParser.Feature f)
-