diff options
| author | Pete Gillin <peteg@google.com> | 2018-09-17 15:41:45 +0100 |
|---|---|---|
| committer | Pete Gillin <peteg@google.com> | 2018-09-18 15:06:33 +0100 |
| commit | 0728b74a7e9155d8d960eceef81ba18fe687d574 (patch) | |
| tree | b830ed587253f64a09051bb9bf637df09cba810f /ojluni/annotations/sdk/nullability/java/lang/String.annotated.java | |
| parent | 95524472bda0cea051542d81a9787c3aa8eae425 (diff) | |
Move .annotated.java files into an 'sdk' subdirectory.
All of the current annotations are intended for use in the SDK build,
and live at ojluni/annotations. In order to make room for annotated
stubs for other purposes, this change moves them. There is a README
that describes the intended directory structure. (N.B. Validation of
the nullability stubs is not landed yet but is described here in
anticipation.)
Bug: 115746226
Test: `make api-stubs-docs`
Change-Id: I7cfbdb5dc9888f796eb1f384155fce33125a7d9e
Diffstat (limited to 'ojluni/annotations/sdk/nullability/java/lang/String.annotated.java')
| -rw-r--r-- | ojluni/annotations/sdk/nullability/java/lang/String.annotated.java | 208 |
1 files changed, 208 insertions, 0 deletions
diff --git a/ojluni/annotations/sdk/nullability/java/lang/String.annotated.java b/ojluni/annotations/sdk/nullability/java/lang/String.annotated.java new file mode 100644 index 0000000000..a8cf1def67 --- /dev/null +++ b/ojluni/annotations/sdk/nullability/java/lang/String.annotated.java @@ -0,0 +1,208 @@ +/* + * Copyright (C) 2014 The Android Open Source Project + * Copyright (c) 1994, 2013, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + + +package java.lang; + +import java.nio.charset.Charset; +import java.io.UnsupportedEncodingException; +import java.util.regex.Pattern; +import java.util.regex.PatternSyntaxException; +import java.util.StringJoiner; +import java.util.Locale; +import java.util.Formatter; +import java.util.Comparator; + +@SuppressWarnings({"unchecked", "deprecation", "all"}) +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(@libcore.util.NonNull java.lang.String original) { throw new RuntimeException("Stub!"); } + +public String(char[] value) { throw new RuntimeException("Stub!"); } + +public String(char[] value, int offset, int count) { throw new RuntimeException("Stub!"); } + +public String(int[] codePoints, int offset, int count) { throw new RuntimeException("Stub!"); } + +@Deprecated public String(byte[] ascii, int hibyte, int offset, int count) { throw new RuntimeException("Stub!"); } + +@Deprecated public String(byte[] ascii, int hibyte) { throw new RuntimeException("Stub!"); } + +public String(byte[] bytes, int offset, int length, @libcore.util.NonNull java.lang.String charsetName) throws java.io.UnsupportedEncodingException { throw new RuntimeException("Stub!"); } + +public String(byte[] bytes, int offset, int length, @libcore.util.NonNull java.nio.charset.Charset charset) { throw new RuntimeException("Stub!"); } + +public String(byte[] bytes, @libcore.util.NonNull java.lang.String charsetName) throws java.io.UnsupportedEncodingException { throw new RuntimeException("Stub!"); } + +public String(byte[] bytes, @libcore.util.NonNull java.nio.charset.Charset charset) { throw new RuntimeException("Stub!"); } + +public String(byte[] bytes, int offset, int length) { throw new RuntimeException("Stub!"); } + +public String(byte[] bytes) { throw new RuntimeException("Stub!"); } + +public String(@libcore.util.NonNull java.lang.StringBuffer buffer) { throw new RuntimeException("Stub!"); } + +public String(@libcore.util.NonNull java.lang.StringBuilder builder) { throw new RuntimeException("Stub!"); } + +public int length() { throw new RuntimeException("Stub!"); } + +public boolean isEmpty() { throw new RuntimeException("Stub!"); } + +public native char charAt(int index); + +public int codePointAt(int index) { throw new RuntimeException("Stub!"); } + +public int codePointBefore(int index) { throw new RuntimeException("Stub!"); } + +public int codePointCount(int beginIndex, int endIndex) { throw new RuntimeException("Stub!"); } + +public int offsetByCodePoints(int index, int codePointOffset) { throw new RuntimeException("Stub!"); } + +public void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin) { throw new RuntimeException("Stub!"); } + +@Deprecated public void getBytes(int srcBegin, int srcEnd, byte[] dst, int dstBegin) { throw new RuntimeException("Stub!"); } + +public byte[] getBytes(@libcore.util.NonNull java.lang.String charsetName) throws java.io.UnsupportedEncodingException { throw new RuntimeException("Stub!"); } + +public byte[] getBytes(@libcore.util.NonNull java.nio.charset.Charset charset) { throw new RuntimeException("Stub!"); } + +public byte[] getBytes() { throw new RuntimeException("Stub!"); } + +public boolean equals(@libcore.util.Nullable java.lang.Object anObject) { throw new RuntimeException("Stub!"); } + +public boolean contentEquals(@libcore.util.NonNull java.lang.StringBuffer sb) { throw new RuntimeException("Stub!"); } + +public boolean contentEquals(@libcore.util.NonNull java.lang.CharSequence cs) { throw new RuntimeException("Stub!"); } + +public boolean equalsIgnoreCase(@libcore.util.Nullable java.lang.String anotherString) { throw new RuntimeException("Stub!"); } + +public native int compareTo(@libcore.util.NonNull java.lang.String anotherString); + +public int compareToIgnoreCase(@libcore.util.NonNull java.lang.String str) { throw new RuntimeException("Stub!"); } + +public boolean regionMatches(int toffset, @libcore.util.NonNull java.lang.String other, int ooffset, int len) { throw new RuntimeException("Stub!"); } + +public boolean regionMatches(boolean ignoreCase, int toffset, @libcore.util.NonNull java.lang.String other, int ooffset, int len) { throw new RuntimeException("Stub!"); } + +public boolean startsWith(@libcore.util.NonNull java.lang.String prefix, int toffset) { throw new RuntimeException("Stub!"); } + +public boolean startsWith(@libcore.util.NonNull java.lang.String prefix) { throw new RuntimeException("Stub!"); } + +public boolean endsWith(@libcore.util.NonNull java.lang.String suffix) { throw new RuntimeException("Stub!"); } + +public int hashCode() { throw new RuntimeException("Stub!"); } + +public int indexOf(int ch) { throw new RuntimeException("Stub!"); } + +public int indexOf(int ch, int fromIndex) { throw new RuntimeException("Stub!"); } + +public int lastIndexOf(int ch) { throw new RuntimeException("Stub!"); } + +public int lastIndexOf(int ch, int fromIndex) { throw new RuntimeException("Stub!"); } + +public int indexOf(@libcore.util.NonNull java.lang.String str) { throw new RuntimeException("Stub!"); } + +public int indexOf(@libcore.util.NonNull java.lang.String str, int fromIndex) { throw new RuntimeException("Stub!"); } + +public int lastIndexOf(@libcore.util.NonNull java.lang.String str) { throw new RuntimeException("Stub!"); } + +public int lastIndexOf(@libcore.util.NonNull java.lang.String str, int fromIndex) { throw new RuntimeException("Stub!"); } + +@libcore.util.NonNull public java.lang.String substring(int beginIndex) { throw new RuntimeException("Stub!"); } + +@libcore.util.NonNull public java.lang.String substring(int beginIndex, int endIndex) { throw new RuntimeException("Stub!"); } + +@libcore.util.NonNull public java.lang.CharSequence subSequence(int beginIndex, int endIndex) { throw new RuntimeException("Stub!"); } + +@libcore.util.NonNull public native java.lang.String concat(@libcore.util.NonNull java.lang.String str); + +@libcore.util.NonNull public java.lang.String replace(char oldChar, char newChar) { throw new RuntimeException("Stub!"); } + +public boolean matches(@libcore.util.NonNull java.lang.String regex) { throw new RuntimeException("Stub!"); } + +public boolean contains(@libcore.util.NonNull java.lang.CharSequence s) { throw new RuntimeException("Stub!"); } + +@libcore.util.NonNull public java.lang.String replaceFirst(@libcore.util.NonNull java.lang.String regex, @libcore.util.NonNull java.lang.String replacement) { throw new RuntimeException("Stub!"); } + +@libcore.util.NonNull public java.lang.String replaceAll(@libcore.util.NonNull java.lang.String regex, @libcore.util.NonNull java.lang.String replacement) { throw new RuntimeException("Stub!"); } + +@libcore.util.NonNull public java.lang.String replace(@libcore.util.NonNull java.lang.CharSequence target, @libcore.util.NonNull java.lang.CharSequence replacement) { throw new RuntimeException("Stub!"); } + +public java.lang.@libcore.util.NonNull String @libcore.util.NonNull [] split(@libcore.util.NonNull java.lang.String regex, int limit) { throw new RuntimeException("Stub!"); } + +public java.lang.@libcore.util.NonNull String @libcore.util.NonNull [] split(@libcore.util.NonNull java.lang.String regex) { throw new RuntimeException("Stub!"); } + +@libcore.util.NonNull public static java.lang.String join(@libcore.util.NonNull java.lang.CharSequence delimiter, java.lang.@libcore.util.NonNull CharSequence @libcore.util.Nullable ... elements) { throw new RuntimeException("Stub!"); } + +@libcore.util.NonNull public static java.lang.String join(@libcore.util.NonNull java.lang.CharSequence delimiter, @libcore.util.NonNull java.lang.Iterable<? extends @libcore.util.Nullable java.lang.CharSequence> elements) { throw new RuntimeException("Stub!"); } + +@libcore.util.NonNull public java.lang.String toLowerCase(@libcore.util.NonNull java.util.Locale locale) { throw new RuntimeException("Stub!"); } + +@libcore.util.NonNull public java.lang.String toLowerCase() { throw new RuntimeException("Stub!"); } + +@libcore.util.NonNull public java.lang.String toUpperCase(@libcore.util.NonNull java.util.Locale locale) { throw new RuntimeException("Stub!"); } + +@libcore.util.NonNull public java.lang.String toUpperCase() { throw new RuntimeException("Stub!"); } + +@libcore.util.NonNull public java.lang.String trim() { throw new RuntimeException("Stub!"); } + +@libcore.util.NonNull public java.lang.String toString() { throw new RuntimeException("Stub!"); } + +public native char[] toCharArray(); + +@libcore.util.NonNull public static java.lang.String format(@libcore.util.NonNull java.lang.String format, java.lang.@libcore.util.Nullable Object @libcore.util.NonNull ... args) { throw new RuntimeException("Stub!"); } + +@libcore.util.NonNull public static java.lang.String format(@libcore.util.NonNull java.util.Locale l, @libcore.util.NonNull java.lang.String format, java.lang.@libcore.util.Nullable Object @libcore.util.NonNull ... args) { throw new RuntimeException("Stub!"); } + +@libcore.util.NonNull public static java.lang.String valueOf(@libcore.util.Nullable java.lang.Object obj) { throw new RuntimeException("Stub!"); } + +@libcore.util.NonNull public static java.lang.String valueOf(char[] data) { throw new RuntimeException("Stub!"); } + +@libcore.util.NonNull public static java.lang.String valueOf(char[] data, int offset, int count) { throw new RuntimeException("Stub!"); } + +@libcore.util.NonNull public static java.lang.String copyValueOf(char[] data, int offset, int count) { throw new RuntimeException("Stub!"); } + +@libcore.util.NonNull public static java.lang.String copyValueOf(char[] data) { throw new RuntimeException("Stub!"); } + +@libcore.util.NonNull public static java.lang.String valueOf(boolean b) { throw new RuntimeException("Stub!"); } + +@libcore.util.NonNull public static java.lang.String valueOf(char c) { throw new RuntimeException("Stub!"); } + +@libcore.util.NonNull public static java.lang.String valueOf(int i) { throw new RuntimeException("Stub!"); } + +@libcore.util.NonNull public static java.lang.String valueOf(long l) { throw new RuntimeException("Stub!"); } + +@libcore.util.NonNull public static java.lang.String valueOf(float f) { throw new RuntimeException("Stub!"); } + +@libcore.util.NonNull public static java.lang.String valueOf(double d) { throw new RuntimeException("Stub!"); } + +@libcore.util.NonNull public native java.lang.String intern(); + +public static final java.util.Comparator<java.lang.String> CASE_INSENSITIVE_ORDER; +static { CASE_INSENSITIVE_ORDER = null; } +} |
