java.lang.Object
tools.jackson.databind.jsontype.impl.TypeIdResolverBase
tools.jackson.databind.jsontype.impl.TypeNameIdResolver
- All Implemented Interfaces:
Serializable,TypeIdResolver
TypeIdResolver implementation
that converts using explicitly (annotation-) specified type names
and maps to implementation classes; or, in absence of annotated type name,
defaults to fully-qualified Class names (obtained with Class.getName()- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final booleanMappings from type id to JavaType, used for deserialization.protected final ConcurrentHashMap<String,String> Mappings from class name to type id, used for serialization.Fields inherited from class tools.jackson.databind.jsontype.impl.TypeIdResolverBase
_baseType -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedTypeNameIdResolver(JavaType baseType, ConcurrentHashMap<String, String> typeToId, HashMap<String, JavaType> idToType, boolean caseInsensitive) -
Method Summary
Modifier and TypeMethodDescriptionprotected static String_defaultTypeId(Class<?> cls) If no name was explicitly given for a class, we will just use non-qualified class nameprotected JavaType_typeFromId(String id) static TypeNameIdResolverconstruct(MapperConfig<?> config, JavaType baseType, Collection<NamedType> subtypes, boolean forSer, boolean forDeser) Helper method used to get a simple description of all known type ids, for use in error messages.Accessor for mechanism that this resolver uses for determining type id from type.protected StringidFromClass(DatabindContext ctxt, Class<?> cls) idFromValue(DatabindContext ctxt, Object value) Method called to serialize type of the type of given value as a String to include in serialized JSON content.idFromValueAndType(DatabindContext ctxt, Object value, 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.typeFromId(DatabindContext context, String id) Method called to resolve type from given type identifier.Methods inherited from class tools.jackson.databind.jsontype.impl.TypeIdResolverBase
_resolveToParentAsNecessary, idFromBaseType, init
-
Field Details
-
_typeToId
Mappings from class name to type id, used for serialization.Since lazily constructed will require synchronization (either internal by type, or external)
-
_idToType
Mappings from type id to JavaType, used for deserialization.Eagerly constructed, not modified, can use regular unsynchronized
Map. -
_caseInsensitive
protected final boolean _caseInsensitive
-
-
Constructor Details
-
TypeNameIdResolver
-
-
Method Details
-
construct
public static TypeNameIdResolver construct(MapperConfig<?> config, JavaType baseType, Collection<NamedType> subtypes, boolean forSer, boolean forDeser) -
getMechanism
Description copied from interface:TypeIdResolverAccessor for mechanism that this resolver uses for determining type id from type. Mostly informational; not required to be called or used.- Specified by:
getMechanismin interfaceTypeIdResolver
-
idFromValue
Description copied from interface:TypeIdResolverMethod called to serialize type of the type of given value as a String to include in serialized JSON content.- Specified by:
idFromValuein interfaceTypeIdResolver
-
idFromClass
-
idFromValueAndType
Description copied from interface:TypeIdResolverAlternative method used for determining type from combination of value and type, using suggested type (that serializer provides) and possibly value of that type. Most common implementation will use suggested type as is.- Specified by:
idFromValueAndTypein interfaceTypeIdResolver
-
typeFromId
Description copied from interface:TypeIdResolverMethod called to resolve type from given type identifier.- Specified by:
typeFromIdin interfaceTypeIdResolver- Overrides:
typeFromIdin classTypeIdResolverBase
-
_typeFromId
-
getDescForKnownTypeIds
Description copied from class:TypeIdResolverBaseHelper method used to get a simple description of all known type ids, for use in error messages.- Specified by:
getDescForKnownTypeIdsin interfaceTypeIdResolver- Overrides:
getDescForKnownTypeIdsin classTypeIdResolverBase
-
_defaultTypeId
If no name was explicitly given for a class, we will just use non-qualified class name
-