Uses of Interface
org.codehaus.jackson.map.ClassIntrospector.MixInResolver
-
Packages that use ClassIntrospector.MixInResolver Package Description org.codehaus.jackson.map Contains basic mapper (conversion) functionality that allows for converting between regular streaming json content and Java objects (beans or Tree Model: support for both is viaObjectMapperclass, as well as convenience methods included inJsonParserorg.codehaus.jackson.map.introspect Functionality needed for Bean introspection, required for detecting accessors and mutators for Beans, as well as locating and handling method annotations. -
-
Uses of ClassIntrospector.MixInResolver in org.codehaus.jackson.map
Classes in org.codehaus.jackson.map that implement ClassIntrospector.MixInResolver Modifier and Type Class Description classDeserializationConfigObject that contains baseline configuration for deserialization process.classMapperConfig<T extends MapperConfig<T>>Interface that defines functionality accessible through both serialization and deserialization configuration objects; accessors to mode-independent configuration settings and such.classSerializationConfigObject that contains baseline configuration for serialization process.Methods in org.codehaus.jackson.map with parameters of type ClassIntrospector.MixInResolver Modifier and Type Method Description TClassIntrospector. forClassAnnotations(MapperConfig<?> cfg, Class<?> cls, ClassIntrospector.MixInResolver r)Deprecated.since 1.9, use variant that takes JavaTypeabstract TClassIntrospector. forClassAnnotations(MapperConfig<?> cfg, JavaType type, ClassIntrospector.MixInResolver r)Factory method that constructs an introspector that only has information regarding annotations class itself (or its supertypes) has, but nothing on methods or constructors.abstract TClassIntrospector. forCreation(DeserializationConfig cfg, JavaType type, ClassIntrospector.MixInResolver r)Factory method that constructs an introspector that has information necessary for creating instances of given class ("creator"), as well as class annotations, but no information on member methodsabstract TClassIntrospector. forDeserialization(DeserializationConfig cfg, JavaType type, ClassIntrospector.MixInResolver r)Factory method that constructs an introspector that has all information needed for deserialization purposes.TClassIntrospector. forDirectClassAnnotations(MapperConfig<?> cfg, Class<?> cls, ClassIntrospector.MixInResolver r)Deprecated.since 1.9, use variant that takes JavaTypeabstract TClassIntrospector. forDirectClassAnnotations(MapperConfig<?> cfg, JavaType type, ClassIntrospector.MixInResolver r)Factory method that constructs an introspector that only has information regarding annotations class itself has (but NOT including its supertypes), but nothing on methods or constructors.abstract TClassIntrospector. forSerialization(SerializationConfig cfg, JavaType type, ClassIntrospector.MixInResolver r)Factory method that constructs an introspector that has all information needed for serialization purposes. -
Uses of ClassIntrospector.MixInResolver in org.codehaus.jackson.map.introspect
Fields in org.codehaus.jackson.map.introspect declared as ClassIntrospector.MixInResolver Modifier and Type Field Description protected ClassIntrospector.MixInResolverAnnotatedClass. _mixInResolverObject that knows mapping of mix-in classes (ones that contain annotations to add) with their target classes (ones that get these additional annotations "mixed in").
-