/* * 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 StringBuilder extends java.lang.AbstractStringBuilder implements java.lang.Appendable, java.lang.CharSequence, java.io.Serializable { public StringBuilder() { throw new RuntimeException("Stub!"); } public StringBuilder(int capacity) { throw new RuntimeException("Stub!"); } public StringBuilder(java.lang.CharSequence seq) { throw new RuntimeException("Stub!"); } public StringBuilder(java.lang.String str) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder append(boolean b) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder append(char c) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder append(int i) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder append(long l) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder append(float f) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder append(double d) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder append(java.lang.Object obj) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder append(java.lang.String str) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder append(java.lang.StringBuffer sb) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder append(char[] chars) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder append(char[] str, int offset, int len) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder append(java.lang.CharSequence csq) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder append(java.lang.CharSequence csq, int start, int end) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder appendCodePoint(int codePoint) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder delete(int start, int end) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder deleteCharAt(int index) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder insert(int offset, boolean b) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder insert(int offset, char c) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder insert(int offset, int i) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder insert(int offset, long l) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder insert(int offset, float f) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder insert(int offset, double d) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder insert(int offset, java.lang.Object obj) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder insert(int offset, java.lang.String str) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder insert(int offset, char[] ch) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder insert(int offset, char[] str, int strOffset, int strLen) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder insert(int offset, java.lang.CharSequence s) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder insert(int offset, java.lang.CharSequence s, int start, int end) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder replace(int start, int end, java.lang.String string) { throw new RuntimeException("Stub!"); } public java.lang.StringBuilder reverse() { throw new RuntimeException("Stub!"); } public java.lang.String toString() { throw new RuntimeException("Stub!"); } }