Komplettes G-Earth Paket inkl. JRE, Extensions und Tools. Extensions: - G-BuildTools, G-Click Ultimate, G-Loader, G-Manipulate - G-Presets, G-Translator, G-Trigger, G-itemViewer - Market Utils, Packet Info Explorer, Plants - RandomRoomVisitor, RoomLogger, Sanbovir Photo Inspector - SpyFriends, WallAligner, XabboScripter, xabbo
63 lines
1.8 KiB
Java
63 lines
1.8 KiB
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package okio;
|
|
|
|
import java.io.IOException;
|
|
import java.io.OutputStream;
|
|
import java.nio.charset.Charset;
|
|
import okio.Buffer;
|
|
import okio.ByteString;
|
|
import okio.Sink;
|
|
import okio.Source;
|
|
|
|
public interface BufferedSink
|
|
extends Sink {
|
|
public Buffer buffer();
|
|
|
|
public BufferedSink write(ByteString var1) throws IOException;
|
|
|
|
public BufferedSink write(byte[] var1) throws IOException;
|
|
|
|
public BufferedSink write(byte[] var1, int var2, int var3) throws IOException;
|
|
|
|
public long writeAll(Source var1) throws IOException;
|
|
|
|
public BufferedSink write(Source var1, long var2) throws IOException;
|
|
|
|
public BufferedSink writeUtf8(String var1) throws IOException;
|
|
|
|
public BufferedSink writeUtf8(String var1, int var2, int var3) throws IOException;
|
|
|
|
public BufferedSink writeUtf8CodePoint(int var1) throws IOException;
|
|
|
|
public BufferedSink writeString(String var1, Charset var2) throws IOException;
|
|
|
|
public BufferedSink writeString(String var1, int var2, int var3, Charset var4) throws IOException;
|
|
|
|
public BufferedSink writeByte(int var1) throws IOException;
|
|
|
|
public BufferedSink writeShort(int var1) throws IOException;
|
|
|
|
public BufferedSink writeShortLe(int var1) throws IOException;
|
|
|
|
public BufferedSink writeInt(int var1) throws IOException;
|
|
|
|
public BufferedSink writeIntLe(int var1) throws IOException;
|
|
|
|
public BufferedSink writeLong(long var1) throws IOException;
|
|
|
|
public BufferedSink writeLongLe(long var1) throws IOException;
|
|
|
|
public BufferedSink writeDecimalLong(long var1) throws IOException;
|
|
|
|
public BufferedSink writeHexadecimalUnsignedLong(long var1) throws IOException;
|
|
|
|
public BufferedSink emitCompleteSegments() throws IOException;
|
|
|
|
public BufferedSink emit() throws IOException;
|
|
|
|
public OutputStream outputStream();
|
|
}
|
|
|