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