java.lang.Object
tools.jackson.core.type.ResolvedType
tools.jackson.databind.JavaType
tools.jackson.databind.type.TypeBase
tools.jackson.databind.type.ResolvedRecursiveType
- All Implemented Interfaces:
Serializable,Type,JacksonSerializable
Internal placeholder type used for self-references.
- Since:
- 2.7
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface tools.jackson.databind.JacksonSerializable
JacksonSerializable.Base -
Field Summary
FieldsFields inherited from class tools.jackson.databind.type.TypeBase
_bindings, _superClass, _superInterfacesFields inherited from class tools.jackson.databind.JavaType
_asStatic, _class, _hash, _typeHandler, _valueHandler -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanMethod 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.Accessor for finding fully resolved parent class of this type, if it has one; null if not.final inthashCode()booleanrefine(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.voidsetReference(JavaType ref) toString()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.Internal method that should not be used by any code outside of jackson-databind: only used internally by databind.Internal method that should not be used by any code outside of jackson-databind: only used internally by databind.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.Internal method that should not be used by any code outside of jackson-databind: only used internally by databind.Internal method that should not be used by any code outside of jackson-databind: only used internally by databind.Methods inherited from class tools.jackson.databind.type.TypeBase
_classSignature, _hasNTypeParameters, buildCanonicalName, containedType, containedTypeCount, findSuperType, findTypeParameters, getInterfaces, serialize, serializeWithType, toCanonicalMethods inherited from class tools.jackson.databind.JavaType
containedTypeOrUnknown, getContentType, getContentTypeHandler, getContentValueHandler, getErasedSignature, getGenericSignature, getKeyType, getRawClass, getReferencedType, getTypeHandler, getValueHandler, hasContentType, hasGenericTypes, hasHandlers, hasRawClass, hasValueHandler, isAbstract, isArrayType, isCollectionLikeType, isConcrete, isEnumImplType, isEnumType, isFinal, isInterface, isIterationType, isJavaLangObject, isMapLikeType, isPrimitive, isRecordType, isThrowable, isTypeOrSubTypeOf, isTypeOrSuperTypeOf, useStaticType, withHandlersFromMethods inherited from class tools.jackson.core.type.ResolvedType
isReferenceTypeMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.lang.reflect.Type
getTypeName
-
Field Details
-
_referencedType
-
-
Constructor Details
-
ResolvedRecursiveType
-
-
Method Details
-
setReference
-
getSuperClass
Description copied from class:JavaTypeAccessor for finding fully resolved parent class of this type, if it has one; null if not.- Overrides:
getSuperClassin classTypeBase
-
getSelfReferencedType
-
getBindings
- Overrides:
getBindingsin classTypeBase
-
getGenericSignature
- Specified by:
getGenericSignaturein classTypeBase- Parameters:
sb- StringBuilder to append signature to- Returns:
- StringBuilder that was passed in; returned to allow call chaining
-
getErasedSignature
Description copied from class:JavaTypeMethod 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.- Specified by:
getErasedSignaturein classTypeBase- Parameters:
sb- StringBuilder to append signature to- Returns:
- StringBuilder that was passed in; returned to allow call chaining
-
withContentType
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.- Specified by:
withContentTypein classJavaType- Returns:
- Newly created type instance
-
withTypeHandler
Description copied from class:JavaTypeInternal method that should not be used by any code outside of jackson-databind: only used internally by databind. May be removed from Jackson 3.0.This mutant factory method will construct a new instance that is identical to this instance, except that it will have specified type handler assigned.
- Specified by:
withTypeHandlerin classJavaType- Parameters:
h- Handler to pass to new instance created- Returns:
- Newly created type instance with same type information, specified handler
-
withContentTypeHandler
Description copied from class:JavaTypeInternal method that should not be used by any code outside of jackson-databind: only used internally by databind. May be removed from Jackson 3.0.This mutant factory method 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.
- Specified by:
withContentTypeHandlerin classJavaType- Parameters:
h- Handler to pass to new instance created- Returns:
- Newly created type instance with same type information, specified handler
-
withValueHandler
Description copied from class:JavaTypeInternal method that should not be used by any code outside of jackson-databind: only used internally by databind. May be removed from Jackson 3.0.This mutant factory method will construct a new instance that is identical to this instance, except that it will have specified value handler assigned.
- Specified by:
withValueHandlerin classJavaType- Parameters:
h- Handler to pass to new instance created- Returns:
- Newly created type instance with same type information, specified handler
-
withContentValueHandler
Description copied from class:JavaTypeInternal method that should not be used by any code outside of jackson-databind: only used internally by databind. May be removed from Jackson 3.0.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.
- Specified by:
withContentValueHandlerin classJavaType- Parameters:
h- Handler to pass to new instance created- Returns:
- Newly created type instance with same type information, specified handler
-
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).- Specified by:
withStaticTypingin classJavaType
-
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. -
isContainerType
public boolean isContainerType()- Specified by:
isContainerTypein classJavaType- Returns:
- True if type represented is a container type; this includes array, Map and Collection types.
-
toString
-
equals
-
hashCode
public final int hashCode()
-