|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ClassIntrospector.MixInResolver | |
---|---|
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 via
ObjectMapper class, as well
as convenience methods included in
JsonParser |
org.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 |
---|
Subinterfaces of ClassIntrospector.MixInResolver in org.codehaus.jackson.map | |
---|---|
interface |
MapperConfig<T extends MapperConfig<T>>
Interface that defines functionality accessible through both serialization and deserialization configuration objects; accessors to mode-independent configuration settings and such. |
Classes in org.codehaus.jackson.map that implement ClassIntrospector.MixInResolver | |
---|---|
class |
DeserializationConfig
Object that contains baseline configuration for deserialization process. |
class |
SerializationConfig
Object that contains baseline configuration for serialization process. |
Methods in org.codehaus.jackson.map with parameters of type ClassIntrospector.MixInResolver | |
---|---|
abstract T |
ClassIntrospector.forClassAnnotations(MapperConfig<?> cfg,
Class<?> c,
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 T |
ClassIntrospector.forCreation(DeserializationConfig cfg,
Class<?> c,
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 methods |
abstract T |
ClassIntrospector.forDeserialization(DeserializationConfig cfg,
JavaType type,
ClassIntrospector.MixInResolver r)
Factory method that constructs an introspector that has all information needed for deserialization purposes. |
abstract T |
ClassIntrospector.forDirectClassAnnotations(MapperConfig<?> cfg,
Class<?> c,
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 T |
ClassIntrospector.forSerialization(SerializationConfig cfg,
Class<?> c,
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 |
---|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |