Uses of Class
com.fasterxml.jackson.databind.MapperFeature
-
Packages that use MapperFeature Package Description com.fasterxml.jackson.databind 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.com.fasterxml.jackson.databind.cfg 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 (com.fasterxml.jackson.databind). -
-
Uses of MapperFeature in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind that return MapperFeature Modifier and Type Method Description static MapperFeatureMapperFeature. valueOf(String name)Returns the enum constant of this type with the specified name.static MapperFeature[]MapperFeature. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.fasterxml.jackson.databind with parameters of type MapperFeature Modifier and Type Method Description ObjectMapperObjectMapper. configure(MapperFeature f, boolean state)ObjectMapperObjectMapper. disable(MapperFeature... f)ObjectMapperObjectMapper. enable(MapperFeature... f)abstract booleanDatabindContext. isEnabled(MapperFeature feature)Convenience method for checking whether specified serialization feature is enabled or not.booleanDeserializationContext. isEnabled(MapperFeature feature)booleanModule.SetupContext. isEnabled(MapperFeature f)booleanObjectMapper. isEnabled(MapperFeature f)Method for checking whether givenMapperFeatureis enabled.booleanObjectReader. isEnabled(MapperFeature f)booleanObjectWriter. isEnabled(MapperFeature f)booleanSerializerProvider. isEnabled(MapperFeature feature) -
Uses of MapperFeature in com.fasterxml.jackson.databind.cfg
Methods in com.fasterxml.jackson.databind.cfg with parameters of type MapperFeature Modifier and Type Method Description BMapperBuilder. configure(MapperFeature feature, boolean state)BMapperBuilder. disable(MapperFeature... features)BMapperBuilder. enable(MapperFeature... features)booleanMapperBuilder. isEnabled(MapperFeature f)booleanMapperConfig. isEnabled(MapperFeature f)Accessor for simple mapper features (which are shared for serialization, deserialization)abstract TMapperConfig. with(MapperFeature... features)Method for constructing and returning a new instance with specified mapper features enabled.abstract TMapperConfig. with(MapperFeature feature, boolean state)TMapperConfigBase. with(MapperFeature... features)Fluent factory method that will construct and return a new configuration object instance with specified features enabled.TMapperConfigBase. with(MapperFeature feature, boolean state)abstract TMapperConfig. without(MapperFeature... features)Method for constructing and returning a new instance with specified mapper features disabled.TMapperConfigBase. without(MapperFeature... features)Fluent factory method that will construct and return a new configuration object instance with specified features disabled.
-