public class ReferenceType extends SimpleType
SimpleType for types that are referential types,
that is, values that can be dereferenced to another value (or null),
of different type.
Referenced type is accessible using JavaType.getContentType().JsonSerializable.Base| Modifier and Type | Field and Description |
|---|---|
protected JavaType |
_referencedType |
_typeNames, _typeParameters, _typeParametersFor_asStatic, _class, _hash, _typeHandler, _valueHandler| Modifier | Constructor and Description |
|---|---|
protected |
ReferenceType(Class<?> cls,
JavaType refType,
Object valueHandler,
Object typeHandler,
boolean asStatic) |
| Modifier and Type | Method and Description |
|---|---|
protected JavaType |
_narrow(Class<?> subclass) |
protected String |
buildCanonicalName() |
static ReferenceType |
construct(Class<?> cls,
JavaType refType,
Object valueHandler,
Object typeHandler) |
JavaType |
containedType(int index) |
int |
containedTypeCount() |
String |
containedTypeName(int index) |
boolean |
equals(Object o) |
StringBuilder |
getErasedSignature(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.
|
StringBuilder |
getGenericSignature(StringBuilder sb) |
Class<?> |
getParameterSource() |
JavaType |
getReferencedType() |
boolean |
isReferenceType() |
String |
toString() |
ReferenceType |
withContentTypeHandler(Object h)
"Copy method" that will construct a new instance that is identical to
this instance, except that its content type will have specified
type handler assigned.
|
ReferenceType |
withContentValueHandler(Object h)
"Copy method" that will construct a new instance that is identical to
this instance, except that it will have specified content value handler assigned.
|
ReferenceType |
withStaticTyping()
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.
|
ReferenceType |
withTypeHandler(Object h)
"Copy method" that will construct a new instance that is identical to
this instance, except that it will have specified type handler assigned.
|
ReferenceType |
withValueHandler(Object h)
"Copy method" that will construct a new instance that is identical to
this instance, except that it will have specified value handler assigned.
|
construct, constructUnsafe, isContainerType, narrowContentsBy, widenContentsBy_classSignature, getTypeHandler, getValueHandler, serialize, serializeWithType, toCanonical_assertSubclass, _widen, containedTypeOrUnknown, forcedNarrowBy, getContentType, getErasedSignature, getGenericSignature, getKeyType, getRawClass, hasGenericTypes, hashCode, hasRawClass, hasValueHandler, isAbstract, isArrayType, isCollectionLikeType, isConcrete, isEnumType, isFinal, isInterface, isJavaLangObject, isMapLikeType, isPrimitive, isThrowable, isTypeOrSubTypeOf, narrowBy, useStaticType, widenByclone, finalize, getClass, notify, notifyAll, wait, wait, waitgetTypeNameprotected final JavaType _referencedType
public static ReferenceType construct(Class<?> cls, JavaType refType, Object valueHandler, Object typeHandler)
public ReferenceType withTypeHandler(Object h)
JavaTypewithTypeHandler in class SimpleTypepublic ReferenceType withContentTypeHandler(Object h)
JavaTypewithContentTypeHandler in class SimpleTypepublic ReferenceType withValueHandler(Object h)
JavaTypewithValueHandler in class SimpleTypepublic ReferenceType withContentValueHandler(Object h)
JavaTypewithContentValueHandler in class SimpleTypepublic ReferenceType withStaticTyping()
JavaTypewithStaticTyping in class SimpleTypeprotected String buildCanonicalName()
buildCanonicalName in class SimpleTypeprotected JavaType _narrow(Class<?> subclass)
_narrow in class SimpleTypepublic JavaType getReferencedType()
getReferencedType in class JavaTypepublic boolean isReferenceType()
isReferenceType in class com.fasterxml.jackson.core.type.ResolvedTypepublic int containedTypeCount()
containedTypeCount in class SimpleTypepublic JavaType containedType(int index)
containedType in class SimpleTypepublic String containedTypeName(int index)
containedTypeName in class SimpleTypepublic Class<?> getParameterSource()
getParameterSource in class SimpleTypepublic StringBuilder getErasedSignature(StringBuilder sb)
JavaTypegetErasedSignature in class SimpleTypesb - StringBuilder to append signature topublic StringBuilder getGenericSignature(StringBuilder sb)
getGenericSignature in class SimpleTypesb - StringBuilder to append signature topublic String toString()
toString in class SimpleTypepublic boolean equals(Object o)
equals in class SimpleTypeCopyright © 2014–2015 FasterXML. All rights reserved.