Uses of Enum
com.fasterxml.jackson.core.JsonGenerator.Feature
Packages that use JsonGenerator.Feature
Package
Description
Main public API classes of the core streaming JSON
processor: most importantly
JsonFactory
used for constructing
JSON parser (JsonParser)
and generator
(JsonGenerator)
instances.Base classes used by concrete Parser and Generator implementations;
contain functionality that is not specific to JSON or input
abstraction (byte vs char).
JSON-specific parser and generator implementation classes that
Jackson defines and uses.
Utility classes used by Jackson Core functionality.
-
Uses of JsonGenerator.Feature in com.fasterxml.jackson.core
Subclasses with type arguments of type JsonGenerator.Feature in com.fasterxml.jackson.coreModifier and TypeClassDescriptionstatic enumEnumeration that defines all togglable features for generators.Methods in com.fasterxml.jackson.core that return JsonGenerator.FeatureModifier and TypeMethodDescriptionStreamWriteFeature.mappedFeature()static JsonGenerator.FeatureReturns 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.FeatureModifier and TypeMethodDescriptionprotected voidTSFBuilder._legacyDisable(JsonGenerator.Feature f) protected voidTSFBuilder._legacyEnable(JsonGenerator.Feature f) final JsonFactoryJsonFactory.configure(JsonGenerator.Feature f, boolean state) Method for enabling or disabling specified generator feature (checkJsonGenerator.Featurefor list of features)final JsonGeneratorJsonGenerator.configure(JsonGenerator.Feature f, boolean state) Method for enabling or disabling specified feature: checkJsonGenerator.Featurefor list of available features.JsonFactory.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)JsonFactory.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.final 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.FeatureModifier and TypeMethodDescriptionGeneratorBase.disable(JsonGenerator.Feature f) GeneratorBase.enable(JsonGenerator.Feature f) final 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.FeatureMethods in com.fasterxml.jackson.core.json with parameters of type JsonGenerator.FeatureModifier and TypeMethodDescriptionJsonGeneratorImpl.disable(JsonGenerator.Feature f) JsonGeneratorImpl.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.FeatureModifier and TypeMethodDescriptionJsonGeneratorDelegate.disable(JsonGenerator.Feature f) JsonGeneratorDelegate.enable(JsonGenerator.Feature f) booleanJsonGeneratorDelegate.isEnabled(JsonGenerator.Feature f)