-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathtypes.expected
More file actions
32 lines (32 loc) · 1 KB
/
types.expected
File metadata and controls
32 lines (32 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
| Foo | Class |
| Gen | Class, GenericType, ParameterizedType |
| Gen<? extends Object> | Class, ParameterizedType |
| Gen<? extends String> | Class, ParameterizedType |
| Gen<? super String> | Class, ParameterizedType |
| Gen<? super Void> | Class, ParameterizedType |
| Gen<Gen<Integer>> | Class, ParameterizedType |
| Gen<Integer> | Class, ParameterizedType |
| Gen<Local<Integer>> | Class, ParameterizedType |
| Integer | Class |
| Integer[] | Array |
| Local | Class, GenericType, LocalClass, ParameterizedType |
| Local<Integer> | Class, LocalClass, ParameterizedType |
| Object | Class |
| String | Class |
| T | TypeVariable |
| U | TypeVariable |
| Unit | Class |
| Void | Class |
| boolean | PrimitiveType |
| byte | PrimitiveType |
| byte[] | Array |
| char | PrimitiveType |
| double | PrimitiveType |
| float | PrimitiveType |
| int | PrimitiveType |
| int[] | Array |
| long | PrimitiveType |
| long[] | Array |
| new Object(...) { ... } | AnonymousClass, LocalClass |
| short | PrimitiveType |
| short[] | Array |