Improved build.xml
[vimdoclet.git] / sample / java.lang.reflect.WildcardType.txt
blobba0e68971ef2006d412bec668374cbda13b5da7a
1 *java.lang.reflect.WildcardType* *WildcardType* WildcardType represents a wildca
3 public interface interface WildcardType
5   implements |java.lang.reflect.Type|
7 |java.lang.reflect.WildcardType_Description|
8 |java.lang.reflect.WildcardType_Fields|
9 |java.lang.reflect.WildcardType_Constructors|
10 |java.lang.reflect.WildcardType_Methods|
12 ================================================================================
14 *java.lang.reflect.WildcardType_Methods*
15 |java.lang.reflect.WildcardType.getLowerBounds()|Returns an array of Type objec
16 |java.lang.reflect.WildcardType.getUpperBounds()|Returns an array of Type objec
18 *java.lang.reflect.WildcardType_Description*
20 WildcardType represents a wildcard type expression, such as ?, ? extends 
21 Number, or ? super Integer. 
24 *java.lang.reflect.WildcardType.getLowerBounds()*
26 public |java.lang.reflect.Type| getLowerBounds()
28 Returns an array of Type objects representing the lower bound(s) of this type 
29 variable. Note that if no lower bound is explicitly declared, the lower bound 
30 is the type of null. In this case, a zero length array is returned. 
32 For each lower bound B : 
34 if B is a parameterized type or a type variable, it is created, (see 
35 ParameterizedType(|java.lang.reflect.ParameterizedType|) for the details of the 
36 creation process for parameterized types). Otherwise, B is resolved. 
39     Returns: an array of Types representing the lower bound(s) of this type variable 
40 *java.lang.reflect.WildcardType.getUpperBounds()*
42 public |java.lang.reflect.Type| getUpperBounds()
44 Returns an array of Type objects representing the upper bound(s) of this type 
45 variable. Note that if no upper bound is explicitly declared, the upper bound 
46 is Object. 
48 For each upper bound B : 
50 if B is a parameterized type or a type variable, it is created, (see 
51 ParameterizedType(|java.lang.reflect.ParameterizedType|) for the details of the 
52 creation process for parameterized types). Otherwise, B is resolved. 
55     Returns: an array of Types representing the upper bound(s) of this type variable