Class TypeNameIdResolver
java.lang.Object
com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase
com.fasterxml.jackson.databind.jsontype.impl.TypeNameIdResolver
- All Implemented Interfaces:
TypeIdResolver,Serializable
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:
-
Method Summary
Modifier and TypeMethodDescriptionstatic 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.idFromValue(Object value) Method called to serialize type of the type of given value as a String to include in serialized JSON content.idFromValueAndType(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.toString()typeFromId(DatabindContext context, String id) Method called to resolve type from given type identifier.Methods inherited from class com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase
idFromBaseType, init
-
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
-
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
-
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
-
toString
-