@@ -4,31 +4,38 @@ methodWithDuplicate
44| AbstractCollection | addAll | Collection<? extends E> |
55| AbstractCollection | contains | Object |
66| AbstractCollection | containsAll | Collection<?> |
7+ | AbstractCollection | forEach | Consumer<? super E> |
78| AbstractCollection | remove | Object |
89| AbstractCollection | removeAll | Collection<?> |
910| AbstractCollection | retainAll | Collection<?> |
11+ | AbstractCollection | toArray | IntFunction<T[]> |
1012| AbstractCollection | toArray | T[] |
1113| AbstractCollection<E> | add | E |
1214| AbstractCollection<E> | addAll | Collection<? extends E> |
1315| AbstractCollection<E> | contains | Object |
1416| AbstractCollection<E> | containsAll | Collection<?> |
17+ | AbstractCollection<E> | forEach | Consumer<? super E> |
1518| AbstractCollection<E> | remove | Object |
1619| AbstractCollection<E> | removeAll | Collection<?> |
1720| AbstractCollection<E> | retainAll | Collection<?> |
21+ | AbstractCollection<E> | toArray | IntFunction<T[]> |
1822| AbstractCollection<E> | toArray | T[] |
1923| AbstractCollection<String> | add | String |
2024| AbstractCollection<String> | addAll | Collection<? extends String> |
2125| AbstractCollection<String> | contains | Object |
2226| AbstractCollection<String> | containsAll | Collection<?> |
27+ | AbstractCollection<String> | forEach | Consumer<? super String> |
2328| AbstractCollection<String> | remove | Object |
2429| AbstractCollection<String> | removeAll | Collection<?> |
2530| AbstractCollection<String> | retainAll | Collection<?> |
31+ | AbstractCollection<String> | toArray | IntFunction<T[]> |
2632| AbstractCollection<String> | toArray | T[] |
2733| AbstractList | add | E |
2834| AbstractList | add | int |
2935| AbstractList | addAll | Collection<? extends E> |
3036| AbstractList | addAll | int |
3137| AbstractList | equals | Object |
38+ | AbstractList | forEach | Consumer<? super E> |
3239| AbstractList | get | int |
3340| AbstractList | indexOf | Object |
3441| AbstractList | lastIndexOf | Object |
@@ -39,6 +46,7 @@ methodWithDuplicate
3946| AbstractList | set | int |
4047| AbstractList | subList | int |
4148| AbstractList | subListRangeCheck | int |
49+ | AbstractList | toArray | IntFunction<T[]> |
4250| AbstractList<E> | add | E |
4351| AbstractList<E> | add | int |
4452| AbstractList<E> | addAll | Collection<? extends E> |
@@ -58,7 +66,10 @@ methodWithDuplicate
5866| AbstractMap | containsKey | Object |
5967| AbstractMap | containsValue | Object |
6068| AbstractMap | equals | Object |
69+ | AbstractMap | forEach | BiConsumer<? super K,? super V> |
6170| AbstractMap | get | Object |
71+ | AbstractMap | getOrDefault | Object |
72+ | AbstractMap | getOrDefault | V |
6273| AbstractMap | put | K |
6374| AbstractMap | put | V |
6475| AbstractMap | putAll | Map<? extends K,? extends V> |
@@ -83,23 +94,53 @@ methodWithDuplicate
8394| AbstractMap<String,String> | containsKey | Object |
8495| AbstractMap<String,String> | containsValue | Object |
8596| AbstractMap<String,String> | equals | Object |
97+ | AbstractMap<String,String> | forEach | BiConsumer<? super String,? super String> |
8698| AbstractMap<String,String> | get | Object |
99+ | AbstractMap<String,String> | getOrDefault | Object |
100+ | AbstractMap<String,String> | getOrDefault | String |
87101| AbstractMap<String,String> | put | String |
88102| AbstractMap<String,String> | putAll | Map<? extends String,? extends String> |
89103| AbstractMap<String,String> | remove | Object |
90104| AbstractMutableCollection | add | E |
105+ | AbstractMutableCollection | forEach | Consumer<? super E> |
106+ | AbstractMutableCollection | removeIf | Predicate<? super E> |
107+ | AbstractMutableCollection | toArray | IntFunction<T[]> |
91108| AbstractMutableList | add | E |
92109| AbstractMutableList | add | int |
110+ | AbstractMutableList | forEach | Consumer<? super E> |
93111| AbstractMutableList | remove | int |
112+ | AbstractMutableList | removeIf | Predicate<? super E> |
113+ | AbstractMutableList | replaceAll | UnaryOperator<E> |
94114| AbstractMutableList | set | E |
95115| 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 |
96130| AbstractMutableMap | put | K |
97131| 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> |
98138| Collection | add | E |
99139| Collection | addAll | Collection<? extends E> |
100140| Collection | contains | Object |
101141| Collection | containsAll | Collection<?> |
102142| Collection | equals | Object |
143+ | Collection | forEach | Consumer<? super E> |
103144| Collection | remove | Object |
104145| Collection | removeAll | Collection<?> |
105146| Collection | removeIf | Predicate<? super E> |
@@ -165,6 +206,7 @@ methodWithDuplicate
165206| List | containsAll | Collection<?> |
166207| List | copyOf | Collection<? extends E> |
167208| List | equals | Object |
209+ | List | forEach | Consumer<? super E> |
168210| List | get | int |
169211| List | indexOf | Object |
170212| List | lastIndexOf | Object |
@@ -180,6 +222,7 @@ methodWithDuplicate
180222| List | set | int |
181223| List | sort | Comparator<? super E> |
182224| List | subList | int |
225+ | List | toArray | IntFunction<T[]> |
183226| List | toArray | T[] |
184227| List<E> | add | E |
185228| List<E> | add | int |
@@ -373,30 +416,48 @@ methodWithDuplicate
373416| Map<String,String> | replaceAll | BiFunction<? super String,? super String,? extends String> |
374417| MutableCollection | add | E |
375418| MutableCollection | addAll | Collection<? extends E> |
419+ | MutableCollection | contains | Object |
420+ | MutableCollection | containsAll | Collection<?> |
421+ | MutableCollection | forEach | Consumer<? super E> |
376422| MutableCollection | remove | Object |
377423| MutableCollection | removeAll | Collection<?> |
378424| MutableCollection | removeIf | Predicate<? super E> |
379425| MutableCollection | retainAll | Collection<?> |
426+ | MutableCollection | toArray | IntFunction<T[]> |
380427| MutableList | add | E |
381428| MutableList | add | int |
382429| MutableList | addAll | Collection<? extends E> |
383430| 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 |
384437| MutableList | listIterator | int |
385438| MutableList | remove | Object |
386439| MutableList | remove | int |
387440| MutableList | removeAll | Collection<?> |
441+ | MutableList | removeIf | Predicate<? super E> |
388442| MutableList | replaceAll | UnaryOperator<E> |
389443| MutableList | retainAll | Collection<?> |
390444| MutableList | set | E |
391445| MutableList | set | int |
392446| MutableList | sort | Comparator<? super E> |
393447| MutableList | subList | int |
448+ | MutableList | toArray | IntFunction<T[]> |
394449| MutableMap | compute | BiFunction<? super K,? super V,? extends V> |
395450| MutableMap | compute | K |
396451| MutableMap | computeIfAbsent | Function<? super K,? extends V> |
397452| MutableMap | computeIfAbsent | K |
398453| MutableMap | computeIfPresent | BiFunction<? super K,? super V,? extends V> |
399454| 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 |
400461| MutableMap | merge | BiFunction<? super V,? super V,? extends V> |
401462| MutableMap | merge | K |
402463| MutableMap | merge | V |
0 commit comments