package java.lang; import org.checkerframework.checker.lock.qual.*; public final class StringBuilder extends AbstractStringBuilder implements java.io.Serializable, CharSequence { private static final long serialVersionUID = 0; public StringBuilder() { throw new RuntimeException("skeleton method"); } public StringBuilder(int a1) { throw new RuntimeException("skeleton method"); } public StringBuilder(String a1) { throw new RuntimeException("skeleton method"); } public StringBuilder(CharSequence a1) { throw new RuntimeException("skeleton method"); } public StringBuilder append(Object a1) { throw new RuntimeException("skeleton method"); } public StringBuilder append(String a1) { throw new RuntimeException("skeleton method"); } public StringBuilder append(StringBuffer a1) { throw new RuntimeException("skeleton method"); } public StringBuilder append(CharSequence a1) { throw new RuntimeException("skeleton method"); } public StringBuilder append(CharSequence a1, int a2, int a3) { throw new RuntimeException("skeleton method"); } public StringBuilder append(char[] a1) { throw new RuntimeException("skeleton method"); } public StringBuilder append(char[] a1, int a2, int a3) { throw new RuntimeException("skeleton method"); } public StringBuilder append(boolean a1) { throw new RuntimeException("skeleton method"); } public StringBuilder append(char a1) { throw new RuntimeException("skeleton method"); } public StringBuilder append(int a1) { throw new RuntimeException("skeleton method"); } public StringBuilder append(long a1) { throw new RuntimeException("skeleton method"); } public StringBuilder append(float a1) { throw new RuntimeException("skeleton method"); } public StringBuilder append(double a1) { throw new RuntimeException("skeleton method"); } public StringBuilder appendCodePoint(int a1) { throw new RuntimeException("skeleton method"); } public StringBuilder delete(int a1, int a2) { throw new RuntimeException("skeleton method"); } public StringBuilder deleteCharAt(int a1) { throw new RuntimeException("skeleton method"); } public StringBuilder replace(int a1, int a2, String a3) { throw new RuntimeException("skeleton method"); } public StringBuilder insert(int a1, char[] a2, int a3, int a4) { throw new RuntimeException("skeleton method"); } public StringBuilder insert(int a1, Object a2) { throw new RuntimeException("skeleton method"); } public StringBuilder insert(int a1, String a2) { throw new RuntimeException("skeleton method"); } public StringBuilder insert(int a1, char[] a2) { throw new RuntimeException("skeleton method"); } public StringBuilder insert(int a1, CharSequence a2) { throw new RuntimeException("skeleton method"); } public StringBuilder insert(int a1, CharSequence a2, int a3, int a4) { throw new RuntimeException("skeleton method"); } public StringBuilder insert(int a1, boolean a2) { throw new RuntimeException("skeleton method"); } public StringBuilder insert(int a1, char a2) { throw new RuntimeException("skeleton method"); } public StringBuilder insert(int a1, int a2) { throw new RuntimeException("skeleton method"); } public StringBuilder insert(int a1, long a2) { throw new RuntimeException("skeleton method"); } public StringBuilder insert(int a1, float a2) { throw new RuntimeException("skeleton method"); } public StringBuilder insert(int a1, double a2) { throw new RuntimeException("skeleton method"); } public int indexOf(@GuardSatisfied StringBuilder this,String a1) { throw new RuntimeException("skeleton method"); } public int indexOf(@GuardSatisfied StringBuilder this,String a1, int a2) { throw new RuntimeException("skeleton method"); } public int lastIndexOf(@GuardSatisfied StringBuilder this,String a1) { throw new RuntimeException("skeleton method"); } public int lastIndexOf(@GuardSatisfied StringBuilder this,String a1, int a2) { throw new RuntimeException("skeleton method"); } public StringBuilder reverse() { throw new RuntimeException("skeleton method"); } public String toString(@GuardSatisfied StringBuilder this) { throw new RuntimeException("skeleton method"); } }