1 /*
2  * Copyright (C) 2014 The Android Open Source Project
3  * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This code is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License version 2 only, as
8  * published by the Free Software Foundation.  Oracle designates this
9  * particular file as subject to the "Classpath" exception as provided
10  * by Oracle in the LICENSE file that accompanied this code.
11  *
12  * This code is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15  * version 2 for more details (a copy is included in the LICENSE file that
16  * accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License version
19  * 2 along with this work; if not, write to the Free Software Foundation,
20  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
21  *
22  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
23  * or visit www.oracle.com if you need additional information or have any
24  * questions.
25  */
26 
27 
28 package java.util;
29 
30 import java.lang.reflect.Array;
31 import java.util.concurrent.ForkJoinPool;
32 import java.util.function.BinaryOperator;
33 import java.util.function.LongBinaryOperator;
34 import java.util.function.DoubleBinaryOperator;
35 import java.util.function.IntBinaryOperator;
36 import java.util.stream.Stream;
37 import java.util.stream.IntStream;
38 import java.util.stream.LongStream;
39 import java.util.stream.DoubleStream;
40 
41 @SuppressWarnings({"unchecked", "deprecation", "all"})
42 public class Arrays {
43 
Arrays()44 Arrays() { throw new RuntimeException("Stub!"); }
45 
sort(int @libcore.util.NonNull [] a)46 public static void sort(int @libcore.util.NonNull [] a) { throw new RuntimeException("Stub!"); }
47 
sort(int @libcore.util.NonNull [] a, int fromIndex, int toIndex)48 public static void sort(int @libcore.util.NonNull [] a, int fromIndex, int toIndex) { throw new RuntimeException("Stub!"); }
49 
sort(long @libcore.util.NonNull [] a)50 public static void sort(long @libcore.util.NonNull [] a) { throw new RuntimeException("Stub!"); }
51 
sort(long @libcore.util.NonNull [] a, int fromIndex, int toIndex)52 public static void sort(long @libcore.util.NonNull [] a, int fromIndex, int toIndex) { throw new RuntimeException("Stub!"); }
53 
sort(short @libcore.util.NonNull [] a)54 public static void sort(short @libcore.util.NonNull [] a) { throw new RuntimeException("Stub!"); }
55 
sort(short @libcore.util.NonNull [] a, int fromIndex, int toIndex)56 public static void sort(short @libcore.util.NonNull [] a, int fromIndex, int toIndex) { throw new RuntimeException("Stub!"); }
57 
sort(char @libcore.util.NonNull [] a)58 public static void sort(char @libcore.util.NonNull [] a) { throw new RuntimeException("Stub!"); }
59 
sort(char @libcore.util.NonNull [] a, int fromIndex, int toIndex)60 public static void sort(char @libcore.util.NonNull [] a, int fromIndex, int toIndex) { throw new RuntimeException("Stub!"); }
61 
sort(byte @libcore.util.NonNull [] a)62 public static void sort(byte @libcore.util.NonNull [] a) { throw new RuntimeException("Stub!"); }
63 
sort(byte @libcore.util.NonNull [] a, int fromIndex, int toIndex)64 public static void sort(byte @libcore.util.NonNull [] a, int fromIndex, int toIndex) { throw new RuntimeException("Stub!"); }
65 
sort(float @libcore.util.NonNull [] a)66 public static void sort(float @libcore.util.NonNull [] a) { throw new RuntimeException("Stub!"); }
67 
sort(float @libcore.util.NonNull [] a, int fromIndex, int toIndex)68 public static void sort(float @libcore.util.NonNull [] a, int fromIndex, int toIndex) { throw new RuntimeException("Stub!"); }
69 
sort(double @libcore.util.NonNull [] a)70 public static void sort(double @libcore.util.NonNull [] a) { throw new RuntimeException("Stub!"); }
71 
sort(double @libcore.util.NonNull [] a, int fromIndex, int toIndex)72 public static void sort(double @libcore.util.NonNull [] a, int fromIndex, int toIndex) { throw new RuntimeException("Stub!"); }
73 
parallelSort(byte @libcore.util.NonNull [] a)74 public static void parallelSort(byte @libcore.util.NonNull [] a) { throw new RuntimeException("Stub!"); }
75 
parallelSort(byte @libcore.util.NonNull [] a, int fromIndex, int toIndex)76 public static void parallelSort(byte @libcore.util.NonNull [] a, int fromIndex, int toIndex) { throw new RuntimeException("Stub!"); }
77 
parallelSort(char @libcore.util.NonNull [] a)78 public static void parallelSort(char @libcore.util.NonNull [] a) { throw new RuntimeException("Stub!"); }
79 
parallelSort(char @libcore.util.NonNull [] a, int fromIndex, int toIndex)80 public static void parallelSort(char @libcore.util.NonNull [] a, int fromIndex, int toIndex) { throw new RuntimeException("Stub!"); }
81 
parallelSort(short @libcore.util.NonNull [] a)82 public static void parallelSort(short @libcore.util.NonNull [] a) { throw new RuntimeException("Stub!"); }
83 
parallelSort(short @libcore.util.NonNull [] a, int fromIndex, int toIndex)84 public static void parallelSort(short @libcore.util.NonNull [] a, int fromIndex, int toIndex) { throw new RuntimeException("Stub!"); }
85 
parallelSort(int @libcore.util.NonNull [] a)86 public static void parallelSort(int @libcore.util.NonNull [] a) { throw new RuntimeException("Stub!"); }
87 
parallelSort(int @libcore.util.NonNull [] a, int fromIndex, int toIndex)88 public static void parallelSort(int @libcore.util.NonNull [] a, int fromIndex, int toIndex) { throw new RuntimeException("Stub!"); }
89 
parallelSort(long @libcore.util.NonNull [] a)90 public static void parallelSort(long @libcore.util.NonNull [] a) { throw new RuntimeException("Stub!"); }
91 
parallelSort(long @libcore.util.NonNull [] a, int fromIndex, int toIndex)92 public static void parallelSort(long @libcore.util.NonNull [] a, int fromIndex, int toIndex) { throw new RuntimeException("Stub!"); }
93 
parallelSort(float @libcore.util.NonNull [] a)94 public static void parallelSort(float @libcore.util.NonNull [] a) { throw new RuntimeException("Stub!"); }
95 
parallelSort(float @libcore.util.NonNull [] a, int fromIndex, int toIndex)96 public static void parallelSort(float @libcore.util.NonNull [] a, int fromIndex, int toIndex) { throw new RuntimeException("Stub!"); }
97 
parallelSort(double @libcore.util.NonNull [] a)98 public static void parallelSort(double @libcore.util.NonNull [] a) { throw new RuntimeException("Stub!"); }
99 
parallelSort(double @libcore.util.NonNull [] a, int fromIndex, int toIndex)100 public static void parallelSort(double @libcore.util.NonNull [] a, int fromIndex, int toIndex) { throw new RuntimeException("Stub!"); }
101 
parallelSort(T @ibcore.util.NonNull [] a)102 public static <T extends java.lang.Comparable<? super T>> void parallelSort(T @libcore.util.NonNull [] a) { throw new RuntimeException("Stub!"); }
103 
parallelSort(T @ibcore.util.NonNull [] a, int fromIndex, int toIndex)104 public static <T extends java.lang.Comparable<? super T>> void parallelSort(T @libcore.util.NonNull [] a, int fromIndex, int toIndex) { throw new RuntimeException("Stub!"); }
105 
parallelSort(T @ibcore.util.NonNull [] a, @libcore.util.Nullable java.util.Comparator<? super @libcore.util.NullFromTypeParam T> cmp)106 public static <T> void parallelSort(T @libcore.util.NonNull [] a, @libcore.util.Nullable java.util.Comparator<? super @libcore.util.NullFromTypeParam T> cmp) { throw new RuntimeException("Stub!"); }
107 
parallelSort(T @ibcore.util.NonNull [] a, int fromIndex, int toIndex, @libcore.util.Nullable java.util.Comparator<? super @libcore.util.NullFromTypeParam T> cmp)108 public static <T> void parallelSort(T @libcore.util.NonNull [] a, int fromIndex, int toIndex, @libcore.util.Nullable java.util.Comparator<? super @libcore.util.NullFromTypeParam T> cmp) { throw new RuntimeException("Stub!"); }
109 
sort(java.lang.@ibcore.util.NonNull Object @ibcore.util.NonNull [] a)110 public static void sort(java.lang.@libcore.util.NonNull Object @libcore.util.NonNull [] a) { throw new RuntimeException("Stub!"); }
111 
sort(java.lang.@ibcore.util.NonNull Object @ibcore.util.NonNull [] a, int fromIndex, int toIndex)112 public static void sort(java.lang.@libcore.util.NonNull Object @libcore.util.NonNull [] a, int fromIndex, int toIndex) { throw new RuntimeException("Stub!"); }
113 
sort(T @ibcore.util.NonNull [] a, @libcore.util.Nullable java.util.Comparator<? super @libcore.util.NullFromTypeParam T> c)114 public static <T> void sort(T @libcore.util.NonNull [] a, @libcore.util.Nullable java.util.Comparator<? super @libcore.util.NullFromTypeParam T> c) { throw new RuntimeException("Stub!"); }
115 
sort(T @ibcore.util.NonNull [] a, int fromIndex, int toIndex, @libcore.util.Nullable java.util.Comparator<? super @libcore.util.NullFromTypeParam T> c)116 public static <T> void sort(T @libcore.util.NonNull [] a, int fromIndex, int toIndex, @libcore.util.Nullable java.util.Comparator<? super @libcore.util.NullFromTypeParam T> c) { throw new RuntimeException("Stub!"); }
117 
parallelPrefix(T @ibcore.util.NonNull [] array, @libcore.util.NonNull java.util.function.BinaryOperator<@libcore.util.NullFromTypeParam T> op)118 public static <T> void parallelPrefix(T @libcore.util.NonNull [] array, @libcore.util.NonNull java.util.function.BinaryOperator<@libcore.util.NullFromTypeParam T> op) { throw new RuntimeException("Stub!"); }
119 
parallelPrefix(T @ibcore.util.NonNull [] array, int fromIndex, int toIndex, @libcore.util.NonNull java.util.function.BinaryOperator<@libcore.util.NullFromTypeParam T> op)120 public static <T> void parallelPrefix(T @libcore.util.NonNull [] array, int fromIndex, int toIndex, @libcore.util.NonNull java.util.function.BinaryOperator<@libcore.util.NullFromTypeParam T> op) { throw new RuntimeException("Stub!"); }
121 
parallelPrefix(long @libcore.util.NonNull [] array, @libcore.util.NonNull java.util.function.LongBinaryOperator op)122 public static void parallelPrefix(long @libcore.util.NonNull [] array, @libcore.util.NonNull java.util.function.LongBinaryOperator op) { throw new RuntimeException("Stub!"); }
123 
parallelPrefix(long @libcore.util.NonNull [] array, int fromIndex, int toIndex, @libcore.util.NonNull java.util.function.LongBinaryOperator op)124 public static void parallelPrefix(long @libcore.util.NonNull [] array, int fromIndex, int toIndex, @libcore.util.NonNull java.util.function.LongBinaryOperator op) { throw new RuntimeException("Stub!"); }
125 
parallelPrefix(double @libcore.util.NonNull [] array, @libcore.util.NonNull java.util.function.DoubleBinaryOperator op)126 public static void parallelPrefix(double @libcore.util.NonNull [] array, @libcore.util.NonNull java.util.function.DoubleBinaryOperator op) { throw new RuntimeException("Stub!"); }
127 
parallelPrefix(double @libcore.util.NonNull [] array, int fromIndex, int toIndex, @libcore.util.NonNull java.util.function.DoubleBinaryOperator op)128 public static void parallelPrefix(double @libcore.util.NonNull [] array, int fromIndex, int toIndex, @libcore.util.NonNull java.util.function.DoubleBinaryOperator op) { throw new RuntimeException("Stub!"); }
129 
parallelPrefix(int @libcore.util.NonNull [] array, @libcore.util.NonNull java.util.function.IntBinaryOperator op)130 public static void parallelPrefix(int @libcore.util.NonNull [] array, @libcore.util.NonNull java.util.function.IntBinaryOperator op) { throw new RuntimeException("Stub!"); }
131 
parallelPrefix(int @libcore.util.NonNull [] array, int fromIndex, int toIndex, @libcore.util.NonNull java.util.function.IntBinaryOperator op)132 public static void parallelPrefix(int @libcore.util.NonNull [] array, int fromIndex, int toIndex, @libcore.util.NonNull java.util.function.IntBinaryOperator op) { throw new RuntimeException("Stub!"); }
133 
binarySearch(long @libcore.util.NonNull [] a, long key)134 public static int binarySearch(long @libcore.util.NonNull [] a, long key) { throw new RuntimeException("Stub!"); }
135 
binarySearch(long @libcore.util.NonNull [] a, int fromIndex, int toIndex, long key)136 public static int binarySearch(long @libcore.util.NonNull [] a, int fromIndex, int toIndex, long key) { throw new RuntimeException("Stub!"); }
137 
binarySearch(int @libcore.util.NonNull [] a, int key)138 public static int binarySearch(int @libcore.util.NonNull [] a, int key) { throw new RuntimeException("Stub!"); }
139 
binarySearch(int @libcore.util.NonNull [] a, int fromIndex, int toIndex, int key)140 public static int binarySearch(int @libcore.util.NonNull [] a, int fromIndex, int toIndex, int key) { throw new RuntimeException("Stub!"); }
141 
binarySearch(short @libcore.util.NonNull [] a, short key)142 public static int binarySearch(short @libcore.util.NonNull [] a, short key) { throw new RuntimeException("Stub!"); }
143 
binarySearch(short @libcore.util.NonNull [] a, int fromIndex, int toIndex, short key)144 public static int binarySearch(short @libcore.util.NonNull [] a, int fromIndex, int toIndex, short key) { throw new RuntimeException("Stub!"); }
145 
binarySearch(char @libcore.util.NonNull [] a, char key)146 public static int binarySearch(char @libcore.util.NonNull [] a, char key) { throw new RuntimeException("Stub!"); }
147 
binarySearch(char @libcore.util.NonNull [] a, int fromIndex, int toIndex, char key)148 public static int binarySearch(char @libcore.util.NonNull [] a, int fromIndex, int toIndex, char key) { throw new RuntimeException("Stub!"); }
149 
binarySearch(byte @libcore.util.NonNull [] a, byte key)150 public static int binarySearch(byte @libcore.util.NonNull [] a, byte key) { throw new RuntimeException("Stub!"); }
151 
binarySearch(byte @libcore.util.NonNull [] a, int fromIndex, int toIndex, byte key)152 public static int binarySearch(byte @libcore.util.NonNull [] a, int fromIndex, int toIndex, byte key) { throw new RuntimeException("Stub!"); }
153 
binarySearch(double @libcore.util.NonNull [] a, double key)154 public static int binarySearch(double @libcore.util.NonNull [] a, double key) { throw new RuntimeException("Stub!"); }
155 
binarySearch(double @libcore.util.NonNull [] a, int fromIndex, int toIndex, double key)156 public static int binarySearch(double @libcore.util.NonNull [] a, int fromIndex, int toIndex, double key) { throw new RuntimeException("Stub!"); }
157 
binarySearch(float @libcore.util.NonNull [] a, float key)158 public static int binarySearch(float @libcore.util.NonNull [] a, float key) { throw new RuntimeException("Stub!"); }
159 
binarySearch(float @libcore.util.NonNull [] a, int fromIndex, int toIndex, float key)160 public static int binarySearch(float @libcore.util.NonNull [] a, int fromIndex, int toIndex, float key) { throw new RuntimeException("Stub!"); }
161 
binarySearch(java.lang.@ibcore.util.NonNull Object @ibcore.util.NonNull [] a, @libcore.util.NonNull java.lang.Object key)162 public static int binarySearch(java.lang.@libcore.util.NonNull Object @libcore.util.NonNull [] a, @libcore.util.NonNull java.lang.Object key) { throw new RuntimeException("Stub!"); }
163 
binarySearch(java.lang.@ibcore.util.NonNull Object @ibcore.util.NonNull [] a, int fromIndex, int toIndex, @libcore.util.NonNull java.lang.Object key)164 public static int binarySearch(java.lang.@libcore.util.NonNull Object @libcore.util.NonNull [] a, int fromIndex, int toIndex, @libcore.util.NonNull java.lang.Object key) { throw new RuntimeException("Stub!"); }
165 
binarySearch(T @ibcore.util.NonNull [] a, @libcore.util.NullFromTypeParam T key, @libcore.util.Nullable java.util.Comparator<? super @libcore.util.NullFromTypeParam T> c)166 public static <T> int binarySearch(T @libcore.util.NonNull [] a, @libcore.util.NullFromTypeParam T key, @libcore.util.Nullable java.util.Comparator<? super @libcore.util.NullFromTypeParam T> c) { throw new RuntimeException("Stub!"); }
167 
binarySearch(T @ibcore.util.NonNull [] a, int fromIndex, int toIndex, @libcore.util.NullFromTypeParam T key, @libcore.util.Nullable java.util.Comparator<? super @libcore.util.NullFromTypeParam T> c)168 public static <T> int binarySearch(T @libcore.util.NonNull [] a, int fromIndex, int toIndex, @libcore.util.NullFromTypeParam T key, @libcore.util.Nullable java.util.Comparator<? super @libcore.util.NullFromTypeParam T> c) { throw new RuntimeException("Stub!"); }
169 
equals(long @libcore.util.Nullable [] a, long @libcore.util.Nullable [] a2)170 public static boolean equals(long @libcore.util.Nullable [] a, long @libcore.util.Nullable [] a2) { throw new RuntimeException("Stub!"); }
171 
equals(int @libcore.util.Nullable [] a, int @libcore.util.Nullable [] a2)172 public static boolean equals(int @libcore.util.Nullable [] a, int @libcore.util.Nullable [] a2) { throw new RuntimeException("Stub!"); }
173 
equals(short @libcore.util.Nullable [] a, short @libcore.util.Nullable [] a2)174 public static boolean equals(short @libcore.util.Nullable [] a, short @libcore.util.Nullable [] a2) { throw new RuntimeException("Stub!"); }
175 
equals(char @libcore.util.Nullable [] a, char @libcore.util.Nullable [] a2)176 public static boolean equals(char @libcore.util.Nullable [] a, char @libcore.util.Nullable [] a2) { throw new RuntimeException("Stub!"); }
177 
equals(byte @libcore.util.Nullable [] a, byte @libcore.util.Nullable [] a2)178 public static boolean equals(byte @libcore.util.Nullable [] a, byte @libcore.util.Nullable [] a2) { throw new RuntimeException("Stub!"); }
179 
equals(boolean @libcore.util.Nullable [] a, boolean @libcore.util.Nullable [] a2)180 public static boolean equals(boolean @libcore.util.Nullable [] a, boolean @libcore.util.Nullable [] a2) { throw new RuntimeException("Stub!"); }
181 
equals(double @libcore.util.Nullable [] a, double @libcore.util.Nullable [] a2)182 public static boolean equals(double @libcore.util.Nullable [] a, double @libcore.util.Nullable [] a2) { throw new RuntimeException("Stub!"); }
183 
equals(float @libcore.util.Nullable [] a, float @libcore.util.Nullable [] a2)184 public static boolean equals(float @libcore.util.Nullable [] a, float @libcore.util.Nullable [] a2) { throw new RuntimeException("Stub!"); }
185 
equals(java.lang.@ibcore.util.Nullable Object @ibcore.util.Nullable [] a, java.lang.@libcore.util.Nullable Object @libcore.util.Nullable [] a2)186 public static boolean equals(java.lang.@libcore.util.Nullable Object @libcore.util.Nullable [] a, java.lang.@libcore.util.Nullable Object @libcore.util.Nullable [] a2) { throw new RuntimeException("Stub!"); }
187 
fill(long @libcore.util.NonNull [] a, long val)188 public static void fill(long @libcore.util.NonNull [] a, long val) { throw new RuntimeException("Stub!"); }
189 
fill(long @libcore.util.NonNull [] a, int fromIndex, int toIndex, long val)190 public static void fill(long @libcore.util.NonNull [] a, int fromIndex, int toIndex, long val) { throw new RuntimeException("Stub!"); }
191 
fill(int @libcore.util.NonNull [] a, int val)192 public static void fill(int @libcore.util.NonNull [] a, int val) { throw new RuntimeException("Stub!"); }
193 
fill(int @libcore.util.NonNull [] a, int fromIndex, int toIndex, int val)194 public static void fill(int @libcore.util.NonNull [] a, int fromIndex, int toIndex, int val) { throw new RuntimeException("Stub!"); }
195 
fill(short @libcore.util.NonNull [] a, short val)196 public static void fill(short @libcore.util.NonNull [] a, short val) { throw new RuntimeException("Stub!"); }
197 
fill(short @libcore.util.NonNull [] a, int fromIndex, int toIndex, short val)198 public static void fill(short @libcore.util.NonNull [] a, int fromIndex, int toIndex, short val) { throw new RuntimeException("Stub!"); }
199 
fill(char @libcore.util.NonNull [] a, char val)200 public static void fill(char @libcore.util.NonNull [] a, char val) { throw new RuntimeException("Stub!"); }
201 
fill(char @libcore.util.NonNull [] a, int fromIndex, int toIndex, char val)202 public static void fill(char @libcore.util.NonNull [] a, int fromIndex, int toIndex, char val) { throw new RuntimeException("Stub!"); }
203 
fill(byte @libcore.util.NonNull [] a, byte val)204 public static void fill(byte @libcore.util.NonNull [] a, byte val) { throw new RuntimeException("Stub!"); }
205 
fill(byte @libcore.util.NonNull [] a, int fromIndex, int toIndex, byte val)206 public static void fill(byte @libcore.util.NonNull [] a, int fromIndex, int toIndex, byte val) { throw new RuntimeException("Stub!"); }
207 
fill(boolean @libcore.util.NonNull [] a, boolean val)208 public static void fill(boolean @libcore.util.NonNull [] a, boolean val) { throw new RuntimeException("Stub!"); }
209 
fill(boolean @libcore.util.NonNull [] a, int fromIndex, int toIndex, boolean val)210 public static void fill(boolean @libcore.util.NonNull [] a, int fromIndex, int toIndex, boolean val) { throw new RuntimeException("Stub!"); }
211 
fill(double @libcore.util.NonNull [] a, double val)212 public static void fill(double @libcore.util.NonNull [] a, double val) { throw new RuntimeException("Stub!"); }
213 
fill(double @libcore.util.NonNull [] a, int fromIndex, int toIndex, double val)214 public static void fill(double @libcore.util.NonNull [] a, int fromIndex, int toIndex, double val) { throw new RuntimeException("Stub!"); }
215 
fill(float @libcore.util.NonNull [] a, float val)216 public static void fill(float @libcore.util.NonNull [] a, float val) { throw new RuntimeException("Stub!"); }
217 
fill(float @libcore.util.NonNull [] a, int fromIndex, int toIndex, float val)218 public static void fill(float @libcore.util.NonNull [] a, int fromIndex, int toIndex, float val) { throw new RuntimeException("Stub!"); }
219 
fill(java.lang.@ibcore.util.Nullable Object @ibcore.util.NonNull [] a, @libcore.util.Nullable java.lang.Object val)220 public static void fill(java.lang.@libcore.util.Nullable Object @libcore.util.NonNull [] a, @libcore.util.Nullable java.lang.Object val) { throw new RuntimeException("Stub!"); }
221 
fill(java.lang.@ibcore.util.Nullable Object @ibcore.util.NonNull [] a, int fromIndex, int toIndex, @libcore.util.Nullable java.lang.Object val)222 public static void fill(java.lang.@libcore.util.Nullable Object @libcore.util.NonNull [] a, int fromIndex, int toIndex, @libcore.util.Nullable java.lang.Object val) { throw new RuntimeException("Stub!"); }
223 
copyOf(T @ibcore.util.NonNull [] original, int newLength)224 public static <T> T @libcore.util.NonNull [] copyOf(T @libcore.util.NonNull [] original, int newLength) { throw new RuntimeException("Stub!"); }
225 
copyOf(U @ibcore.util.NonNull [] original, int newLength, @libcore.util.NonNull java.lang.Class<? extends T[]> newType)226 public static <T, U> T @libcore.util.NonNull [] copyOf(U @libcore.util.NonNull [] original, int newLength, @libcore.util.NonNull java.lang.Class<? extends T[]> newType) { throw new RuntimeException("Stub!"); }
227 
copyOf(byte @libcore.util.NonNull [] original, int newLength)228 public static byte @libcore.util.NonNull [] copyOf(byte @libcore.util.NonNull [] original, int newLength) { throw new RuntimeException("Stub!"); }
229 
copyOf(short @libcore.util.NonNull [] original, int newLength)230 public static short @libcore.util.NonNull [] copyOf(short @libcore.util.NonNull [] original, int newLength) { throw new RuntimeException("Stub!"); }
231 
copyOf(int @libcore.util.NonNull [] original, int newLength)232 public static int @libcore.util.NonNull [] copyOf(int @libcore.util.NonNull [] original, int newLength) { throw new RuntimeException("Stub!"); }
233 
copyOf(long @libcore.util.NonNull [] original, int newLength)234 public static long @libcore.util.NonNull [] copyOf(long @libcore.util.NonNull [] original, int newLength) { throw new RuntimeException("Stub!"); }
235 
copyOf(char @libcore.util.NonNull [] original, int newLength)236 public static char @libcore.util.NonNull [] copyOf(char @libcore.util.NonNull [] original, int newLength) { throw new RuntimeException("Stub!"); }
237 
copyOf(float @libcore.util.NonNull [] original, int newLength)238 public static float @libcore.util.NonNull [] copyOf(float @libcore.util.NonNull [] original, int newLength) { throw new RuntimeException("Stub!"); }
239 
copyOf(double @libcore.util.NonNull [] original, int newLength)240 public static double @libcore.util.NonNull [] copyOf(double @libcore.util.NonNull [] original, int newLength) { throw new RuntimeException("Stub!"); }
241 
copyOf(boolean @libcore.util.NonNull [] original, int newLength)242 public static boolean @libcore.util.NonNull [] copyOf(boolean @libcore.util.NonNull [] original, int newLength) { throw new RuntimeException("Stub!"); }
243 
copyOfRange(T @ibcore.util.NonNull [] original, int from, int to)244 public static <T> T @libcore.util.NonNull [] copyOfRange(T @libcore.util.NonNull [] original, int from, int to) { throw new RuntimeException("Stub!"); }
245 
copyOfRange(U @ibcore.util.NonNull [] original, int from, int to, @libcore.util.NonNull java.lang.Class<? extends T[]> newType)246 public static <T, U> T @libcore.util.NonNull [] copyOfRange(U @libcore.util.NonNull [] original, int from, int to, @libcore.util.NonNull java.lang.Class<? extends T[]> newType) { throw new RuntimeException("Stub!"); }
247 
copyOfRange(byte @libcore.util.NonNull [] original, int from, int to)248 public static byte @libcore.util.NonNull [] copyOfRange(byte @libcore.util.NonNull [] original, int from, int to) { throw new RuntimeException("Stub!"); }
249 
copyOfRange(short @libcore.util.NonNull [] original, int from, int to)250 public static short @libcore.util.NonNull [] copyOfRange(short @libcore.util.NonNull [] original, int from, int to) { throw new RuntimeException("Stub!"); }
251 
copyOfRange(int @libcore.util.NonNull [] original, int from, int to)252 public static int @libcore.util.NonNull [] copyOfRange(int @libcore.util.NonNull [] original, int from, int to) { throw new RuntimeException("Stub!"); }
253 
copyOfRange(long @libcore.util.NonNull [] original, int from, int to)254 public static long @libcore.util.NonNull [] copyOfRange(long @libcore.util.NonNull [] original, int from, int to) { throw new RuntimeException("Stub!"); }
255 
copyOfRange(char @libcore.util.NonNull [] original, int from, int to)256 public static char @libcore.util.NonNull [] copyOfRange(char @libcore.util.NonNull [] original, int from, int to) { throw new RuntimeException("Stub!"); }
257 
copyOfRange(float @libcore.util.NonNull [] original, int from, int to)258 public static float @libcore.util.NonNull [] copyOfRange(float @libcore.util.NonNull [] original, int from, int to) { throw new RuntimeException("Stub!"); }
259 
copyOfRange(double @libcore.util.NonNull [] original, int from, int to)260 public static double @libcore.util.NonNull [] copyOfRange(double @libcore.util.NonNull [] original, int from, int to) { throw new RuntimeException("Stub!"); }
261 
copyOfRange(boolean @libcore.util.NonNull [] original, int from, int to)262 public static boolean @libcore.util.NonNull [] copyOfRange(boolean @libcore.util.NonNull [] original, int from, int to) { throw new RuntimeException("Stub!"); }
263 
264 @java.lang.SafeVarargs
asList(T @ibcore.util.NonNull .... a)265 @libcore.util.NonNull public static <T> java.util.List<@libcore.util.NullFromTypeParam T> asList(T @libcore.util.NonNull ... a) { throw new RuntimeException("Stub!"); }
266 
hashCode(long @libcore.util.Nullable [] a)267 public static int hashCode(long @libcore.util.Nullable [] a) { throw new RuntimeException("Stub!"); }
268 
hashCode(int @libcore.util.Nullable [] a)269 public static int hashCode(int @libcore.util.Nullable [] a) { throw new RuntimeException("Stub!"); }
270 
hashCode(short @libcore.util.Nullable [] a)271 public static int hashCode(short @libcore.util.Nullable [] a) { throw new RuntimeException("Stub!"); }
272 
hashCode(char @libcore.util.Nullable [] a)273 public static int hashCode(char @libcore.util.Nullable [] a) { throw new RuntimeException("Stub!"); }
274 
hashCode(byte @libcore.util.Nullable [] a)275 public static int hashCode(byte @libcore.util.Nullable [] a) { throw new RuntimeException("Stub!"); }
276 
hashCode(boolean @libcore.util.Nullable [] a)277 public static int hashCode(boolean @libcore.util.Nullable [] a) { throw new RuntimeException("Stub!"); }
278 
hashCode(float @libcore.util.Nullable [] a)279 public static int hashCode(float @libcore.util.Nullable [] a) { throw new RuntimeException("Stub!"); }
280 
hashCode(double @libcore.util.Nullable [] a)281 public static int hashCode(double @libcore.util.Nullable [] a) { throw new RuntimeException("Stub!"); }
282 
hashCode(java.lang.@ibcore.util.Nullable Object @ibcore.util.Nullable [] a)283 public static int hashCode(java.lang.@libcore.util.Nullable Object @libcore.util.Nullable [] a) { throw new RuntimeException("Stub!"); }
284 
deepHashCode(java.lang.@ibcore.util.Nullable Object @ibcore.util.Nullable [] a)285 public static int deepHashCode(java.lang.@libcore.util.Nullable Object @libcore.util.Nullable [] a) { throw new RuntimeException("Stub!"); }
286 
deepEquals(java.lang.@ibcore.util.Nullable Object @ibcore.util.Nullable [] a1, java.lang.@libcore.util.Nullable Object @libcore.util.Nullable [] a2)287 public static boolean deepEquals(java.lang.@libcore.util.Nullable Object @libcore.util.Nullable [] a1, java.lang.@libcore.util.Nullable Object @libcore.util.Nullable [] a2) { throw new RuntimeException("Stub!"); }
288 
toString(long @libcore.util.Nullable [] a)289 @libcore.util.NonNull public static java.lang.String toString(long @libcore.util.Nullable [] a) { throw new RuntimeException("Stub!"); }
290 
toString(int @libcore.util.Nullable [] a)291 @libcore.util.NonNull public static java.lang.String toString(int @libcore.util.Nullable [] a) { throw new RuntimeException("Stub!"); }
292 
toString(short @libcore.util.Nullable [] a)293 @libcore.util.NonNull public static java.lang.String toString(short @libcore.util.Nullable [] a) { throw new RuntimeException("Stub!"); }
294 
toString(char @libcore.util.Nullable [] a)295 @libcore.util.NonNull public static java.lang.String toString(char @libcore.util.Nullable [] a) { throw new RuntimeException("Stub!"); }
296 
toString(byte @libcore.util.Nullable [] a)297 @libcore.util.NonNull public static java.lang.String toString(byte @libcore.util.Nullable [] a) { throw new RuntimeException("Stub!"); }
298 
toString(boolean @libcore.util.Nullable [] a)299 @libcore.util.NonNull public static java.lang.String toString(boolean @libcore.util.Nullable [] a) { throw new RuntimeException("Stub!"); }
300 
toString(float @libcore.util.Nullable [] a)301 @libcore.util.NonNull public static java.lang.String toString(float @libcore.util.Nullable [] a) { throw new RuntimeException("Stub!"); }
302 
toString(double @libcore.util.Nullable [] a)303 @libcore.util.NonNull public static java.lang.String toString(double @libcore.util.Nullable [] a) { throw new RuntimeException("Stub!"); }
304 
toString(java.lang.@ibcore.util.Nullable Object @ibcore.util.Nullable [] a)305 @libcore.util.NonNull public static java.lang.String toString(java.lang.@libcore.util.Nullable Object @libcore.util.Nullable [] a) { throw new RuntimeException("Stub!"); }
306 
deepToString(java.lang.@ibcore.util.Nullable Object @ibcore.util.Nullable [] a)307 @libcore.util.NonNull public static java.lang.String deepToString(java.lang.@libcore.util.Nullable Object @libcore.util.Nullable [] a) { throw new RuntimeException("Stub!"); }
308 
setAll(T @ibcore.util.NonNull [] array, @libcore.util.NonNull java.util.function.IntFunction<? extends @libcore.util.NullFromTypeParam T> generator)309 public static <T> void setAll(T @libcore.util.NonNull [] array, @libcore.util.NonNull java.util.function.IntFunction<? extends @libcore.util.NullFromTypeParam T> generator) { throw new RuntimeException("Stub!"); }
310 
parallelSetAll(T @ibcore.util.NonNull [] array, @libcore.util.NonNull java.util.function.IntFunction<? extends @libcore.util.NullFromTypeParam T> generator)311 public static <T> void parallelSetAll(T @libcore.util.NonNull [] array, @libcore.util.NonNull java.util.function.IntFunction<? extends @libcore.util.NullFromTypeParam T> generator) { throw new RuntimeException("Stub!"); }
312 
setAll(int @libcore.util.NonNull [] array, @libcore.util.NonNull java.util.function.IntUnaryOperator generator)313 public static void setAll(int @libcore.util.NonNull [] array, @libcore.util.NonNull java.util.function.IntUnaryOperator generator) { throw new RuntimeException("Stub!"); }
314 
parallelSetAll(int @libcore.util.NonNull [] array, @libcore.util.NonNull java.util.function.IntUnaryOperator generator)315 public static void parallelSetAll(int @libcore.util.NonNull [] array, @libcore.util.NonNull java.util.function.IntUnaryOperator generator) { throw new RuntimeException("Stub!"); }
316 
setAll(long @libcore.util.NonNull [] array, @libcore.util.NonNull java.util.function.IntToLongFunction generator)317 public static void setAll(long @libcore.util.NonNull [] array, @libcore.util.NonNull java.util.function.IntToLongFunction generator) { throw new RuntimeException("Stub!"); }
318 
parallelSetAll(long @libcore.util.NonNull [] array, @libcore.util.NonNull java.util.function.IntToLongFunction generator)319 public static void parallelSetAll(long @libcore.util.NonNull [] array, @libcore.util.NonNull java.util.function.IntToLongFunction generator) { throw new RuntimeException("Stub!"); }
320 
setAll(double @libcore.util.NonNull [] array, @libcore.util.NonNull java.util.function.IntToDoubleFunction generator)321 public static void setAll(double @libcore.util.NonNull [] array, @libcore.util.NonNull java.util.function.IntToDoubleFunction generator) { throw new RuntimeException("Stub!"); }
322 
parallelSetAll(double @libcore.util.NonNull [] array, @libcore.util.NonNull java.util.function.IntToDoubleFunction generator)323 public static void parallelSetAll(double @libcore.util.NonNull [] array, @libcore.util.NonNull java.util.function.IntToDoubleFunction generator) { throw new RuntimeException("Stub!"); }
324 
spliterator(T @ibcore.util.NonNull [] array)325 @libcore.util.NonNull public static <T> java.util.Spliterator<@libcore.util.NullFromTypeParam T> spliterator(T @libcore.util.NonNull [] array) { throw new RuntimeException("Stub!"); }
326 
spliterator(T @ibcore.util.NonNull [] array, int startInclusive, int endExclusive)327 @libcore.util.NonNull public static <T> java.util.Spliterator<@libcore.util.NullFromTypeParam T> spliterator(T @libcore.util.NonNull [] array, int startInclusive, int endExclusive) { throw new RuntimeException("Stub!"); }
328 
spliterator(int @libcore.util.NonNull [] array)329 @libcore.util.NonNull public static java.util.Spliterator.OfInt spliterator(int @libcore.util.NonNull [] array) { throw new RuntimeException("Stub!"); }
330 
spliterator(int @libcore.util.NonNull [] array, int startInclusive, int endExclusive)331 @libcore.util.NonNull public static java.util.Spliterator.OfInt spliterator(int @libcore.util.NonNull [] array, int startInclusive, int endExclusive) { throw new RuntimeException("Stub!"); }
332 
spliterator(long @libcore.util.NonNull [] array)333 @libcore.util.NonNull public static java.util.Spliterator.OfLong spliterator(long @libcore.util.NonNull [] array) { throw new RuntimeException("Stub!"); }
334 
spliterator(long @libcore.util.NonNull [] array, int startInclusive, int endExclusive)335 @libcore.util.NonNull public static java.util.Spliterator.OfLong spliterator(long @libcore.util.NonNull [] array, int startInclusive, int endExclusive) { throw new RuntimeException("Stub!"); }
336 
spliterator(double @libcore.util.NonNull [] array)337 @libcore.util.NonNull public static java.util.Spliterator.OfDouble spliterator(double @libcore.util.NonNull [] array) { throw new RuntimeException("Stub!"); }
338 
spliterator(double @libcore.util.NonNull [] array, int startInclusive, int endExclusive)339 @libcore.util.NonNull public static java.util.Spliterator.OfDouble spliterator(double @libcore.util.NonNull [] array, int startInclusive, int endExclusive) { throw new RuntimeException("Stub!"); }
340 
stream(T @ibcore.util.NonNull [] array)341 @libcore.util.NonNull public static <T> java.util.stream.Stream<@libcore.util.NullFromTypeParam T> stream(T @libcore.util.NonNull [] array) { throw new RuntimeException("Stub!"); }
342 
stream(T @ibcore.util.NonNull [] array, int startInclusive, int endExclusive)343 @libcore.util.NonNull public static <T> java.util.stream.Stream<@libcore.util.NullFromTypeParam T> stream(T @libcore.util.NonNull [] array, int startInclusive, int endExclusive) { throw new RuntimeException("Stub!"); }
344 
stream(int @libcore.util.NonNull [] array)345 @libcore.util.NonNull public static java.util.stream.IntStream stream(int @libcore.util.NonNull [] array) { throw new RuntimeException("Stub!"); }
346 
stream(int @libcore.util.NonNull [] array, int startInclusive, int endExclusive)347 @libcore.util.NonNull public static java.util.stream.IntStream stream(int @libcore.util.NonNull [] array, int startInclusive, int endExclusive) { throw new RuntimeException("Stub!"); }
348 
stream(long @libcore.util.NonNull [] array)349 @libcore.util.NonNull public static java.util.stream.LongStream stream(long @libcore.util.NonNull [] array) { throw new RuntimeException("Stub!"); }
350 
stream(long @libcore.util.NonNull [] array, int startInclusive, int endExclusive)351 @libcore.util.NonNull public static java.util.stream.LongStream stream(long @libcore.util.NonNull [] array, int startInclusive, int endExclusive) { throw new RuntimeException("Stub!"); }
352 
stream(double @libcore.util.NonNull [] array)353 @libcore.util.NonNull public static java.util.stream.DoubleStream stream(double @libcore.util.NonNull [] array) { throw new RuntimeException("Stub!"); }
354 
stream(double @libcore.util.NonNull [] array, int startInclusive, int endExclusive)355 @libcore.util.NonNull public static java.util.stream.DoubleStream stream(double @libcore.util.NonNull [] array, int startInclusive, int endExclusive) { throw new RuntimeException("Stub!"); }
356 }
357