|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.codehaus.jackson.type.JavaType
org.codehaus.jackson.map.type.TypeBase
org.codehaus.jackson.map.type.SimpleType
public final class SimpleType
Simple types are defined as anything other than one of recognized container types (arrays, Collections, Maps). For our needs we need not know anything further, since we have no way of dealing with generic types other than Collections and Maps.
Field Summary | |
---|---|
protected String[] |
_typeNames
Names of generic type arguments for this type; will match values in _typeParameters |
protected JavaType[] |
_typeParameters
Generic type arguments for this type. |
Fields inherited from class org.codehaus.jackson.type.JavaType |
---|
_class, _hashCode, _typeHandler, _valueHandler |
Constructor Summary | |
---|---|
protected |
SimpleType(Class<?> cls)
|
protected |
SimpleType(Class<?> cls,
String[] typeNames,
JavaType[] typeParams)
|
Method Summary | |
---|---|
protected JavaType |
_narrow(Class<?> subclass)
|
protected String |
buildCanonicalName()
|
static SimpleType |
construct(Class<?> cls)
|
static SimpleType |
constructUnsafe(Class<?> raw)
Method used by core Jackson classes: NOT to be used by application code. |
JavaType |
containedType(int index)
Method for accessing definitions of contained ("child") types. |
int |
containedTypeCount()
Method for checking how many contained types this type has. |
String |
containedTypeName(int index)
Method for accessing name of type variable in indicated position. |
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)
|
boolean |
isContainerType()
|
JavaType |
narrowContentsBy(Class<?> subclass)
|
String |
toString()
|
JavaType |
widenContentsBy(Class<?> subclass)
|
JavaType |
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. |
SimpleType |
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. |
Methods inherited from class org.codehaus.jackson.map.type.TypeBase |
---|
_classSignature, copyHandlers, toCanonical |
Methods inherited from class org.codehaus.jackson.type.JavaType |
---|
_assertSubclass, _widen, forcedNarrowBy, getContentType, getErasedSignature, getGenericSignature, getKeyType, getRawClass, getTypeHandler, getValueHandler, hasGenericTypes, hashCode, hasRawClass, isAbstract, isArrayType, isCollectionLikeType, isConcrete, isEnumType, isFinal, isInterface, isMapLikeType, isPrimitive, isThrowable, narrowBy, setTypeHandler, setValueHandler, widenBy |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
protected final JavaType[] _typeParameters
protected final String[] _typeNames
_typeParameters
Constructor Detail |
---|
protected SimpleType(Class<?> cls)
protected SimpleType(Class<?> cls, String[] typeNames, JavaType[] typeParams)
Method Detail |
---|
public static SimpleType constructUnsafe(Class<?> raw)
NOTE: public only because it is called by ObjectMapper
which is
not in same package
protected JavaType _narrow(Class<?> subclass)
_narrow
in class JavaType
public JavaType narrowContentsBy(Class<?> subclass)
narrowContentsBy
in class JavaType
public JavaType widenContentsBy(Class<?> subclass)
widenContentsBy
in class JavaType
public static SimpleType construct(Class<?> cls)
public SimpleType withTypeHandler(Object h)
JavaType
withTypeHandler
in class JavaType
public JavaType withContentTypeHandler(Object h)
JavaType
withContentTypeHandler
in class JavaType
protected String buildCanonicalName()
buildCanonicalName
in class TypeBase
public boolean isContainerType()
isContainerType
in class JavaType
public int containedTypeCount()
JavaType
containedTypeCount
in class JavaType
public JavaType containedType(int index)
JavaType
containedType
in class JavaType
index
- Index of contained type to return
public String containedTypeName(int index)
JavaType
containedTypeName
in class JavaType
index
- Index of contained type to return
public StringBuilder getErasedSignature(StringBuilder sb)
JavaType
getErasedSignature
in class TypeBase
sb
- StringBuilder to append signature to
public StringBuilder getGenericSignature(StringBuilder sb)
getGenericSignature
in class TypeBase
sb
- StringBuilder to append signature to
public String toString()
toString
in class JavaType
public boolean equals(Object o)
equals
in class JavaType
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |