Uses of Class
com.fasterxml.jackson.core.JsonFactory.Feature
-
Packages that use JsonFactory.Feature Package Description com.fasterxml.jackson.core Main public API classes of the core streaming JSON processor: most importantlyJsonFactoryused for constructing JSON parser (JsonParser) and generator (JsonGenerator) instances.com.fasterxml.jackson.databind Basic data binding (mapping) functionality that allows for reading JSON content into Java Objects (POJOs) and JSON Trees (JsonNode), as well as writing Java Objects and trees as JSON. -
-
Uses of JsonFactory.Feature in com.fasterxml.jackson.core
Methods in com.fasterxml.jackson.core that return JsonFactory.Feature Modifier and Type Method Description static JsonFactory.FeatureJsonFactory.Feature. valueOf(String name)Returns the enum constant of this type with the specified name.static JsonFactory.Feature[]JsonFactory.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 JsonFactory.Feature Modifier and Type Method Description JsonFactoryJsonFactory. configure(JsonFactory.Feature f, boolean state)Deprecated.since 2.10 useTSFBuilder.configure(JsonFactory.Feature, boolean)insteadBTSFBuilder. configure(JsonFactory.Feature f, boolean state)JsonFactoryJsonFactory. disable(JsonFactory.Feature f)Deprecated.since 2.10 useTSFBuilder.configure(JsonFactory.Feature, boolean)insteadBTSFBuilder. disable(JsonFactory.Feature f)JsonFactoryJsonFactory. enable(JsonFactory.Feature f)Deprecated.since 2.10 useTSFBuilder.configure(JsonFactory.Feature, boolean)insteadBTSFBuilder. enable(JsonFactory.Feature f)booleanJsonFactory. isEnabled(JsonFactory.Feature f)Checked whether specified parser feature is enabled. -
Uses of JsonFactory.Feature in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind with parameters of type JsonFactory.Feature Modifier and Type Method Description booleanModule.SetupContext. isEnabled(JsonFactory.Feature f)booleanObjectMapper. isEnabled(JsonFactory.Feature f)Convenience method, equivalent to:
-