Uses of Enum
com.fasterxml.jackson.core.JsonFactory.Feature
Packages that use JsonFactory.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.-
Uses of JsonFactory.Feature in com.fasterxml.jackson.core
Subclasses with type arguments of type JsonFactory.Feature in com.fasterxml.jackson.coreModifier and TypeClassDescriptionstatic enumEnumeration that defines all on/off features that can only be changed forJsonFactory.Methods in com.fasterxml.jackson.core that return JsonFactory.FeatureModifier and TypeMethodDescriptionstatic JsonFactory.FeatureReturns 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.FeatureModifier and TypeMethodDescriptionfinal JsonFactoryJsonFactory.configure(JsonFactory.Feature f, boolean state) Deprecated.TSFBuilder.configure(JsonFactory.Feature f, boolean state) JsonFactory.disable(JsonFactory.Feature f) Deprecated.since 2.10 useTSFBuilder.configure(JsonFactory.Feature, boolean)insteadTSFBuilder.disable(JsonFactory.Feature f) JsonFactory.enable(JsonFactory.Feature f) Deprecated.since 2.10 useTSFBuilder.configure(JsonFactory.Feature, boolean)insteadTSFBuilder.enable(JsonFactory.Feature f) final booleanJsonFactory.isEnabled(JsonFactory.Feature f) Checked whether specified parser feature is enabled.abstract booleanTokenStreamFactory.isEnabled(JsonFactory.Feature f)
TSFBuilder.configure(JsonFactory.Feature, boolean)instead