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 MapperFeatureReturns 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 booleanDatabindContext.isEnabled(MapperFeature feature) Convenience method for checking whether specified Mapper feature is enabled or not.final booleanDeserializationContext.isEnabled(MapperFeature feature) booleanJacksonModule.SetupContext.isEnabled(MapperFeature f) booleanObjectMapper.isEnabled(MapperFeature f) Method for checking whether givenMapperFeatureis enabled.booleanObjectReader.isEnabled(MapperFeature f) booleanObjectWriter.isEnabled(MapperFeature f) final booleanSerializationContext.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) booleanMapperBuilder.isEnabled(MapperFeature f) final booleanMapperConfig.isEnabled(MapperFeature f) Accessor for simple mapper features (which are shared for serialization, deserialization)booleanModuleContextBase.isEnabled(MapperFeature f)