public class TypeNameIdResolver extends TypeIdResolverBase
Modifier and Type | Field and Description |
---|---|
protected MapperConfig<?> |
_config |
protected java.util.Map<java.lang.String,JavaType> |
_idToType
Mappings from type id to JavaType, used for deserialization
|
protected java.util.Map<java.lang.String,java.lang.String> |
_typeToId
Mappings from class name to type id, used for serialization
|
_baseType, _typeFactory
Modifier | Constructor and Description |
---|---|
protected |
TypeNameIdResolver(MapperConfig<?> config,
JavaType baseType,
java.util.Map<java.lang.String,java.lang.String> typeToId,
java.util.Map<java.lang.String,JavaType> idToType) |
Modifier and Type | Method and Description |
---|---|
protected static java.lang.String |
_defaultTypeId(java.lang.Class<?> cls)
If no name was explicitly given for a class, we will just
use non-qualified class name
|
protected JavaType |
_typeFromId(java.lang.String id) |
static TypeNameIdResolver |
construct(MapperConfig<?> config,
JavaType baseType,
java.util.Collection<NamedType> subtypes,
boolean forSer,
boolean forDeser) |
java.lang.String |
getDescForKnownTypeIds()
Helper method used to get a simple description of all known type ids,
for use in error messages.
|
com.fasterxml.jackson.annotation.JsonTypeInfo.Id |
getMechanism()
Accessor for mechanism that this resolver uses for determining
type id from type.
|
protected java.lang.String |
idFromClass(java.lang.Class<?> clazz) |
java.lang.String |
idFromValue(java.lang.Object value)
Method called to serialize type of the type of given value
as a String to include in serialized JSON content.
|
java.lang.String |
idFromValueAndType(java.lang.Object value,
java.lang.Class<?> type)
Alternative method used for determining type from combination of
value and type, using suggested type (that serializer provides)
and possibly value of that type.
|
java.lang.String |
toString() |
JavaType |
typeFromId(DatabindContext context,
java.lang.String id)
New method, replacement for
TypeIdResolverBase.typeFromId(String) , which is given
context for accessing information, including configuration and
TypeFactory . |
JavaType |
typeFromId(java.lang.String id)
Deprecated.
|
idFromBaseType, init
protected final MapperConfig<?> _config
protected final java.util.Map<java.lang.String,java.lang.String> _typeToId
protected final java.util.Map<java.lang.String,JavaType> _idToType
protected TypeNameIdResolver(MapperConfig<?> config, JavaType baseType, java.util.Map<java.lang.String,java.lang.String> typeToId, java.util.Map<java.lang.String,JavaType> idToType)
public static TypeNameIdResolver construct(MapperConfig<?> config, JavaType baseType, java.util.Collection<NamedType> subtypes, boolean forSer, boolean forDeser)
public com.fasterxml.jackson.annotation.JsonTypeInfo.Id getMechanism()
TypeIdResolver
public java.lang.String idFromValue(java.lang.Object value)
TypeIdResolver
protected java.lang.String idFromClass(java.lang.Class<?> clazz)
public java.lang.String idFromValueAndType(java.lang.Object value, java.lang.Class<?> type)
TypeIdResolver
@Deprecated public JavaType typeFromId(java.lang.String id)
typeFromId
in interface TypeIdResolver
typeFromId
in class TypeIdResolverBase
public JavaType typeFromId(DatabindContext context, java.lang.String id)
TypeIdResolverBase
TypeIdResolverBase.typeFromId(String)
, which is given
context for accessing information, including configuration and
TypeFactory
.typeFromId
in interface TypeIdResolver
typeFromId
in class TypeIdResolverBase
protected JavaType _typeFromId(java.lang.String id)
public java.lang.String getDescForKnownTypeIds()
TypeIdResolverBase
getDescForKnownTypeIds
in interface TypeIdResolver
getDescForKnownTypeIds
in class TypeIdResolverBase
public java.lang.String toString()
toString
in class java.lang.Object
protected static java.lang.String _defaultTypeId(java.lang.Class<?> cls)