Uses of Class
tools.jackson.databind.type.TypeBase
Packages that use TypeBase
Package
Description
-
Uses of TypeBase in tools.jackson.databind.type
Subclasses of TypeBase in tools.jackson.databind.typeModifier and TypeClassDescriptionfinal classArray types represent Java arrays, both primitive and object valued.classType that represents things that act similar toCollection; but may or may not be instances of that interface.final classType that represents Java Collection types (Lists, Sets).classSpecializedSimpleTypefor types that are allow iteration over Collection(-like) types: this includes types likeIterator.classType 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 classType that represents "true" Java Map types.classHelper type used when introspecting bindings for already resolved types, needed for specialization.classSpecializedSimpleTypefor types that are referential types, that is, values that can be dereferenced to another value (or null), of different type.classInternal placeholder type used for self-references.classSimple types are defined as anything other than one of recognized container types (arrays, Collections, Maps).Constructors in tools.jackson.databind.type with parameters of type TypeBaseModifierConstructorDescriptionprotectedCollectionLikeType(TypeBase base, JavaType elemT) protectedCollectionType(TypeBase base, JavaType elemT) protectedIterationType(TypeBase base, JavaType iteratedType) Constructor used when upgrading into this type (viaIterationType.upgradeFrom(tools.jackson.databind.JavaType, tools.jackson.databind.JavaType), the usual way forIterationTypes to come into existence.protectedMapLikeType(TypeBase base, JavaType keyT, JavaType valueT) protectedprotectedReferenceType(TypeBase base, JavaType refType) Constructor used when upgrading into this type (viaReferenceType.upgradeFrom(tools.jackson.databind.JavaType, tools.jackson.databind.JavaType), the usual way forReferenceTypes to come into existence.protectedSimpleType(TypeBase base) Simple copy-constructor, usually used when upgrading/refining a simple type into more specialized type.protectedCopy-constructor used when refining/upgrading type instances.