Uses of Class
org.codehaus.jackson.map.ser.SerializerCache.TypeKey

Packages that use SerializerCache.TypeKey
org.codehaus.jackson.map.ser.impl Contains implementation classes of serialization part of data binding. 
 

Uses of SerializerCache.TypeKey in org.codehaus.jackson.map.ser.impl
 

Fields in org.codehaus.jackson.map.ser.impl declared as SerializerCache.TypeKey
protected  SerializerCache.TypeKey ReadOnlyClassToSerializerMap._cacheKey
          We'll reuse key class to avoid unnecessary instantiations; since this is not shared between threads, we can just reuse single instance.
 

Methods in org.codehaus.jackson.map.ser.impl with parameters of type SerializerCache.TypeKey
 JsonSerializer<Object> JsonSerializerMap.find(SerializerCache.TypeKey key)
           
 

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

Constructor parameters in org.codehaus.jackson.map.ser.impl with type arguments of type SerializerCache.TypeKey
JsonSerializerMap(Map<SerializerCache.TypeKey,JsonSerializer<Object>> serializers)