智能客服
你问我答,随时在线为你解决问题
public interface WildcardType extends Type |
Since:
1.5Methods inherited from interface java.lang.reflect.Type |
|---|
Type[] getUpperBounds()
Returns an array of Type objects representing the upper bound(s) of this type variable. Note that if no upper bound is explicitly declared, the upper bound is Object.For each upper bound B :
Returns:
an array of Types representing the upper bound(s) of this type variable
Throws:
Throw Name | Throw Description |
|---|---|
if any of the bounds refers to a non-existent type declaration | |
if any of the bounds refer to a parameterized type that cannot be instantiated for any reason |
Type[] getLowerBounds()
Returns an array of Type objects representing the lower bound(s) of this type variable. Note that if no lower bound is explicitly declared, the lower bound is the type of null. In this case, a zero length array is returned.For each lower bound B :
Returns:
an array of Types representing the lower bound(s) of this type variable
Throws:
Throw Name | Throw Description |
|---|---|
if any of the bounds refers to a non-existent type declaration | |
if any of the bounds refer to a parameterized type that cannot be instantiated for any reason |