jvm/classes/java/lang/Appendable.java
2025-01-12 16:13:10 -06:00

12 lines
273 B
Java

package java.lang;
import java.io.IOException;
public interface Appendable {
Appendable append(char c) throws IOException;
Appendable append(CharSequence csq) throws IOException;
Appendable append(CharSequence csq, int start, int end) throws IOException;
}