Class ReferenceType
- 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.SimpleType
-
- com.fasterxml.jackson.databind.type.ReferenceType
-
- All Implemented Interfaces:
JsonSerializable
,java.io.Serializable
,java.lang.reflect.Type
public class ReferenceType extends SimpleType
SpecializedSimpleType
for types that are referential types, that is, values that can be dereferenced to another value (or null), of different type. Referenced type is accessible usinggetContentType()
.- Since:
- 2.6
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.fasterxml.jackson.databind.JsonSerializable
JsonSerializable.Base
-
-
Field Summary
Fields Modifier and Type Field Description protected JavaType
_anchorType
Essential type used for type ids, for example if type id is needed for referencing type with polymorphic handling.protected JavaType
_referencedType
-
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
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
ReferenceType(TypeBase base, JavaType refType)
Constructor used when upgrading into this type (viaupgradeFrom(com.fasterxml.jackson.databind.JavaType, com.fasterxml.jackson.databind.JavaType)
, the usual way forReferenceType
s to come into existence.protected
ReferenceType(java.lang.Class<?> cls, TypeBindings bindings, JavaType superClass, JavaType[] superInts, JavaType refType, JavaType anchorType, java.lang.Object valueHandler, java.lang.Object typeHandler, boolean asStatic)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected JavaType
_narrow(java.lang.Class<?> subclass)
Deprecated.protected java.lang.String
buildCanonicalName()
static ReferenceType
construct(java.lang.Class<?> cls, JavaType refType)
Deprecated.static ReferenceType
construct(java.lang.Class<?> cls, TypeBindings bindings, JavaType superClass, JavaType[] superInts, JavaType refType)
boolean
equals(java.lang.Object o)
JavaType
getAnchorType()
JavaType
getContentType()
java.lang.StringBuilder
getErasedSignature(java.lang.StringBuilder sb)
Method for accessing signature without generic type information, in form compatible with all versions of JVM, and specifically used for type descriptions when generating byte code.java.lang.StringBuilder
getGenericSignature(java.lang.StringBuilder sb)
JavaType
getReferencedType()
boolean
hasContentType()
Accessor that allows determining whetherJavaType.getContentType()
should return a non-null value (that is, there is a "content type") or not.boolean
isAnchorType()
Convenience accessor that allows checking whether this is the anchor type itself; if not, it must be one of supertypes that is also aReferenceType
boolean
isReferenceType()
JavaType
refine(java.lang.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.java.lang.String
toString()
static ReferenceType
upgradeFrom(JavaType baseType, JavaType refdType)
Factory method that can be used to "upgrade" a basic type into collection-like one; usually done viaTypeModifier
JavaType
withContentType(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.ReferenceType
withContentTypeHandler(java.lang.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.ReferenceType
withContentValueHandler(java.lang.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.ReferenceType
withStaticTyping()
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.ReferenceType
withTypeHandler(java.lang.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.ReferenceType
withValueHandler(java.lang.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.SimpleType
construct, constructUnsafe, isContainerType
-
Methods inherited from class com.fasterxml.jackson.databind.type.TypeBase
_bogusSuperClass, _classSignature, _hasNTypeParameters, containedType, containedTypeCount, containedTypeName, findSuperType, findTypeParameters, getBindings, getInterfaces, getSuperClass, serialize, serializeWithType, toCanonical
-
Methods inherited from class com.fasterxml.jackson.databind.JavaType
containedTypeOrUnknown, forcedNarrowBy, getContentTypeHandler, getContentValueHandler, getErasedSignature, getGenericSignature, getKeyType, getParameterSource, getRawClass, getTypeHandler, getValueHandler, hasGenericTypes, hasHandlers, hashCode, hasRawClass, hasValueHandler, isAbstract, isArrayType, isCollectionLikeType, isConcrete, isEnumImplType, isEnumType, isFinal, isInterface, isJavaLangObject, isMapLikeType, isPrimitive, isRecordType, isThrowable, isTypeOrSubTypeOf, isTypeOrSuperTypeOf, useStaticType, withHandlersFrom
-
-
-
-
Field Detail
-
_referencedType
protected final JavaType _referencedType
-
_anchorType
protected final JavaType _anchorType
Essential type used for type ids, for example if type id is needed for referencing type with polymorphic handling. Typically initialized when aSimpleType
is upgraded into reference type, but NOT changed if being sub-classed.- Since:
- 2.8
-
-
Constructor Detail
-
ReferenceType
protected ReferenceType(java.lang.Class<?> cls, TypeBindings bindings, JavaType superClass, JavaType[] superInts, JavaType refType, JavaType anchorType, java.lang.Object valueHandler, java.lang.Object typeHandler, boolean asStatic)
-
ReferenceType
protected ReferenceType(TypeBase base, JavaType refType)
Constructor used when upgrading into this type (viaupgradeFrom(com.fasterxml.jackson.databind.JavaType, com.fasterxml.jackson.databind.JavaType)
, the usual way forReferenceType
s to come into existence. Sets up what is considered the "base" reference type- Since:
- 2.7
-
-
Method Detail
-
upgradeFrom
public static ReferenceType upgradeFrom(JavaType baseType, JavaType refdType)
Factory method that can be used to "upgrade" a basic type into collection-like one; usually done viaTypeModifier
- Parameters:
baseType
- Resolved non-reference type (usuallySimpleType
) that is being upgradedrefdType
- Referenced type; usually the first and only type parameter, but not necessarily- Since:
- 2.7
-
construct
public static ReferenceType construct(java.lang.Class<?> cls, TypeBindings bindings, JavaType superClass, JavaType[] superInts, JavaType refType)
- Since:
- 2.7
-
construct
@Deprecated public static ReferenceType construct(java.lang.Class<?> cls, JavaType refType)
Deprecated.
-
withContentType
public JavaType withContentType(JavaType contentType)
Description copied from class:JavaType
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. If content type is already set to given type,this
is returned. If type does not have a content type (which is the case withSimpleType
),IllegalArgumentException
will be thrown.- Overrides:
withContentType
in classSimpleType
- Returns:
- Newly created type instance
-
withTypeHandler
public ReferenceType withTypeHandler(java.lang.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:
withTypeHandler
in classSimpleType
- Returns:
- Newly created type instance
-
withContentTypeHandler
public ReferenceType withContentTypeHandler(java.lang.Object h)
Description copied from class:JavaType
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.- Overrides:
withContentTypeHandler
in classSimpleType
- Returns:
- Newly created type instance, with given
-
withValueHandler
public ReferenceType withValueHandler(java.lang.Object h)
Description copied from class:JavaType
Mutant factory method that will construct a new instance that is identical to this instance, except that it will have specified value handler assigned.- Overrides:
withValueHandler
in classSimpleType
- Returns:
- Newly created type instance
-
withContentValueHandler
public ReferenceType withContentValueHandler(java.lang.Object h)
Description copied from class:JavaType
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.- Overrides:
withContentValueHandler
in classSimpleType
- Returns:
- Newly created type instance
-
withStaticTyping
public ReferenceType withStaticTyping()
Description copied from class:JavaType
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. 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:
withStaticTyping
in classSimpleType
-
refine
public JavaType refine(java.lang.Class<?> rawType, TypeBindings bindings, JavaType superClass, JavaType[] superInterfaces)
Description copied from class:JavaType
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.- Overrides:
refine
in classSimpleType
-
buildCanonicalName
protected java.lang.String buildCanonicalName()
- Overrides:
buildCanonicalName
in classSimpleType
-
_narrow
@Deprecated protected JavaType _narrow(java.lang.Class<?> subclass)
Deprecated.- Overrides:
_narrow
in classSimpleType
-
getContentType
public JavaType getContentType()
- Overrides:
getContentType
in classJavaType
-
getReferencedType
public JavaType getReferencedType()
- Overrides:
getReferencedType
in classJavaType
-
hasContentType
public boolean hasContentType()
Description copied from class:JavaType
Accessor that allows determining whetherJavaType.getContentType()
should return a non-null value (that is, there is a "content type") or not. True ifJavaType.isContainerType()
orResolvedType.isReferenceType()
return true.- Overrides:
hasContentType
in classSimpleType
-
isReferenceType
public boolean isReferenceType()
- Overrides:
isReferenceType
in classcom.fasterxml.jackson.core.type.ResolvedType
-
getErasedSignature
public java.lang.StringBuilder getErasedSignature(java.lang.StringBuilder sb)
Description copied from class:JavaType
Method for accessing signature without generic type information, in form compatible with all versions of JVM, and specifically used for type descriptions when generating byte code.- Overrides:
getErasedSignature
in classSimpleType
- Parameters:
sb
- StringBuilder to append signature to- Returns:
- StringBuilder that was passed in; returned to allow call chaining
-
getGenericSignature
public java.lang.StringBuilder getGenericSignature(java.lang.StringBuilder sb)
- Overrides:
getGenericSignature
in classSimpleType
- Parameters:
sb
- StringBuilder to append signature to- Returns:
- StringBuilder that was passed in; returned to allow call chaining
-
getAnchorType
public JavaType getAnchorType()
-
isAnchorType
public boolean isAnchorType()
Convenience accessor that allows checking whether this is the anchor type itself; if not, it must be one of supertypes that is also aReferenceType
-
toString
public java.lang.String toString()
- Overrides:
toString
in classSimpleType
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classSimpleType
-
-