Class IterationType
- 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.IterationType
-
- All Implemented Interfaces:
JsonSerializable,java.io.Serializable,java.lang.reflect.Type
public class IterationType extends SimpleType
SpecializedSimpleTypefor types that are allow iteration over Collection(-like) types: this includes types likeIterator. Iterated (content) type is accessible usinggetContentType().- Since:
- 2.16
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.fasterxml.jackson.databind.JsonSerializable
JsonSerializable.Base
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IterationTypeconstruct(java.lang.Class<?> cls, TypeBindings bindings, JavaType superClass, JavaType[] superInts, JavaType iteratedType)JavaTypegetContentType()Method for accessing content type of this type, if type has such a thing: simple types do not, structured types do (like arrays, Collections and Maps)java.lang.StringBuildergetErasedSignature(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.StringBuildergetGenericSignature(java.lang.StringBuilder sb)booleanhasContentType()Accessor that allows determining whetherJavaType.getContentType()should return a non-null value (that is, there is a "content type") or not.booleanisIterationType()Method that returns true if this instance is of typeIterationType.JavaTyperefine(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.static IterationTypeupgradeFrom(JavaType baseType, JavaType iteratedType)Factory method that can be used to "upgrade" a basic type into iteration type; usually done viaTypeModifierJavaTypewithContentType(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.IterationTypewithContentTypeHandler(java.lang.Object h)Internal method that should not be used by any code outside of jackson-databind: only used internally by databind.IterationTypewithContentValueHandler(java.lang.Object h)Internal method that should not be used by any code outside of jackson-databind: only used internally by databind.IterationTypewithStaticTyping()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.IterationTypewithTypeHandler(java.lang.Object h)Internal method that should not be used by any code outside of jackson-databind: only used internally by databind.IterationTypewithValueHandler(java.lang.Object h)Internal method that should not be used by any code outside of jackson-databind: only used internally by databind.-
Methods inherited from class com.fasterxml.jackson.databind.type.SimpleType
construct, constructUnsafe, equals, isContainerType, toString
-
Methods inherited from class com.fasterxml.jackson.databind.type.TypeBase
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, getReferencedType, getTypeHandler, getValueHandler, hasGenericTypes, hasHandlers, hashCode, hasRawClass, hasValueHandler, isAbstract, isArrayType, isCollectionLikeType, isConcrete, isEnumImplType, isEnumType, isFinal, isInterface, isJavaLangObject, isMapLikeType, isPrimitive, isRecordType, isThrowable, isTypeOrSubTypeOf, isTypeOrSuperTypeOf, useStaticType, withHandlersFrom
-
Methods inherited from class com.fasterxml.jackson.core.type.ResolvedType
isReferenceType
-
-
-
-
Method Detail
-
upgradeFrom
public static IterationType upgradeFrom(JavaType baseType, JavaType iteratedType)
Factory method that can be used to "upgrade" a basic type into iteration type; usually done viaTypeModifier- Parameters:
baseType- Resolved non-iteration type (usuallySimpleType) that is being upgradediteratedType- Iterated type; usually the first and only type parameter, but not necessarily
-
construct
public static IterationType construct(java.lang.Class<?> cls, TypeBindings bindings, JavaType superClass, JavaType[] superInts, JavaType iteratedType)
-
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 classSimpleType- Returns:
- Newly created type instance
-
withTypeHandler
public IterationType withTypeHandler(java.lang.Object h)
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.
- Overrides:
withTypeHandlerin classSimpleType- Parameters:
h- Handler to pass to new instance created- Returns:
- Newly created type instance with same type information, specified handler
-
withContentTypeHandler
public IterationType withContentTypeHandler(java.lang.Object h)
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.
- Overrides:
withContentTypeHandlerin classSimpleType- Parameters:
h- Handler to pass to new instance created- Returns:
- Newly created type instance with same type information, specified handler
-
withValueHandler
public IterationType withValueHandler(java.lang.Object h)
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.
- Overrides:
withValueHandlerin classSimpleType- Parameters:
h- Handler to pass to new instance created- Returns:
- Newly created type instance with same type information, specified handler
-
withContentValueHandler
public IterationType withContentValueHandler(java.lang.Object h)
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.
- Overrides:
withContentValueHandlerin classSimpleType- Parameters:
h- Handler to pass to new instance created- Returns:
- Newly created type instance with same type information, specified handler
-
withStaticTyping
public IterationType 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 classSimpleType
-
refine
public JavaType refine(java.lang.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 classSimpleType
-
getContentType
public JavaType getContentType()
Description copied from class:ResolvedTypeMethod for accessing content type of this type, if type has such a thing: simple types do not, structured types do (like arrays, Collections and Maps)- Overrides:
getContentTypein classJavaType- Returns:
- Content type of this type, if any;
nullif none
-
hasContentType
public boolean hasContentType()
Description copied from class:JavaTypeAccessor 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:
hasContentTypein classSimpleType
-
isIterationType
public boolean isIterationType()
Description copied from class:JavaTypeMethod that returns true if this instance is of typeIterationType.- Overrides:
isIterationTypein classJavaType- Returns:
- True if this type is considered "iteration type"
-
getErasedSignature
public java.lang.StringBuilder getErasedSignature(java.lang.StringBuilder sb)
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.- Overrides:
getErasedSignaturein 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:
getGenericSignaturein classSimpleType- Parameters:
sb- StringBuilder to append signature to- Returns:
- StringBuilder that was passed in; returned to allow call chaining
-
-