| java.lang.reflect.WildcardType
WildcardType | public interface WildcardType extends Type(Code) | | Represents a wildcard type, such as ? or
? extends Comparable .
since: 1.5 |
Method Summary | |
Type[] | getLowerBounds() Gets the array of types that represent the lower bounds of this type. | Type[] | getUpperBounds() Gets the array of types that represent the upper bounds of this type. |
getLowerBounds | Type[] getLowerBounds()(Code) | | Gets the array of types that represent the lower bounds of this type. The
default lower bound is null , in which case a empty array
is returned.
An array of Type instances. throws: TypeNotPresentException - if the component type points to a missing type. throws: MalformedParameterizedTypeException - if the component type points to a type that can't beinstantiated for some reason. |
|
|