Uses of Class
com.fasterxml.jackson.databind.type.TypeBase
-
Packages that use TypeBase Package Description com.fasterxml.jackson.databind.type -
-
Uses of TypeBase in com.fasterxml.jackson.databind.type
Subclasses of TypeBase in com.fasterxml.jackson.databind.type Modifier and Type Class Description classArrayTypeArray types represent Java arrays, both primitive and object valued.classCollectionLikeTypeType that represents things that act similar toCollection; but may or may not be instances of that interface.classCollectionTypeType that represents Java Collection types (Lists, Sets).classMapLikeTypeType 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.classMapTypeType that represents "true" Java Map types.classPlaceholderForTypeHelper type used when introspecting bindings for already resolved types, needed for specialization.classReferenceTypeSpecializedSimpleTypefor types that are referential types, that is, values that can be dereferenced to another value (or null), of different type.classResolvedRecursiveTypeInternal placeholder type used for self-references.classSimpleTypeSimple 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 TypeBase Constructor Description CollectionLikeType(TypeBase base, JavaType elemT)CollectionType(TypeBase base, JavaType elemT)MapLikeType(TypeBase base, JavaType keyT, JavaType valueT)MapType(TypeBase base, JavaType keyT, JavaType valueT)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 forReferenceTypes to come into existence.SimpleType(TypeBase base)Simple copy-constructor, usually used when upgrading/refining a simple type into more specialized type.TypeBase(TypeBase base)Copy-constructor used when refining/upgrading type instances.
-