Uses of Class
com.fasterxml.jackson.core.JsonGenerator.Feature
-
Packages that use JsonGenerator.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.core.base Base classes used by concrete Parser and Generator implementations; contain functionality that is not specific to JSON or input abstraction (byte vs char).com.fasterxml.jackson.core.json JSON-specific parser and generator implementation classes that Jackson defines and uses.com.fasterxml.jackson.core.util Utility classes used by Jackson Core functionality. -
-
Uses of JsonGenerator.Feature in com.fasterxml.jackson.core
Methods in com.fasterxml.jackson.core that return JsonGenerator.Feature Modifier and Type Method Description JsonGenerator.FeatureStreamWriteFeature. mappedFeature()static JsonGenerator.FeatureJsonGenerator.Feature. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static JsonGenerator.Feature[]JsonGenerator.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 JsonGenerator.Feature Modifier and Type Method Description protected voidTSFBuilder. _legacyDisable(JsonGenerator.Feature f)protected voidTSFBuilder. _legacyEnable(JsonGenerator.Feature f)JsonFactoryJsonFactory. configure(JsonGenerator.Feature f, boolean state)Method for enabling or disabling specified generator feature (checkJsonGenerator.Featurefor list of features)JsonGeneratorJsonGenerator. configure(JsonGenerator.Feature f, boolean state)Method for enabling or disabling specified feature: checkJsonGenerator.Featurefor list of available features.JsonFactoryJsonFactory. disable(JsonGenerator.Feature f)Method for disabling specified generator feature (checkJsonGenerator.Featurefor list of features)abstract JsonGeneratorJsonGenerator. disable(JsonGenerator.Feature f)Method for disabling specified feature (checkJsonGenerator.Featurefor list of features)JsonFactoryJsonFactory. enable(JsonGenerator.Feature f)Method for enabling specified generator features (checkJsonGenerator.Featurefor list of features)abstract JsonGeneratorJsonGenerator. enable(JsonGenerator.Feature f)Method for enabling specified generator feature: checkJsonGenerator.Featurefor list of available features.booleanJsonFactory. isEnabled(JsonGenerator.Feature f)Check whether specified generator feature is enabled.abstract booleanJsonGenerator. isEnabled(JsonGenerator.Feature f)Method for checking whether given feature is enabled.abstract booleanTokenStreamFactory. isEnabled(JsonGenerator.Feature f) -
Uses of JsonGenerator.Feature in com.fasterxml.jackson.core.base
Methods in com.fasterxml.jackson.core.base with parameters of type JsonGenerator.Feature Modifier and Type Method Description JsonGeneratorGeneratorBase. disable(JsonGenerator.Feature f)JsonGeneratorGeneratorBase. enable(JsonGenerator.Feature f)booleanGeneratorBase. isEnabled(JsonGenerator.Feature f) -
Uses of JsonGenerator.Feature in com.fasterxml.jackson.core.json
Methods in com.fasterxml.jackson.core.json that return JsonGenerator.Feature Modifier and Type Method Description JsonGenerator.FeatureJsonWriteFeature. mappedFeature()Methods in com.fasterxml.jackson.core.json with parameters of type JsonGenerator.Feature Modifier and Type Method Description JsonGeneratorJsonGeneratorImpl. disable(JsonGenerator.Feature f)JsonGeneratorJsonGeneratorImpl. enable(JsonGenerator.Feature f) -
Uses of JsonGenerator.Feature in com.fasterxml.jackson.core.util
Methods in com.fasterxml.jackson.core.util with parameters of type JsonGenerator.Feature Modifier and Type Method Description JsonGeneratorJsonGeneratorDelegate. disable(JsonGenerator.Feature f)JsonGeneratorJsonGeneratorDelegate. enable(JsonGenerator.Feature f)booleanJsonGeneratorDelegate. isEnabled(JsonGenerator.Feature f)
-