summaryrefslogtreecommitdiffstats
path: root/core-stubs-mini/src/java/util/Arrays.java
blob: 0fb0fa5333376f7db4ee2c6262712a9366af7839 (plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
package java.util;
public class Arrays
{
Arrays() { throw new RuntimeException("Stub!"); }
@java.lang.SafeVarargs()
public static <T> java.util.List<T> asList(T... array) { throw new RuntimeException("Stub!"); }
public static  int binarySearch(byte[] array, byte value) { throw new RuntimeException("Stub!"); }
public static  int binarySearch(byte[] array, int startIndex, int endIndex, byte value) { throw new RuntimeException("Stub!"); }
public static  int binarySearch(char[] array, char value) { throw new RuntimeException("Stub!"); }
public static  int binarySearch(char[] array, int startIndex, int endIndex, char value) { throw new RuntimeException("Stub!"); }
public static  int binarySearch(double[] array, double value) { throw new RuntimeException("Stub!"); }
public static  int binarySearch(double[] array, int startIndex, int endIndex, double value) { throw new RuntimeException("Stub!"); }
public static  int binarySearch(float[] array, float value) { throw new RuntimeException("Stub!"); }
public static  int binarySearch(float[] array, int startIndex, int endIndex, float value) { throw new RuntimeException("Stub!"); }
public static  int binarySearch(int[] array, int value) { throw new RuntimeException("Stub!"); }
public static  int binarySearch(int[] array, int startIndex, int endIndex, int value) { throw new RuntimeException("Stub!"); }
public static  int binarySearch(long[] array, long value) { throw new RuntimeException("Stub!"); }
public static  int binarySearch(long[] array, int startIndex, int endIndex, long value) { throw new RuntimeException("Stub!"); }
public static  int binarySearch(java.lang.Object[] array, java.lang.Object value) { throw new RuntimeException("Stub!"); }
public static  int binarySearch(java.lang.Object[] array, int startIndex, int endIndex, java.lang.Object value) { throw new RuntimeException("Stub!"); }
public static <T> int binarySearch(T[] array, T value, java.util.Comparator<? super T> comparator) { throw new RuntimeException("Stub!"); }
public static <T> int binarySearch(T[] array, int startIndex, int endIndex, T value, java.util.Comparator<? super T> comparator) { throw new RuntimeException("Stub!"); }
public static  int binarySearch(short[] array, short value) { throw new RuntimeException("Stub!"); }
public static  int binarySearch(short[] array, int startIndex, int endIndex, short value) { throw new RuntimeException("Stub!"); }
public static  void fill(byte[] array, byte value) { throw new RuntimeException("Stub!"); }
public static  void fill(byte[] array, int start, int end, byte value) { throw new RuntimeException("Stub!"); }
public static  void fill(short[] array, short value) { throw new RuntimeException("Stub!"); }
public static  void fill(short[] array, int start, int end, short value) { throw new RuntimeException("Stub!"); }
public static  void fill(char[] array, char value) { throw new RuntimeException("Stub!"); }
public static  void fill(char[] array, int start, int end, char value) { throw new RuntimeException("Stub!"); }
public static  void fill(int[] array, int value) { throw new RuntimeException("Stub!"); }
public static  void fill(int[] array, int start, int end, int value) { throw new RuntimeException("Stub!"); }
public static  void fill(long[] array, long value) { throw new RuntimeException("Stub!"); }
public static  void fill(long[] array, int start, int end, long value) { throw new RuntimeException("Stub!"); }
public static  void fill(float[] array, float value) { throw new RuntimeException("Stub!"); }
public static  void fill(float[] array, int start, int end, float value) { throw new RuntimeException("Stub!"); }
public static  void fill(double[] array, double value) { throw new RuntimeException("Stub!"); }
public static  void fill(double[] array, int start, int end, double value) { throw new RuntimeException("Stub!"); }
public static  void fill(boolean[] array, boolean value) { throw new RuntimeException("Stub!"); }
public static  void fill(boolean[] array, int start, int end, boolean value) { throw new RuntimeException("Stub!"); }
public static  void fill(java.lang.Object[] array, java.lang.Object value) { throw new RuntimeException("Stub!"); }
public static  void fill(java.lang.Object[] array, int start, int end, java.lang.Object value) { throw new RuntimeException("Stub!"); }
public static  int hashCode(boolean[] array) { throw new RuntimeException("Stub!"); }
public static  int hashCode(int[] array) { throw new RuntimeException("Stub!"); }
public static  int hashCode(short[] array) { throw new RuntimeException("Stub!"); }
public static  int hashCode(char[] array) { throw new RuntimeException("Stub!"); }
public static  int hashCode(byte[] array) { throw new RuntimeException("Stub!"); }
public static  int hashCode(long[] array) { throw new RuntimeException("Stub!"); }
public static  int hashCode(float[] array) { throw new RuntimeException("Stub!"); }
public static  int hashCode(double[] array) { throw new RuntimeException("Stub!"); }
public static  int hashCode(java.lang.Object[] array) { throw new RuntimeException("Stub!"); }
public static  int deepHashCode(java.lang.Object[] array) { throw new RuntimeException("Stub!"); }
public static  boolean equals(byte[] array1, byte[] array2) { throw new RuntimeException("Stub!"); }
public static  boolean equals(short[] array1, short[] array2) { throw new RuntimeException("Stub!"); }
public static  boolean equals(char[] array1, char[] array2) { throw new RuntimeException("Stub!"); }
public static  boolean equals(int[] array1, int[] array2) { throw new RuntimeException("Stub!"); }
public static  boolean equals(long[] array1, long[] array2) { throw new RuntimeException("Stub!"); }
public static  boolean equals(float[] array1, float[] array2) { throw new RuntimeException("Stub!"); }
public static  boolean equals(double[] array1, double[] array2) { throw new RuntimeException("Stub!"); }
public static  boolean equals(boolean[] array1, boolean[] array2) { throw new RuntimeException("Stub!"); }
public static  boolean equals(java.lang.Object[] array1, java.lang.Object[] array2) { throw new RuntimeException("Stub!"); }
public static  boolean deepEquals(java.lang.Object[] array1, java.lang.Object[] array2) { throw new RuntimeException("Stub!"); }
public static  void sort(byte[] array) { throw new RuntimeException("Stub!"); }
public static  void sort(byte[] array, int start, int end) { throw new RuntimeException("Stub!"); }
public static  void sort(char[] array) { throw new RuntimeException("Stub!"); }
public static  void sort(char[] array, int start, int end) { throw new RuntimeException("Stub!"); }
public static  void sort(double[] array) { throw new RuntimeException("Stub!"); }
public static  void sort(double[] array, int start, int end) { throw new RuntimeException("Stub!"); }
public static  void sort(float[] array) { throw new RuntimeException("Stub!"); }
public static  void sort(float[] array, int start, int end) { throw new RuntimeException("Stub!"); }
public static  void sort(int[] array) { throw new RuntimeException("Stub!"); }
public static  void sort(int[] array, int start, int end) { throw new RuntimeException("Stub!"); }
public static  void sort(long[] array) { throw new RuntimeException("Stub!"); }
public static  void sort(long[] array, int start, int end) { throw new RuntimeException("Stub!"); }
public static  void sort(short[] array) { throw new RuntimeException("Stub!"); }
public static  void sort(short[] array, int start, int end) { throw new RuntimeException("Stub!"); }
public static  void sort(java.lang.Object[] array) { throw new RuntimeException("Stub!"); }
public static  void sort(java.lang.Object[] array, int start, int end) { throw new RuntimeException("Stub!"); }
public static <T> void sort(T[] array, int start, int end, java.util.Comparator<? super T> comparator) { throw new RuntimeException("Stub!"); }
public static <T> void sort(T[] array, java.util.Comparator<? super T> comparator) { throw new RuntimeException("Stub!"); }
public static  java.lang.String toString(boolean[] array) { throw new RuntimeException("Stub!"); }
public static  java.lang.String toString(byte[] array) { throw new RuntimeException("Stub!"); }
public static  java.lang.String toString(char[] array) { throw new RuntimeException("Stub!"); }
public static  java.lang.String toString(double[] array) { throw new RuntimeException("Stub!"); }
public static  java.lang.String toString(float[] array) { throw new RuntimeException("Stub!"); }
public static  java.lang.String toString(int[] array) { throw new RuntimeException("Stub!"); }
public static  java.lang.String toString(long[] array) { throw new RuntimeException("Stub!"); }
public static  java.lang.String toString(short[] array) { throw new RuntimeException("Stub!"); }
public static  java.lang.String toString(java.lang.Object[] array) { throw new RuntimeException("Stub!"); }
public static  java.lang.String deepToString(java.lang.Object[] array) { throw new RuntimeException("Stub!"); }
public static  boolean[] copyOf(boolean[] original, int newLength) { throw new RuntimeException("Stub!"); }
public static  byte[] copyOf(byte[] original, int newLength) { throw new RuntimeException("Stub!"); }
public static  char[] copyOf(char[] original, int newLength) { throw new RuntimeException("Stub!"); }
public static  double[] copyOf(double[] original, int newLength) { throw new RuntimeException("Stub!"); }
public static  float[] copyOf(float[] original, int newLength) { throw new RuntimeException("Stub!"); }
public static  int[] copyOf(int[] original, int newLength) { throw new RuntimeException("Stub!"); }
public static  long[] copyOf(long[] original, int newLength) { throw new RuntimeException("Stub!"); }
public static  short[] copyOf(short[] original, int newLength) { throw new RuntimeException("Stub!"); }
public static <T> T[] copyOf(T[] original, int newLength) { throw new RuntimeException("Stub!"); }
public static <T, U> T[] copyOf(U[] original, int newLength, java.lang.Class<? extends T[]> newType) { throw new RuntimeException("Stub!"); }
public static  boolean[] copyOfRange(boolean[] original, int start, int end) { throw new RuntimeException("Stub!"); }
public static  byte[] copyOfRange(byte[] original, int start, int end) { throw new RuntimeException("Stub!"); }
public static  char[] copyOfRange(char[] original, int start, int end) { throw new RuntimeException("Stub!"); }
public static  double[] copyOfRange(double[] original, int start, int end) { throw new RuntimeException("Stub!"); }
public static  float[] copyOfRange(float[] original, int start, int end) { throw new RuntimeException("Stub!"); }
public static  int[] copyOfRange(int[] original, int start, int end) { throw new RuntimeException("Stub!"); }
public static  long[] copyOfRange(long[] original, int start, int end) { throw new RuntimeException("Stub!"); }
public static  short[] copyOfRange(short[] original, int start, int end) { throw new RuntimeException("Stub!"); }
@java.lang.SuppressWarnings(value={"unchecked"})
public static <T> T[] copyOfRange(T[] original, int start, int end) { throw new RuntimeException("Stub!"); }
@java.lang.SuppressWarnings(value={"unchecked"})
public static <T, U> T[] copyOfRange(U[] original, int start, int end, java.lang.Class<? extends T[]> newType) { throw new RuntimeException("Stub!"); }
}