Class NetStreamOutput
java.lang.Object
java.io.OutputStream
java.io.FilterOutputStream
com.github.retrooper.packetevents.protocol.stream.NetStreamOutput
- All Implemented Interfaces:
Closeable
,Flushable
,AutoCloseable
- Direct Known Subclasses:
NetStreamOutputWrapper
Deprecated.
-
Field Summary
Fields inherited from class java.io.FilterOutputStream
out
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
writeBoolean
(boolean b) Deprecated.void
writeByte
(int b) Deprecated.void
writeBytes
(byte[] b) Deprecated.void
writeBytes
(byte[] b, int length) Deprecated.void
writeChar
(int c) Deprecated.void
writeDouble
(double d) Deprecated.void
writeFloat
(float f) Deprecated.void
writeInt
(int i) Deprecated.void
writeInts
(int[] i) Deprecated.void
writeInts
(int[] i, int length) Deprecated.void
writeLong
(long l) Deprecated.void
writeLongs
(long[] l) Deprecated.void
writeLongs
(long[] l, int length) Deprecated.void
writeShort
(int s) Deprecated.void
writeShorts
(short[] s) Deprecated.void
writeShorts
(short[] s, int length) Deprecated.void
Deprecated.void
Deprecated.void
writeVarInt
(int i) Deprecated.void
writeVarLong
(long l) Deprecated.Methods inherited from class java.io.OutputStream
nullOutputStream
-
Constructor Details
-
NetStreamOutput
Deprecated.
-
-
Method Details
-
writeBoolean
public void writeBoolean(boolean b) Deprecated. -
writeByte
public void writeByte(int b) Deprecated. -
writeShort
public void writeShort(int s) Deprecated. -
writeChar
public void writeChar(int c) Deprecated. -
writeInt
public void writeInt(int i) Deprecated. -
writeVarInt
public void writeVarInt(int i) Deprecated. -
writeLong
public void writeLong(long l) Deprecated. -
writeVarLong
public void writeVarLong(long l) Deprecated. -
writeFloat
public void writeFloat(float f) Deprecated. -
writeDouble
public void writeDouble(double d) Deprecated. -
writeBytes
public void writeBytes(byte[] b) Deprecated. -
writeBytes
public void writeBytes(byte[] b, int length) Deprecated. -
writeShorts
public void writeShorts(short[] s) Deprecated. -
writeShorts
public void writeShorts(short[] s, int length) Deprecated. -
writeInts
public void writeInts(int[] i) Deprecated. -
writeInts
public void writeInts(int[] i, int length) Deprecated. -
writeLongs
public void writeLongs(long[] l) Deprecated. -
writeLongs
public void writeLongs(long[] l, int length) Deprecated. -
writeString
Deprecated. -
writeUUID
Deprecated.
-