Uses of Class
org.codehaus.jackson.map.type.ClassKey

Packages that use ClassKey
org.codehaus.jackson.jaxrs Jackson-based JAX-RS provider that can automatically serialize and deserialize resources for JSON content type (MediaType). 
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.ser Contains implementation classes of serialization part of data binding. 
org.codehaus.jackson.map.type Concrete JavaType implementations. 
 

Uses of ClassKey in org.codehaus.jackson.jaxrs
 

Fields in org.codehaus.jackson.jaxrs with type parameters of type ClassKey
static HashSet<ClassKey> JacksonJsonProvider._untouchables
          Looks like we need to worry about accidental data binding for types we shouldn't be handling.
 

Uses of ClassKey in org.codehaus.jackson.map
 

Fields in org.codehaus.jackson.map with type parameters of type ClassKey
protected  HashMap<ClassKey,Class<?>> SerializationConfig._mixInAnnotations
          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".
 

Constructor parameters in org.codehaus.jackson.map with type arguments of type ClassKey
DeserializationConfig(DeserializationConfig src, HashMap<ClassKey,Class<?>> mixins)
           
SerializationConfig(SerializationConfig src, HashMap<ClassKey,Class<?>> mixins)
           
 

Uses of ClassKey in org.codehaus.jackson.map.ser
 

Method parameters in org.codehaus.jackson.map.ser with type arguments of type ClassKey
static ReadOnlyClassToSerializerMap ReadOnlyClassToSerializerMap.from(HashMap<ClassKey,JsonSerializer<Object>> src)
          Factory method for creating the "blueprint" lookup map.
 

Uses of ClassKey in org.codehaus.jackson.map.type
 

Methods in org.codehaus.jackson.map.type with parameters of type ClassKey
 int ClassKey.compareTo(ClassKey other)