public abstract class TypeReference<T> extends Object implements Comparable<TypeReference<T>>
com.fasterxml.jackson.core.type.ResolvedType implementation
(implemented by JavaType from "databind" bundle) to be used.
Class is based on ideas from
http://gafter.blogspot.com/2006/12/super-type-tokens.html,
Additional idea (from a suggestion made in comments of the article)
is to require bogus implementation of Comparable
(any such generic interface would do, as long as it forces a method
with generic type to be implemented).
to ensure that a Type argument is indeed given.
Usage is by sub-classing: here is one way to instantiate reference
to generic type List<Integer>:
TypeReference ref = new TypeReference<List<Integer>>() { };
which can be passed to methods that accept TypeReference, or resolved
using TypeFactory to obtain com.fasterxml.jackson.core.type.ResolvedType.| 限定符 | 构造器和说明 |
|---|---|
protected |
TypeReference() |
protected final Type _type
public Type getType()
public int compareTo(TypeReference<T> o)
Comparable) is to prevent constructing a
reference without type information.compareTo 在接口中 Comparable<TypeReference<T>>Copyright © 2022. All rights reserved.