Uses of Class
com.fasterxml.jackson.databind.introspect.SimpleMixInResolver
-
Packages that use SimpleMixInResolver 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
).com.fasterxml.jackson.databind.introspect Functionality needed for Bean introspection, required for detecting accessors and mutators for Beans, as well as locating and handling method annotations. -
-
Uses of SimpleMixInResolver in com.fasterxml.jackson.databind
Fields in com.fasterxml.jackson.databind declared as SimpleMixInResolver Modifier and Type Field Description protected SimpleMixInResolver
ObjectMapper. _mixIns
Mapping that defines how to apply mix-in annotations: key is the type to received additional annotations, and value is the type that has annotations to "mix in". -
Uses of SimpleMixInResolver in com.fasterxml.jackson.databind.cfg
Fields in com.fasterxml.jackson.databind.cfg declared as SimpleMixInResolver Modifier and Type Field Description protected SimpleMixInResolver
MapperConfigBase. _mixIns
Mix-in annotation mappings to use, if any: immutable, cannot be changed once defined.Constructors in com.fasterxml.jackson.databind.cfg with parameters of type SimpleMixInResolver Constructor Description MapperConfigBase(BaseSettings base, SubtypeResolver str, SimpleMixInResolver mixins, RootNameLookup rootNames, ConfigOverrides configOverrides)
Constructor used when creating a new instance (compared to that of creating fluent copies)MapperConfigBase(MapperConfigBase<CFG,T> src, SimpleMixInResolver mixins)
MapperConfigBase(MapperConfigBase<CFG,T> src, SubtypeResolver str, SimpleMixInResolver mixins, RootNameLookup rootNames, ConfigOverrides configOverrides)
Copy constructor usually called to make a copy for use by ObjectMapper that is copied. -
Uses of SimpleMixInResolver in com.fasterxml.jackson.databind.introspect
Methods in com.fasterxml.jackson.databind.introspect that return SimpleMixInResolver Modifier and Type Method Description SimpleMixInResolver
SimpleMixInResolver. copy()
SimpleMixInResolver
SimpleMixInResolver. withoutLocalDefinitions()
Mutant factory method that constructs a new instance that has no locally defined mix-in/target mappings.SimpleMixInResolver
SimpleMixInResolver. withOverrides(ClassIntrospector.MixInResolver overrides)
Mutant factory for constructor a new resolver instance with given mix-in resolver override.
-