Uses of Class
com.fasterxml.jackson.databind.type.TypeBase
Packages that use TypeBase
Package
Description
-
Uses of TypeBase in com.fasterxml.jackson.databind.type
Subclasses of TypeBase in com.fasterxml.jackson.databind.typeModifier and TypeClassDescriptionfinal class
Array types represent Java arrays, both primitive and object valued.class
Type that represents things that act similar toCollection
; but may or may not be instances of that interface.final class
Type that represents Java Collection types (Lists, Sets).class
SpecializedSimpleType
for types that are allow iteration over Collection(-like) types: this includes types likeIterator
.class
Type that represents Map-like types; things that consist of key/value pairs but that do not necessarily implementMap
, but that do not have enough introspection functionality to allow for some level of generic handling.final class
Type that represents "true" Java Map types.class
Helper type used when introspecting bindings for already resolved types, needed for specialization.class
SpecializedSimpleType
for types that are referential types, that is, values that can be dereferenced to another value (or null), of different type.class
Internal placeholder type used for self-references.class
Simple types are defined as anything other than one of recognized container types (arrays, Collections, Maps).Constructors in com.fasterxml.jackson.databind.type with parameters of type TypeBaseModifierConstructorDescriptionprotected
CollectionLikeType
(TypeBase base, JavaType elemT) protected
CollectionType
(TypeBase base, JavaType elemT) protected
IterationType
(TypeBase base, JavaType iteratedType) Constructor used when upgrading into this type (viaIterationType.upgradeFrom(com.fasterxml.jackson.databind.JavaType, com.fasterxml.jackson.databind.JavaType)
, the usual way forIterationType
s to come into existence.protected
MapLikeType
(TypeBase base, JavaType keyT, JavaType valueT) protected
protected
ReferenceType
(TypeBase base, JavaType refType) Constructor used when upgrading into this type (viaReferenceType.upgradeFrom(com.fasterxml.jackson.databind.JavaType, com.fasterxml.jackson.databind.JavaType)
, the usual way forReferenceType
s to come into existence.protected
SimpleType
(TypeBase base) Simple copy-constructor, usually used when upgrading/refining a simple type into more specialized type.protected
Copy-constructor used when refining/upgrading type instances.