summaryrefslogtreecommitdiffstats
path: root/core-stubs-mini/src/java/lang/String.java
blob: 6f7f565a877863a308f8e09233b11374488c038d (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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
/*
* Copyright (C) 2014 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package java.lang;

public final class String implements java.io.Serializable, java.lang.Comparable<java.lang.String>,
    java.lang.CharSequence {
  public String() {
    throw new RuntimeException("Stub!");
  }

  public String(byte[] data) {
    throw new RuntimeException("Stub!");
  }

  @java.lang.Deprecated()
  public String(byte[] data, int high) {
    throw new RuntimeException("Stub!");
  }

  public String(byte[] data, int offset, int byteCount) {
    throw new RuntimeException("Stub!");
  }

  @java.lang.Deprecated()
  public String(byte[] data, int high, int offset, int byteCount) {
    throw new RuntimeException("Stub!");
  }

  public String(byte[] data, int offset, int byteCount, java.lang.String charsetName)
      throws java.io.UnsupportedEncodingException {
    throw new RuntimeException("Stub!");
  }

  public String(byte[] data, java.lang.String charsetName)
      throws java.io.UnsupportedEncodingException {
    throw new RuntimeException("Stub!");
  }

  public String(byte[] data, int offset, int byteCount, java.nio.charset.Charset charset) {
    throw new RuntimeException("Stub!");
  }

  public String(byte[] data, java.nio.charset.Charset charset) {
    throw new RuntimeException("Stub!");
  }

  public String(char[] data) {
    throw new RuntimeException("Stub!");
  }

  public String(char[] data, int offset, int charCount) {
    throw new RuntimeException("Stub!");
  }

  public String(java.lang.String toCopy) {
    throw new RuntimeException("Stub!");
  }

  public String(java.lang.StringBuffer stringBuffer) {
    throw new RuntimeException("Stub!");
  }

  public String(int[] codePoints, int offset, int count) {
    throw new RuntimeException("Stub!");
  }

  public String(java.lang.StringBuilder stringBuilder) {
    throw new RuntimeException("Stub!");
  }

  public native char charAt(int index);

  public native int compareTo(java.lang.String string);

  public int compareToIgnoreCase(java.lang.String string) {
    throw new RuntimeException("Stub!");
  }

  public java.lang.String concat(java.lang.String string) {
    throw new RuntimeException("Stub!");
  }

  public static java.lang.String copyValueOf(char[] data) {
    throw new RuntimeException("Stub!");
  }

  public static java.lang.String copyValueOf(char[] data, int start, int length) {
    throw new RuntimeException("Stub!");
  }

  public boolean endsWith(java.lang.String suffix) {
    throw new RuntimeException("Stub!");
  }

  public native boolean equals(java.lang.Object object);

  public boolean equalsIgnoreCase(java.lang.String string) {
    throw new RuntimeException("Stub!");
  }

  @java.lang.Deprecated()
  public void getBytes(int start, int end, byte[] data, int index) {
    throw new RuntimeException("Stub!");
  }

  public byte[] getBytes() {
    throw new RuntimeException("Stub!");
  }

  public byte[] getBytes(java.lang.String charsetName) throws java.io.UnsupportedEncodingException {
    throw new RuntimeException("Stub!");
  }

  public byte[] getBytes(java.nio.charset.Charset charset) {
    throw new RuntimeException("Stub!");
  }

  public void getChars(int start, int end, char[] buffer, int index) {
    throw new RuntimeException("Stub!");
  }

  public int hashCode() {
    throw new RuntimeException("Stub!");
  }

  public int indexOf(int c) {
    throw new RuntimeException("Stub!");
  }

  public int indexOf(int c, int start) {
    throw new RuntimeException("Stub!");
  }

  public int indexOf(java.lang.String string) {
    throw new RuntimeException("Stub!");
  }

  public int indexOf(java.lang.String subString, int start) {
    throw new RuntimeException("Stub!");
  }

  public native java.lang.String intern();

  public native boolean isEmpty();

  public int lastIndexOf(int c) {
    throw new RuntimeException("Stub!");
  }

  public int lastIndexOf(int c, int start) {
    throw new RuntimeException("Stub!");
  }

  public int lastIndexOf(java.lang.String string) {
    throw new RuntimeException("Stub!");
  }

  public int lastIndexOf(java.lang.String subString, int start) {
    throw new RuntimeException("Stub!");
  }

  public native int length();

  public boolean regionMatches(int thisStart, java.lang.String string, int start, int length) {
    throw new RuntimeException("Stub!");
  }

  public boolean regionMatches(boolean ignoreCase, int thisStart, java.lang.String string,
      int start, int length) {
    throw new RuntimeException("Stub!");
  }

  public java.lang.String replace(char oldChar, char newChar) {
    throw new RuntimeException("Stub!");
  }

  public java.lang.String replace(java.lang.CharSequence target,
      java.lang.CharSequence replacement) {
    throw new RuntimeException("Stub!");
  }

  public boolean startsWith(java.lang.String prefix) {
    throw new RuntimeException("Stub!");
  }

  public boolean startsWith(java.lang.String prefix, int start) {
    throw new RuntimeException("Stub!");
  }

  public java.lang.String substring(int start) {
    throw new RuntimeException("Stub!");
  }

  public java.lang.String substring(int start, int end) {
    throw new RuntimeException("Stub!");
  }

  public char[] toCharArray() {
    throw new RuntimeException("Stub!");
  }

  public java.lang.String toLowerCase() {
    throw new RuntimeException("Stub!");
  }

  public java.lang.String toLowerCase(java.util.Locale locale) {
    throw new RuntimeException("Stub!");
  }

  public java.lang.String toString() {
    throw new RuntimeException("Stub!");
  }

  public java.lang.String toUpperCase() {
    throw new RuntimeException("Stub!");
  }

  public java.lang.String toUpperCase(java.util.Locale locale) {
    throw new RuntimeException("Stub!");
  }

  public java.lang.String trim() {
    throw new RuntimeException("Stub!");
  }

  public static java.lang.String valueOf(char[] data) {
    throw new RuntimeException("Stub!");
  }

  public static java.lang.String valueOf(char[] data, int start, int length) {
    throw new RuntimeException("Stub!");
  }

  public static java.lang.String valueOf(char value) {
    throw new RuntimeException("Stub!");
  }

  public static java.lang.String valueOf(double value) {
    throw new RuntimeException("Stub!");
  }

  public static java.lang.String valueOf(float value) {
    throw new RuntimeException("Stub!");
  }

  public static java.lang.String valueOf(int value) {
    throw new RuntimeException("Stub!");
  }

  public static java.lang.String valueOf(long value) {
    throw new RuntimeException("Stub!");
  }

  public static java.lang.String valueOf(java.lang.Object value) {
    throw new RuntimeException("Stub!");
  }

  public static java.lang.String valueOf(boolean value) {
    throw new RuntimeException("Stub!");
  }

  public boolean contentEquals(java.lang.StringBuffer strbuf) {
    throw new RuntimeException("Stub!");
  }

  public boolean contentEquals(java.lang.CharSequence cs) {
    throw new RuntimeException("Stub!");
  }

  public boolean matches(java.lang.String regularExpression) {
    throw new RuntimeException("Stub!");
  }

  public java.lang.String replaceAll(java.lang.String regularExpression,
      java.lang.String replacement) {
    throw new RuntimeException("Stub!");
  }

  public java.lang.String replaceFirst(java.lang.String regularExpression,
      java.lang.String replacement) {
    throw new RuntimeException("Stub!");
  }

  public java.lang.String[] split(java.lang.String regularExpression) {
    throw new RuntimeException("Stub!");
  }

  public java.lang.String[] split(java.lang.String regularExpression, int limit) {
    throw new RuntimeException("Stub!");
  }

  public java.lang.CharSequence subSequence(int start, int end) {
    throw new RuntimeException("Stub!");
  }

  public int codePointAt(int index) {
    throw new RuntimeException("Stub!");
  }

  public int codePointBefore(int index) {
    throw new RuntimeException("Stub!");
  }

  public int codePointCount(int start, int end) {
    throw new RuntimeException("Stub!");
  }

  public boolean contains(java.lang.CharSequence cs) {
    throw new RuntimeException("Stub!");
  }

  public int offsetByCodePoints(int index, int codePointOffset) {
    throw new RuntimeException("Stub!");
  }

  public static java.lang.String format(java.lang.String format, java.lang.Object... args) {
    throw new RuntimeException("Stub!");
  }

  public static java.lang.String format(java.util.Locale locale, java.lang.String format,
      java.lang.Object... args) {
    throw new RuntimeException("Stub!");
  }

  public static final java.util.Comparator<java.lang.String> CASE_INSENSITIVE_ORDER;
  static {
    CASE_INSENSITIVE_ORDER = null;
  }
}