Class MapType
- java.lang.Object
-
- com.fasterxml.jackson.core.type.ResolvedType
-
- com.fasterxml.jackson.databind.JavaType
-
- com.fasterxml.jackson.databind.type.TypeBase
-
- com.fasterxml.jackson.databind.type.MapLikeType
-
- com.fasterxml.jackson.databind.type.MapType
-
- All Implemented Interfaces:
JsonSerializable,Serializable,Type
public final class MapType extends MapLikeType
Type that represents "true" Java Map types.- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.fasterxml.jackson.databind.JsonSerializable
JsonSerializable.Base
-
-
Field Summary
-
Fields inherited from class com.fasterxml.jackson.databind.type.MapLikeType
_keyType, _valueType
-
Fields inherited from class com.fasterxml.jackson.databind.type.TypeBase
_bindings, _superClass, _superInterfaces
-
Fields inherited from class com.fasterxml.jackson.databind.JavaType
_asStatic, _class, _hash, _typeHandler, _valueHandler
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected JavaType_narrow(Class<?> subclass)Deprecated.static MapTypeconstruct(Class<?> rawType, JavaType keyT, JavaType valueT)Deprecated.static MapTypeconstruct(Class<?> rawType, TypeBindings bindings, JavaType superClass, JavaType[] superInts, JavaType keyT, JavaType valueT)JavaTyperefine(Class<?> rawType, TypeBindings bindings, JavaType superClass, JavaType[] superInterfaces)Mutant factory method that will try to create and return a sub-type instance for known parameterized types; for other types will return `null` to indicate that no just refinement makes necessary sense, without trying to detect special status through implemented interfaces.StringtoString()JavaTypewithContentType(JavaType contentType)Mutant factory method that may be called on structured types that have a so-called content type (element of arrays, value type of Maps, referenced type of referential types), and will construct a new instance that is identical to this instance, except that it has specified content type, instead of current one.MapTypewithContentTypeHandler(Object h)Mutant factory method that will construct a new instance that is identical to this instance, except that it will have specified content type (element type for arrays, value type for Maps and so forth) handler assigned.MapTypewithContentValueHandler(Object h)Mutant factory method that will construct a new instance that is identical to this instance, except that it will have specified content value handler assigned.MapTypewithKeyType(JavaType keyType)MapTypewithKeyTypeHandler(Object h)MapTypewithKeyValueHandler(Object h)MapTypewithStaticTyping()Method that can be called to get a type instance that indicates that values of the type should be handled using "static typing" for purposes of serialization (as opposed to "dynamic" aka runtime typing): meaning that no runtime information is needed for determining serializers to use.MapTypewithTypeHandler(Object h)"Copy method" that will construct a new instance that is identical to this instance, except that it will have specified type handler assigned.MapTypewithValueHandler(Object h)Mutant factory method that will construct a new instance that is identical to this instance, except that it will have specified value handler assigned.-
Methods inherited from class com.fasterxml.jackson.databind.type.MapLikeType
buildCanonicalName, equals, getContentType, getContentTypeHandler, getContentValueHandler, getErasedSignature, getGenericSignature, getKeyType, hasHandlers, isContainerType, isMapLikeType, isTrueMapType, upgradeFrom, withHandlersFrom
-
Methods inherited from class com.fasterxml.jackson.databind.type.TypeBase
_bogusSuperClass, _classSignature, containedType, containedTypeCount, containedTypeName, findSuperType, findTypeParameters, getBindings, getInterfaces, getSuperClass, serialize, serializeWithType, toCanonical
-
Methods inherited from class com.fasterxml.jackson.databind.JavaType
containedTypeOrUnknown, forcedNarrowBy, getErasedSignature, getGenericSignature, getParameterSource, getRawClass, getReferencedType, getTypeHandler, getValueHandler, hasContentType, hasGenericTypes, hashCode, hasRawClass, hasValueHandler, isAbstract, isArrayType, isCollectionLikeType, isConcrete, isEnumType, isFinal, isInterface, isJavaLangObject, isPrimitive, isThrowable, isTypeOrSubTypeOf, isTypeOrSuperTypeOf, useStaticType
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.reflect.Type
getTypeName
-
-
-
-
Method Detail
-
construct
public static MapType construct(Class<?> rawType, TypeBindings bindings, JavaType superClass, JavaType[] superInts, JavaType keyT, JavaType valueT)
- Since:
- 2.7
-
construct
@Deprecated public static MapType construct(Class<?> rawType, JavaType keyT, JavaType valueT)
Deprecated.
-
_narrow
@Deprecated protected JavaType _narrow(Class<?> subclass)
Deprecated.- Overrides:
_narrowin classMapLikeType
-
withTypeHandler
public MapType withTypeHandler(Object h)
Description copied from class:JavaType"Copy method" that will construct a new instance that is identical to this instance, except that it will have specified type handler assigned.- Overrides:
withTypeHandlerin classMapLikeType- Returns:
- Newly created type instance
-
withContentTypeHandler
public MapType withContentTypeHandler(Object h)
Description copied from class:JavaTypeMutant factory method that will construct a new instance that is identical to this instance, except that it will have specified content type (element type for arrays, value type for Maps and so forth) handler assigned.- Overrides:
withContentTypeHandlerin classMapLikeType- Returns:
- Newly created type instance, with given
-
withValueHandler
public MapType withValueHandler(Object h)
Description copied from class:JavaTypeMutant factory method that will construct a new instance that is identical to this instance, except that it will have specified value handler assigned.- Overrides:
withValueHandlerin classMapLikeType- Returns:
- Newly created type instance
-
withContentValueHandler
public MapType withContentValueHandler(Object h)
Description copied from class:JavaTypeMutant factory method that will construct a new instance that is identical to this instance, except that it will have specified content value handler assigned.- Overrides:
withContentValueHandlerin classMapLikeType- Returns:
- Newly created type instance
-
withStaticTyping
public MapType withStaticTyping()
Description copied from class:JavaTypeMethod that can be called to get a type instance that indicates that values of the type should be handled using "static typing" for purposes of serialization (as opposed to "dynamic" aka runtime typing): meaning that no runtime information is needed for determining serializers to use. The main use case is to allow forcing of specific root value serialization type, and specifically in resolving serializers for contained types (element types for arrays, Collections and Maps).- Overrides:
withStaticTypingin classMapLikeType
-
withContentType
public JavaType withContentType(JavaType contentType)
Description copied from class:JavaTypeMutant factory method that may be called on structured types that have a so-called content type (element of arrays, value type of Maps, referenced type of referential types), and will construct a new instance that is identical to this instance, except that it has specified content type, instead of current one. If content type is already set to given type,thisis returned. If type does not have a content type (which is the case withSimpleType),IllegalArgumentExceptionwill be thrown.- Overrides:
withContentTypein classMapLikeType- Returns:
- Newly created type instance
-
withKeyType
public MapType withKeyType(JavaType keyType)
- Overrides:
withKeyTypein classMapLikeType
-
refine
public JavaType refine(Class<?> rawType, TypeBindings bindings, JavaType superClass, JavaType[] superInterfaces)
Description copied from class:JavaTypeMutant factory method that will try to create and return a sub-type instance for known parameterized types; for other types will return `null` to indicate that no just refinement makes necessary sense, without trying to detect special status through implemented interfaces.- Overrides:
refinein classMapLikeType
-
withKeyTypeHandler
public MapType withKeyTypeHandler(Object h)
- Overrides:
withKeyTypeHandlerin classMapLikeType
-
withKeyValueHandler
public MapType withKeyValueHandler(Object h)
- Overrides:
withKeyValueHandlerin classMapLikeType
-
toString
public String toString()
- Overrides:
toStringin classMapLikeType
-
-