Uses of Package
org.codehaus.jackson.map.deser

Packages that use org.codehaus.jackson.map.deser
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.deser Contains implementation classes of deserialization part of data binding. 
org.codehaus.jackson.map.deser.impl   
org.codehaus.jackson.map.ext Contains extended support for "external" packages: things that may or may not be present in runtime environment, but that are commonly enough used so that explicit support can be added. 
org.codehaus.jackson.xc Package that contains XML Compatibility functionality for Jackson, such as handlers for JAXB annotations 
 

Classes in org.codehaus.jackson.map.deser used by org.codehaus.jackson.map
BeanDeserializerModifier
          Abstract class that defines API for objects that can be registered (for BeanDeserializerFactory to participate in constructing BeanDeserializer instances.
 

Classes in org.codehaus.jackson.map.deser used by org.codehaus.jackson.map.deser
BasicDeserializerFactory
          Abstract factory base class that can provide deserializers for standard JDK classes, including collection classes and simple heuristics for "upcasting" commmon collection interface types (such as Collection).
BeanDeserializer
          Deserializer class that can deserialize instances of arbitrary bean objects, usually from JSON Object structs, but possibly also from simple types like String values.
BeanDeserializerBuilder
          Builder class used for aggregating deserialization information about a POJO, in order to build a JsonDeserializer for deserializing intances.
BeanDeserializerFactory
          Concrete deserializer factory class that adds full Bean deserializer construction logic using class introspection.
BeanDeserializerModifier
          Abstract class that defines API for objects that can be registered (for BeanDeserializerFactory to participate in constructing BeanDeserializer instances.
ContainerDeserializer
          Intermediate base deserializer class that adds more shared accessor so that other classes can access information about contained (value) types
CreatorContainer
          Container for set of Creators (constructors, factory methods)
EnumResolver
          Helper class used to resolve String values (either Json Object field names or regular String values) into Java Enum instances.
FromStringDeserializer
          Base class for simple deserializer which only accept JSON String values as the source.
JsonNodeDeserializer
          Deserializer that can build instances of JsonNode from any JSON content, using appropriate JsonNode type.
SettableAnyProperty
          Class that represents a "wildcard" set method which can be used to generically set values of otherwise unmapped (aka "unknown") properties read from Json content.
SettableBeanProperty
          Base class for settable properties of a bean: contains both type and name definitions, and reflection-based set functionality.
SettableBeanProperty.NullProvider
          To support [JACKSON-420] we need bit more indirection; this is used to produce artificial failure for primitives that don't accept JSON null as value.
StdDeserializer
          Base class for common deserializers.
StdDeserializer.PrimitiveOrWrapperDeserializer
           
StdScalarDeserializer
          Base class for deserializers that handle types that are serialized as JSON scalars (non-structured, i.e.
 

Classes in org.codehaus.jackson.map.deser used by org.codehaus.jackson.map.deser.impl
ContainerDeserializer
          Intermediate base deserializer class that adds more shared accessor so that other classes can access information about contained (value) types
SettableBeanProperty
          Base class for settable properties of a bean: contains both type and name definitions, and reflection-based set functionality.
StdDeserializer
          Base class for common deserializers.
 

Classes in org.codehaus.jackson.map.deser used by org.codehaus.jackson.map.ext
FromStringDeserializer
          Base class for simple deserializer which only accept JSON String values as the source.
StdDeserializer
          Base class for common deserializers.
StdScalarDeserializer
          Base class for deserializers that handle types that are serialized as JSON scalars (non-structured, i.e.
 

Classes in org.codehaus.jackson.map.deser used by org.codehaus.jackson.xc
StdDeserializer
          Base class for common deserializers.
StdScalarDeserializer
          Base class for deserializers that handle types that are serialized as JSON scalars (non-structured, i.e.