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 importantlyJsonFactory
used 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 viaObjectMapper
class, as well as convenience methods included inJsonParser
org.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.Feature
JsonParser.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 JsonFactory
JsonFactory. configure(JsonParser.Feature f, boolean state)
Method for enabling or disabling specified parser feature (checkJsonParser.Feature
for list of features)JsonParser
JsonParser. configure(JsonParser.Feature f, boolean state)
Method for enabling or disabling specified feature (checkJsonParser.Feature
for list of features)JsonFactory
JsonFactory. disable(JsonParser.Feature f)
Method for disabling specified parser features (checkJsonParser.Feature
for list of features)JsonParser
JsonParser. disable(JsonParser.Feature f)
Method for disabling specified feature (checkJsonParser.Feature
for list of features)void
JsonParser. disableFeature(JsonParser.Feature f)
Deprecated.UseJsonParser.disable(Feature)
insteadvoid
JsonFactory. disableParserFeature(JsonParser.Feature f)
Deprecated.UseJsonFactory.disable(JsonParser.Feature)
insteadJsonFactory
JsonFactory. enable(JsonParser.Feature f)
Method for enabling specified parser feature (checkJsonParser.Feature
for list of features)JsonParser
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)
insteadvoid
JsonFactory. enableParserFeature(JsonParser.Feature f)
Deprecated.UseJsonFactory.enable(JsonParser.Feature)
insteadboolean
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.boolean
JsonParser. isFeatureEnabled(JsonParser.Feature f)
Deprecated.UseJsonParser.isEnabled(Feature)
insteadboolean
JsonFactory. isParserFeatureEnabled(JsonParser.Feature f)
Deprecated.UseJsonFactory.isEnabled(JsonParser.Feature)
insteadvoid
JsonParser. setFeature(JsonParser.Feature f, boolean state)
Deprecated.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.Feature Modifier and Type Method Description JacksonJsonProvider
JacksonJsonProvider. configure(JsonParser.Feature f, boolean state)
void
MapperConfigurator. configure(JsonParser.Feature f, boolean state)
JacksonJsonProvider
JacksonJsonProvider. disable(JsonParser.Feature f, boolean state)
JacksonJsonProvider
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.Feature Modifier and Type Method Description ObjectMapper
ObjectMapper. 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.Feature Modifier and Type Method Description JsonParser
JsonParserDelegate. disable(JsonParser.Feature f)
JsonParser
JsonParserDelegate. enable(JsonParser.Feature f)
boolean
JsonParserDelegate. isEnabled(JsonParser.Feature f)
-