@@ -4,31 +4,38 @@ methodWithDuplicate
4
4
| AbstractCollection | addAll | Collection<? extends E> |
5
5
| AbstractCollection | contains | Object |
6
6
| AbstractCollection | containsAll | Collection<?> |
7
+ | AbstractCollection | forEach | Consumer<? super E> |
7
8
| AbstractCollection | remove | Object |
8
9
| AbstractCollection | removeAll | Collection<?> |
9
10
| AbstractCollection | retainAll | Collection<?> |
11
+ | AbstractCollection | toArray | IntFunction<T[]> |
10
12
| AbstractCollection | toArray | T[] |
11
13
| AbstractCollection<E> | add | E |
12
14
| AbstractCollection<E> | addAll | Collection<? extends E> |
13
15
| AbstractCollection<E> | contains | Object |
14
16
| AbstractCollection<E> | containsAll | Collection<?> |
17
+ | AbstractCollection<E> | forEach | Consumer<? super E> |
15
18
| AbstractCollection<E> | remove | Object |
16
19
| AbstractCollection<E> | removeAll | Collection<?> |
17
20
| AbstractCollection<E> | retainAll | Collection<?> |
21
+ | AbstractCollection<E> | toArray | IntFunction<T[]> |
18
22
| AbstractCollection<E> | toArray | T[] |
19
23
| AbstractCollection<String> | add | String |
20
24
| AbstractCollection<String> | addAll | Collection<? extends String> |
21
25
| AbstractCollection<String> | contains | Object |
22
26
| AbstractCollection<String> | containsAll | Collection<?> |
27
+ | AbstractCollection<String> | forEach | Consumer<? super String> |
23
28
| AbstractCollection<String> | remove | Object |
24
29
| AbstractCollection<String> | removeAll | Collection<?> |
25
30
| AbstractCollection<String> | retainAll | Collection<?> |
31
+ | AbstractCollection<String> | toArray | IntFunction<T[]> |
26
32
| AbstractCollection<String> | toArray | T[] |
27
33
| AbstractList | add | E |
28
34
| AbstractList | add | int |
29
35
| AbstractList | addAll | Collection<? extends E> |
30
36
| AbstractList | addAll | int |
31
37
| AbstractList | equals | Object |
38
+ | AbstractList | forEach | Consumer<? super E> |
32
39
| AbstractList | get | int |
33
40
| AbstractList | indexOf | Object |
34
41
| AbstractList | lastIndexOf | Object |
@@ -39,6 +46,7 @@ methodWithDuplicate
39
46
| AbstractList | set | int |
40
47
| AbstractList | subList | int |
41
48
| AbstractList | subListRangeCheck | int |
49
+ | AbstractList | toArray | IntFunction<T[]> |
42
50
| AbstractList<E> | add | E |
43
51
| AbstractList<E> | add | int |
44
52
| AbstractList<E> | addAll | Collection<? extends E> |
@@ -58,7 +66,10 @@ methodWithDuplicate
58
66
| AbstractMap | containsKey | Object |
59
67
| AbstractMap | containsValue | Object |
60
68
| AbstractMap | equals | Object |
69
+ | AbstractMap | forEach | BiConsumer<? super K,? super V> |
61
70
| AbstractMap | get | Object |
71
+ | AbstractMap | getOrDefault | Object |
72
+ | AbstractMap | getOrDefault | V |
62
73
| AbstractMap | put | K |
63
74
| AbstractMap | put | V |
64
75
| AbstractMap | putAll | Map<? extends K,? extends V> |
@@ -83,23 +94,53 @@ methodWithDuplicate
83
94
| AbstractMap<String,String> | containsKey | Object |
84
95
| AbstractMap<String,String> | containsValue | Object |
85
96
| AbstractMap<String,String> | equals | Object |
97
+ | AbstractMap<String,String> | forEach | BiConsumer<? super String,? super String> |
86
98
| AbstractMap<String,String> | get | Object |
99
+ | AbstractMap<String,String> | getOrDefault | Object |
100
+ | AbstractMap<String,String> | getOrDefault | String |
87
101
| AbstractMap<String,String> | put | String |
88
102
| AbstractMap<String,String> | putAll | Map<? extends String,? extends String> |
89
103
| AbstractMap<String,String> | remove | Object |
90
104
| AbstractMutableCollection | add | E |
105
+ | AbstractMutableCollection | forEach | Consumer<? super E> |
106
+ | AbstractMutableCollection | removeIf | Predicate<? super E> |
107
+ | AbstractMutableCollection | toArray | IntFunction<T[]> |
91
108
| AbstractMutableList | add | E |
92
109
| AbstractMutableList | add | int |
110
+ | AbstractMutableList | forEach | Consumer<? super E> |
93
111
| AbstractMutableList | remove | int |
112
+ | AbstractMutableList | removeIf | Predicate<? super E> |
113
+ | AbstractMutableList | replaceAll | UnaryOperator<E> |
94
114
| AbstractMutableList | set | E |
95
115
| AbstractMutableList | set | int |
116
+ | AbstractMutableList | sort | Comparator<? super E> |
117
+ | AbstractMutableList | toArray | IntFunction<T[]> |
118
+ | AbstractMutableMap | compute | BiFunction<? super K,? super V,? extends V> |
119
+ | AbstractMutableMap | compute | K |
120
+ | AbstractMutableMap | computeIfAbsent | Function<? super K,? extends V> |
121
+ | AbstractMutableMap | computeIfAbsent | K |
122
+ | AbstractMutableMap | computeIfPresent | BiFunction<? super K,? super V,? extends V> |
123
+ | AbstractMutableMap | computeIfPresent | K |
124
+ | AbstractMutableMap | forEach | BiConsumer<? super K,? super V> |
125
+ | AbstractMutableMap | getOrDefault | Object |
126
+ | AbstractMutableMap | getOrDefault | V |
127
+ | AbstractMutableMap | merge | BiFunction<? super V,? super V,? extends V> |
128
+ | AbstractMutableMap | merge | K |
129
+ | AbstractMutableMap | merge | V |
96
130
| AbstractMutableMap | put | K |
97
131
| AbstractMutableMap | put | V |
132
+ | AbstractMutableMap | putIfAbsent | K |
133
+ | AbstractMutableMap | putIfAbsent | V |
134
+ | AbstractMutableMap | remove | Object |
135
+ | AbstractMutableMap | replace | K |
136
+ | AbstractMutableMap | replace | V |
137
+ | AbstractMutableMap | replaceAll | BiFunction<? super K,? super V,? extends V> |
98
138
| Collection | add | E |
99
139
| Collection | addAll | Collection<? extends E> |
100
140
| Collection | contains | Object |
101
141
| Collection | containsAll | Collection<?> |
102
142
| Collection | equals | Object |
143
+ | Collection | forEach | Consumer<? super E> |
103
144
| Collection | remove | Object |
104
145
| Collection | removeAll | Collection<?> |
105
146
| Collection | removeIf | Predicate<? super E> |
@@ -165,6 +206,7 @@ methodWithDuplicate
165
206
| List | containsAll | Collection<?> |
166
207
| List | copyOf | Collection<? extends E> |
167
208
| List | equals | Object |
209
+ | List | forEach | Consumer<? super E> |
168
210
| List | get | int |
169
211
| List | indexOf | Object |
170
212
| List | lastIndexOf | Object |
@@ -180,6 +222,7 @@ methodWithDuplicate
180
222
| List | set | int |
181
223
| List | sort | Comparator<? super E> |
182
224
| List | subList | int |
225
+ | List | toArray | IntFunction<T[]> |
183
226
| List | toArray | T[] |
184
227
| List<E> | add | E |
185
228
| List<E> | add | int |
@@ -373,30 +416,48 @@ methodWithDuplicate
373
416
| Map<String,String> | replaceAll | BiFunction<? super String,? super String,? extends String> |
374
417
| MutableCollection | add | E |
375
418
| MutableCollection | addAll | Collection<? extends E> |
419
+ | MutableCollection | contains | Object |
420
+ | MutableCollection | containsAll | Collection<?> |
421
+ | MutableCollection | forEach | Consumer<? super E> |
376
422
| MutableCollection | remove | Object |
377
423
| MutableCollection | removeAll | Collection<?> |
378
424
| MutableCollection | removeIf | Predicate<? super E> |
379
425
| MutableCollection | retainAll | Collection<?> |
426
+ | MutableCollection | toArray | IntFunction<T[]> |
380
427
| MutableList | add | E |
381
428
| MutableList | add | int |
382
429
| MutableList | addAll | Collection<? extends E> |
383
430
| MutableList | addAll | int |
431
+ | MutableList | contains | Object |
432
+ | MutableList | containsAll | Collection<?> |
433
+ | MutableList | forEach | Consumer<? super E> |
434
+ | MutableList | get | int |
435
+ | MutableList | indexOf | Object |
436
+ | MutableList | lastIndexOf | Object |
384
437
| MutableList | listIterator | int |
385
438
| MutableList | remove | Object |
386
439
| MutableList | remove | int |
387
440
| MutableList | removeAll | Collection<?> |
441
+ | MutableList | removeIf | Predicate<? super E> |
388
442
| MutableList | replaceAll | UnaryOperator<E> |
389
443
| MutableList | retainAll | Collection<?> |
390
444
| MutableList | set | E |
391
445
| MutableList | set | int |
392
446
| MutableList | sort | Comparator<? super E> |
393
447
| MutableList | subList | int |
448
+ | MutableList | toArray | IntFunction<T[]> |
394
449
| MutableMap | compute | BiFunction<? super K,? super V,? extends V> |
395
450
| MutableMap | compute | K |
396
451
| MutableMap | computeIfAbsent | Function<? super K,? extends V> |
397
452
| MutableMap | computeIfAbsent | K |
398
453
| MutableMap | computeIfPresent | BiFunction<? super K,? super V,? extends V> |
399
454
| MutableMap | computeIfPresent | K |
455
+ | MutableMap | containsKey | Object |
456
+ | MutableMap | containsValue | Object |
457
+ | MutableMap | forEach | BiConsumer<? super K,? super V> |
458
+ | MutableMap | get | Object |
459
+ | MutableMap | getOrDefault | Object |
460
+ | MutableMap | getOrDefault | V |
400
461
| MutableMap | merge | BiFunction<? super V,? super V,? extends V> |
401
462
| MutableMap | merge | K |
402
463
| MutableMap | merge | V |
0 commit comments