Uses of Enum Class
com.fasterxml.jackson.annotation.JsonFormat.Feature
Packages that use JsonFormat.Feature
Package
Description
Public core annotations, most of which are used to configure how
Data Mapping/Binding works.
Contains public standard implementations of abstraction that
Jackson uses.
-
Uses of JsonFormat.Feature in com.fasterxml.jackson.annotation
Methods in com.fasterxml.jackson.annotation that return JsonFormat.FeatureModifier and TypeMethodDescriptionstatic JsonFormat.FeatureReturns the enum constant of this class with the specified name.static JsonFormat.Feature[]JsonFormat.Feature.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.fasterxml.jackson.annotation with parameters of type JsonFormat.FeatureModifier and TypeMethodDescriptionstatic JsonFormat.FeaturesJsonFormat.Features.construct(JsonFormat.Feature[] enabled, JsonFormat.Feature[] disabled) JsonFormat.Features.get(JsonFormat.Feature f) JsonFormat.Value.getFeature(JsonFormat.Feature f) Accessor for checking whether this format value has specific setting for given feature.JsonFormat.Features.with(JsonFormat.Feature... features) JsonFormat.Value.withFeature(JsonFormat.Feature f) JsonFormat.Features.without(JsonFormat.Feature... features) JsonFormat.Value.withoutFeature(JsonFormat.Feature f) -
Uses of JsonFormat.Feature in com.fasterxml.jackson.databind.deser.std
Methods in com.fasterxml.jackson.databind.deser.std with parameters of type JsonFormat.FeatureModifier and TypeMethodDescriptionprotected BooleanStdDeserializer.findFormatFeature(DeserializationContext ctxt, BeanProperty prop, Class<?> typeForDefaults, JsonFormat.Feature feat) Convenience method that usesStdDeserializer.findFormatOverrides(com.fasterxml.jackson.databind.DeserializationContext, com.fasterxml.jackson.databind.BeanProperty, java.lang.Class<?>)to find possible defaults and/of overrides, and then callsJsonFormat.Value.getFeature(feat)to find whether that feature has been specifically marked as enabled or disabled. -
Uses of JsonFormat.Feature in com.fasterxml.jackson.databind.ser.std
Methods in com.fasterxml.jackson.databind.ser.std with parameters of type JsonFormat.FeatureModifier and TypeMethodDescriptionprotected BooleanStdSerializer.findFormatFeature(SerializerProvider provider, BeanProperty prop, Class<?> typeForDefaults, JsonFormat.Feature feat) Convenience method that usesStdSerializer.findFormatOverrides(com.fasterxml.jackson.databind.SerializerProvider, com.fasterxml.jackson.databind.BeanProperty, java.lang.Class<?>)to find possible defaults and/of overrides, and then callsJsonFormat.Value.getFeature(...)to find whether that feature has been specifically marked as enabled or disabled.