Class SerializerCache.TypeKey
- java.lang.Object
-
- org.codehaus.jackson.map.ser.impl.SerializerCache.TypeKey
-
- Enclosing class:
- SerializerCache
public static final class SerializerCache.TypeKey extends Object
Key that offers two "modes"; one with raw class, as used for cases were raw class type is available (for example, when using runtime type); and one with full generics-including.
-
-
Field Summary
Fields Modifier and Type Field Description protected Class<?>
_class
protected int
_hashCode
protected boolean
_isTyped
Indicator of whether serializer stored has a type serializer wrapper around it or not; if not, it is "untyped" serializer; if it has, it is "typed"protected JavaType
_type
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
int
hashCode()
void
resetTyped(Class<?> cls)
void
resetTyped(JavaType type)
void
resetUntyped(Class<?> cls)
void
resetUntyped(JavaType type)
String
toString()
-