Uses of Enum Class
tools.jackson.databind.MapperFeature
Packages that use MapperFeature
Package
Description
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.Package that contains most of configuration-related classes;
exception being couple of most-commonly used configuration
things (like Feature enumerations) that are at the
main level (
tools.jackson.databind
).-
Uses of MapperFeature in tools.jackson.databind
Methods in tools.jackson.databind that return MapperFeatureModifier and TypeMethodDescriptionstatic MapperFeature
Returns the enum constant of this class with the specified name.static MapperFeature[]
MapperFeature.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in tools.jackson.databind with parameters of type MapperFeatureModifier and TypeMethodDescriptionabstract boolean
DatabindContext.isEnabled
(MapperFeature feature) Convenience method for checking whether specified Mapper feature is enabled or not.final boolean
DeserializationContext.isEnabled
(MapperFeature feature) boolean
JacksonModule.SetupContext.isEnabled
(MapperFeature f) boolean
ObjectMapper.isEnabled
(MapperFeature f) Method for checking whether givenMapperFeature
is enabled.boolean
ObjectReader.isEnabled
(MapperFeature f) boolean
ObjectWriter.isEnabled
(MapperFeature f) final boolean
SerializationContext.isEnabled
(MapperFeature feature) -
Uses of MapperFeature in tools.jackson.databind.cfg
Methods in tools.jackson.databind.cfg with parameters of type MapperFeatureModifier and TypeMethodDescriptionMapperBuilder.configure
(MapperFeature feature, boolean state) MapperBuilder.disable
(MapperFeature... features) MapperBuilder.enable
(MapperFeature... features) boolean
MapperBuilder.isEnabled
(MapperFeature f) final boolean
MapperConfig.isEnabled
(MapperFeature f) Accessor for simple mapper features (which are shared for serialization, deserialization)boolean
ModuleContextBase.isEnabled
(MapperFeature f)