Class PacketByteBuf
- All Implemented Interfaces:
ReferenceCounted
,Comparable<ByteBuf>
All read
and write
methods throw IndexOutOfBoundsException
if there is not enough bytes to be read or
not enough space to write.
- Mappings:
Namespace Name official ob
intermediary net/minecraft/class_2540
named net/minecraft/network/PacketByteBuf
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic short
private static int
The maximum size, in number of bytes, allowed of the NBT compound read byreadNbt()
.static int
The maximum size, in terms of JSON string length, allowed of the text read byreadText()
or written bywriteText(Text)
.private static int
The max number of bytes an encoded var int value may use.private static int
The max number of bytes an encoded var long value may use.private ByteBuf
-
Constructor Summary
ConstructorsConstructorDescriptionPacketByteBuf(ByteBuf parent)
Creates a packet byte buf that delegates its operations to theparent
buf. -
Method Summary
Modifier and TypeMethodDescriptionalloc()
byte[]
array()
int
int
bytesBefore(byte byte2)
int
bytesBefore(int int2, byte byte2)
int
bytesBefore(int int2, int int3, byte byte2)
int
capacity()
capacity(int int2)
clear()
int
copy()
copy(int int2, int int3)
<T> T
decode(com.mojang.serialization.Codec<T> codec)
Reads an object from this buf as a compound NBT with the given codec.<T> void
encode(com.mojang.serialization.Codec<T> codec, T object)
Writes an object to this buf as a compound NBT with the given codec.ensureWritable(int int2)
int
ensureWritable(int int2, boolean bool)
boolean
int
forEachByte(int int2, int int3, ByteProcessor byteProcessor)
int
forEachByte(ByteProcessor byteProcessor)
int
forEachByteDesc(int int2, int int3, ByteProcessor byteProcessor)
int
forEachByteDesc(ByteProcessor byteProcessor)
void
forEachInCollection(Consumer<PacketByteBuf> consumer)
Iterates a collection from this buf.boolean
getBoolean(int int2)
byte
getByte(int int2)
getBytes(int int2, byte[] byte2)
getBytes(int int2, byte[] byte2, int int3, int int4)
getBytes(int int2, OutputStream outputStream, int int3)
getBytes(int int2, ByteBuffer byteBuffer)
int
getBytes(int int2, FileChannel fileChannel, long long2, int int3)
int
getBytes(int int2, GatheringByteChannel gatheringByteChannel, int int3)
char
getChar(int int2)
getCharSequence(int int2, int int3, Charset charset)
double
getDouble(int int2)
float
getFloat(int int2)
int
getInt(int int2)
int
getIntLE(int int2)
long
getLong(int int2)
long
getLongLE(int int2)
int
getMedium(int int2)
int
getMediumLE(int int2)
short
getShort(int int2)
short
getShortLE(int int2)
short
getUnsignedByte(int int2)
long
getUnsignedInt(int int2)
long
getUnsignedIntLE(int int2)
int
getUnsignedMedium(int int2)
int
getUnsignedMediumLE(int int2)
int
getUnsignedShort(int int2)
int
getUnsignedShortLE(int int2)
static int
getVarIntLength(int value)
Returns the number of bytes needed to encodevalue
as a var int.static int
getVarLongLength(long value)
Returns the number of bytes needed to encodevalue
as a var long.byte[]
Returns an array of bytes of contents in this buf between index0
and thewriterIndex()
.boolean
hasArray()
int
hashCode()
boolean
int
indexOf(int int2, int int3, byte byte2)
internalNioBuffer(int int2, int int3)
boolean
isDirect()
boolean
boolean
isReadable(int int2)
boolean
boolean
boolean
isWritable(int int2)
int
int
long
nioBuffer(int int2, int int3)
int
nioBuffers(int int2, int int3)
order()
int
Reads a bit set from this buf.Reads a block hit result from this buf.Reads a block position from this buf.boolean
byte
readByte()
byte[]
Reads an array of primitive bytes from this buf.byte[]
readByteArray(int maxSize)
Reads an array of primitive bytes from this buf.readBytes(byte[] byte2)
readBytes(byte[] byte2, int int2, int int3)
readBytes(int int2)
readBytes(OutputStream outputStream, int int2)
readBytes(ByteBuffer byteBuffer)
int
readBytes(FileChannel fileChannel, long long2, int int2)
int
readBytes(GatheringByteChannel gatheringByteChannel, int int2)
char
readChar()
readCharSequence(int int2, Charset charset)
Reads a chunk position from this buf.Reads a chunk section position from this buf.<T, C extends Collection<T>>
CreadCollection(IntFunction<C> collectionFactory, Function<PacketByteBuf,T> entryParser)
Reads a collection from this buf.readDate()
Reads a date from this buf.double
<T extends Enum<T>>
TreadEnumConstant(Class<T> enumClass)
Reads an enum constant from this buf.int
readerIndex(int int2)
float
Reads an identifier from this buf.int
readInt()
int[]
Reads an array of primitive ints from this buf.int[]
readIntArray(int maxSize)
Reads an array of primitive ints from this buf.int
Reads a list of primitive ints from this buf.Reads an item stack from this buf.<T> List<T>
readList(Function<PacketByteBuf,T> entryParser)
Reads a collection from this buf as an array list.long
readLong()
long[]
Reads an array of primitive longs from this buf.long[]
readLongArray(@org.jetbrains.annotations.Nullable long[] toArray)
Reads an array of primitive longs from this buf.long[]
readLongArray(@org.jetbrains.annotations.Nullable long[] toArray, int maxSize)
Reads an array of primitive longs from this buf.long
<K, V> Map<K,V>
readMap(Function<PacketByteBuf,K> keyParser, Function<PacketByteBuf,V> valueParser)
Reads a map from this buf as a hash map.<K, V, M extends Map<K, V>>
MreadMap(IntFunction<M> mapFactory, Function<PacketByteBuf,K> keyParser, Function<PacketByteBuf,V> valueParser)
Reads a map from this buf.int
int
readNbt()
Reads an NBT compound from this buf.readNbt(NbtTagSizeTracker sizeTracker)
Reads an NBT compound from this buf.readRetainedSlice(int int2)
short
short
readSlice(int int2)
Reads a string from this buf.readString(int maxLength)
Reads a string from this buf.readText()
Reads a text from this buf.Reads an NBT compound from this buf.short
long
long
int
int
int
int
readUuid()
Reads a UUID (universally unique identifier) from this buf.int
Reads a single var int from this buf.long
Reads a single var long from this buf.int
refCnt()
boolean
release()
boolean
release(int int2)
retain()
retain(int int2)
retainedSlice(int int2, int int3)
setBoolean(int int2, boolean bool)
setByte(int int2, int int3)
setBytes(int int2, byte[] byte2)
setBytes(int int2, byte[] byte2, int int3, int int4)
int
setBytes(int int2, InputStream inputStream, int int3)
setBytes(int int2, ByteBuffer byteBuffer)
int
setBytes(int int2, FileChannel fileChannel, long long2, int int3)
int
setBytes(int int2, ScatteringByteChannel scatteringByteChannel, int int3)
setChar(int int2, int int3)
int
setCharSequence(int int2, CharSequence charSequence, Charset charset)
setDouble(int int2, double double2)
setFloat(int int2, float float2)
setIndex(int int2, int int3)
setInt(int int2, int int3)
setIntLE(int int2, int int3)
setLong(int int2, long long2)
setLongLE(int int2, long long2)
setMedium(int int2, int int3)
setMediumLE(int int2, int int3)
setShort(int int2, int int3)
setShortLE(int int2, int int3)
setZero(int int2, int int3)
skipBytes(int int2)
slice()
slice(int int2, int int3)
toString()
touch()
unwrap()
int
void
writeBitSet(BitSet bitSet)
Writes a bit set to this buf.void
writeBlockHitResult(BlockHitResult hitResult)
Writes a block hit result to this buf.writeBlockPos(BlockPos pos)
Writes a block position to this buf.writeBoolean(boolean bool)
writeByte(int int2)
writeByteArray(byte[] array)
Writes an array of primitive bytes to this buf.writeBytes(byte[] byte2)
writeBytes(byte[] byte2, int int2, int int3)
writeBytes(ByteBuf byteBuf)
writeBytes(ByteBuf byteBuf, int int2)
writeBytes(ByteBuf byteBuf, int int2, int int3)
int
writeBytes(InputStream inputStream, int int2)
writeBytes(ByteBuffer byteBuffer)
int
writeBytes(FileChannel fileChannel, long long2, int int2)
int
writeBytes(ScatteringByteChannel scatteringByteChannel, int int2)
writeChar(int int2)
int
writeCharSequence(CharSequence charSequence, Charset charset)
writeChunkPos(ChunkPos pos)
Writes a chunk position to this buf.Reads a chunk section position from this buf.<T> void
writeCollection(Collection<T> collection, BiConsumer<PacketByteBuf,T> entrySerializer)
Writes a collection to this buf.Writes a date to this buf.writeDouble(double double2)
writeEnumConstant(Enum<?> instance)
Writes an enum constant to this buf.writeFloat(float float2)
Writes an identifier to this buf.writeInt(int int2)
writeIntArray(int[] array)
Writes an array of primitive ints to this buf.writeIntLE(int int2)
void
writeIntList(IntList list)
Writes a list of primitive ints from this buf.writeItemStack(ItemStack stack)
Writes an item stack to this buf.writeLong(long long2)
writeLongArray(long[] array)
Writes an array of primitive longs to this buf.writeLongLE(long long2)
<K, V> void
writeMap(Map<K,V> map, BiConsumer<PacketByteBuf,K> keySerializer, BiConsumer<PacketByteBuf,V> valueSerializer)
Writes a map to this buf.writeMedium(int int2)
writeMediumLE(int int2)
writeNbt(@Nullable NbtCompound compound)
Writes an NBT compound to this buf.int
writerIndex(int int2)
writeShort(int int2)
writeShortLE(int int2)
writeString(String string)
Writes a string to this buf.writeString(String string, int maxLength)
Writes a string to this buf.Writes a text to this buf.Writes a UUID (universally unique identifier) to this buf.writeVarInt(int value)
Writes a single var int to this buf.writeVarLong(long value)
Writes a single var long to this buf.writeZero(int int2)
Methods inherited from class io.netty.buffer.ByteBuf
getDoubleLE, getFloatLE, readDoubleLE, readFloatLE, setDoubleLE, setFloatLE, writeDoubleLE, writeFloatLE
-
Field Details
-
MAX_VAR_INT_LENGTH
private static final int MAX_VAR_INT_LENGTHThe max number of bytes an encoded var int value may use.Its value is 5. A regular int value always use 4 bytes in contrast.
- See Also:
getVarIntLength(int)
, Constant Field Values- Mappings:
Namespace Name Mixin selector official c
Lob;c:I
intermediary field_33285
Lnet/minecraft/class_2540;field_33285:I
named MAX_VAR_INT_LENGTH
Lnet/minecraft/network/PacketByteBuf;MAX_VAR_INT_LENGTH:I
-
MAX_VAR_LONG_LENGTH
private static final int MAX_VAR_LONG_LENGTHThe max number of bytes an encoded var long value may use.Its value is 10. A regular long value always use 8 bytes in contrast.
- See Also:
getVarLongLength(long)
, Constant Field Values- Mappings:
Namespace Name Mixin selector official d
Lob;d:I
intermediary field_33286
Lnet/minecraft/class_2540;field_33286:I
named MAX_VAR_LONG_LENGTH
Lnet/minecraft/network/PacketByteBuf;MAX_VAR_LONG_LENGTH:I
-
MAX_READ_NBT_SIZE
private static final int MAX_READ_NBT_SIZEThe maximum size, in number of bytes, allowed of the NBT compound read byreadNbt()
.- See Also:
- Constant Field Values
- Mappings:
Namespace Name Mixin selector official e
Lob;e:I
intermediary field_33287
Lnet/minecraft/class_2540;field_33287:I
named MAX_READ_NBT_SIZE
Lnet/minecraft/network/PacketByteBuf;MAX_READ_NBT_SIZE:I
-
DEFAULT_MAX_STRING_LENGTH
public static final short DEFAULT_MAX_STRING_LENGTHThe default max length of strings read or written. This is also the max length of identifiers read or written in their string form.- See Also:
- Constant Field Values
- Mappings:
Namespace Name Mixin selector official a
Lob;a:S
intermediary field_33283
Lnet/minecraft/class_2540;field_33283:S
named DEFAULT_MAX_STRING_LENGTH
Lnet/minecraft/network/PacketByteBuf;DEFAULT_MAX_STRING_LENGTH:S
-
MAX_TEXT_LENGTH
public static final int MAX_TEXT_LENGTHThe maximum size, in terms of JSON string length, allowed of the text read byreadText()
or written bywriteText(Text)
.- See Also:
- Constant Field Values
- Mappings:
Namespace Name Mixin selector official b
Lob;b:I
intermediary field_33284
Lnet/minecraft/class_2540;field_33284:I
named MAX_TEXT_LENGTH
Lnet/minecraft/network/PacketByteBuf;MAX_TEXT_LENGTH:I
-
parent
- Mappings:
Namespace Name Mixin selector official f
Lob;f:Lio/netty/buffer/ByteBuf;
intermediary field_11695
Lnet/minecraft/class_2540;field_11695:Lio/netty/buffer/ByteBuf;
named parent
Lnet/minecraft/network/PacketByteBuf;parent:Lio/netty/buffer/ByteBuf;
-
-
Constructor Details
-
PacketByteBuf
Creates a packet byte buf that delegates its operations to theparent
buf.- Parameters:
parent
- the parent, or delegate, buf- Mappings:
Namespace Name Mixin selector official <init>
Lob;<init>(Lio/netty/buffer/ByteBuf;)V
intermediary <init>
Lnet/minecraft/class_2540;<init>(Lio/netty/buffer/ByteBuf;)V
named <init>
Lnet/minecraft/network/PacketByteBuf;<init>(Lio/netty/buffer/ByteBuf;)V
-
-
Method Details
-
getVarIntLength
public static int getVarIntLength(int value)- Parameters:
value
- the value to encode- Returns:
- the number of bytes a var int
value
uses - Mappings:
Namespace Name Mixin selector official a
Lob;a(I)I
intermediary method_10815
Lnet/minecraft/class_2540;method_10815(I)I
named getVarIntLength
Lnet/minecraft/network/PacketByteBuf;getVarIntLength(I)I
-
getVarLongLength
public static int getVarLongLength(long value)Returns the number of bytes needed to encodevalue
as a var long. Guaranteed to be between1
and 10.- Parameters:
value
- the value to encode- Returns:
- the number of bytes a var long
value
uses - Mappings:
Namespace Name Mixin selector official a
Lob;a(J)I
intermediary method_36129
Lnet/minecraft/class_2540;method_36129(J)I
named getVarLongLength
Lnet/minecraft/network/PacketByteBuf;getVarLongLength(J)I
-
decode
public <T> T decode(com.mojang.serialization.Codec<T> codec)Reads an object from this buf as a compound NBT with the given codec.- Type Parameters:
T
- the decoded object's type- Parameters:
codec
- the codec to decode the object- Returns:
- the read object
- Throws:
EncoderException
- if thecodec
fails to decode the compound NBT- See Also:
encode(Codec, Object)
- Mappings:
Namespace Name Mixin selector official a
Lob;a(Lcom/mojang/serialization/Codec;)Ljava/lang/Object;
intermediary method_29171
Lnet/minecraft/class_2540;method_29171(Lcom/mojang/serialization/Codec;)Ljava/lang/Object;
named decode
Lnet/minecraft/network/PacketByteBuf;decode(Lcom/mojang/serialization/Codec;)Ljava/lang/Object;
-
encode
public <T> void encode(com.mojang.serialization.Codec<T> codec, T object)Writes an object to this buf as a compound NBT with the given codec.- Type Parameters:
T
- the encoded object's type- Parameters:
codec
- the codec to encode the objectobject
- the object to write to this buf- Throws:
EncoderException
- if thecodec
fails to encode the compound NBT- See Also:
decode(Codec)
- Mappings:
Namespace Name Mixin selector official a
Lob;a(Lcom/mojang/serialization/Codec;Ljava/lang/Object;)V
intermediary method_29172
Lnet/minecraft/class_2540;method_29172(Lcom/mojang/serialization/Codec;Ljava/lang/Object;)V
named encode
Lnet/minecraft/network/PacketByteBuf;encode(Lcom/mojang/serialization/Codec;Ljava/lang/Object;)V
-
readCollection
public <T, C extends Collection<T>> C readCollection(IntFunction<C> collectionFactory, Function<PacketByteBuf,T> entryParser)Reads a collection from this buf. The collection is stored as a leading var int size followed by the entries sequentially.- Type Parameters:
T
- the collection's entry typeC
- the collection's type- Parameters:
collectionFactory
- a factory that creates a collection with a given sizeentryParser
- a parser that parses each entry for the collection given this buf- Returns:
- the read collection
- See Also:
writeCollection(Collection, BiConsumer)
,readList(Function)
- Mappings:
Namespace Name Mixin selector official a
Lob;a(Ljava/util/function/IntFunction;Ljava/util/function/Function;)Ljava/util/Collection;
intermediary method_34068
Lnet/minecraft/class_2540;method_34068(Ljava/util/function/IntFunction;Ljava/util/function/Function;)Ljava/util/Collection;
named readCollection
Lnet/minecraft/network/PacketByteBuf;readCollection(Ljava/util/function/IntFunction;Ljava/util/function/Function;)Ljava/util/Collection;
-
writeCollection
public <T> void writeCollection(Collection<T> collection, BiConsumer<PacketByteBuf,T> entrySerializer)Writes a collection to this buf. The collection is stored as a leading var int size followed by the entries sequentially.- Type Parameters:
T
- the list's entry type- Parameters:
collection
- the collection to writeentrySerializer
- a serializer that writes each entry to this buf- See Also:
readCollection(IntFunction, Function)
- Mappings:
Namespace Name Mixin selector official a
Lob;a(Ljava/util/Collection;Ljava/util/function/BiConsumer;)V
intermediary method_34062
Lnet/minecraft/class_2540;method_34062(Ljava/util/Collection;Ljava/util/function/BiConsumer;)V
named writeCollection
Lnet/minecraft/network/PacketByteBuf;writeCollection(Ljava/util/Collection;Ljava/util/function/BiConsumer;)V
-
readList
Reads a collection from this buf as an array list.- Type Parameters:
T
- the list's entry type- Parameters:
entryParser
- a parser that parses each entry for the collection given this buf- Returns:
- the read list
- See Also:
readCollection(IntFunction, Function)
- Mappings:
Namespace Name Mixin selector official a
Lob;a(Ljava/util/function/Function;)Ljava/util/List;
intermediary method_34066
Lnet/minecraft/class_2540;method_34066(Ljava/util/function/Function;)Ljava/util/List;
named readList
Lnet/minecraft/network/PacketByteBuf;readList(Ljava/util/function/Function;)Ljava/util/List;
-
readIntList
Reads a list of primitive ints from this buf. The ints are stored as var ints, with an extra var int in the beginning indicating the size.- Returns:
- the read list
- See Also:
writeIntList(IntList)
,readIntArray()
- API Note:
- To limit the length of the list or array read, use
readIntArray(int)
. - Implementation Note:
- A list of ints has the same format as an int array.
- Mappings:
Namespace Name Mixin selector official a
Lob;a()Lit/unimi/dsi/fastutil/ints/IntList;
intermediary method_34059
Lnet/minecraft/class_2540;method_34059()Lit/unimi/dsi/fastutil/ints/IntList;
named readIntList
Lnet/minecraft/network/PacketByteBuf;readIntList()Lit/unimi/dsi/fastutil/ints/IntList;
-
writeIntList
Writes a list of primitive ints from this buf. The ints are stored as var ints, with an extra var int in the beginning indicating the size.- Parameters:
list
- the list to write- See Also:
readIntList()
,writeIntArray(int[])
- Implementation Note:
- A list of ints has the same format as an int array.
- Mappings:
Namespace Name Mixin selector official a
Lob;a(Lit/unimi/dsi/fastutil/ints/IntList;)V
intermediary method_34060
Lnet/minecraft/class_2540;method_34060(Lit/unimi/dsi/fastutil/ints/IntList;)V
named writeIntList
Lnet/minecraft/network/PacketByteBuf;writeIntList(Lit/unimi/dsi/fastutil/ints/IntList;)V
-
readMap
public <K, V, M extends Map<K, V>> M readMap(IntFunction<M> mapFactory, Function<PacketByteBuf,K> keyParser, Function<PacketByteBuf,V> valueParser)Reads a map from this buf. The map is stored as a leading var int size followed by each key and value pair.- Type Parameters:
K
- the key typeV
- the value typeM
- the map type- Parameters:
mapFactory
- a factory that creates a map with a given sizekeyParser
- a parser that parses each key for the map given this bufvalueParser
- a parser that parses each value for the map given this buf- Returns:
- the read map
- See Also:
writeMap(Map, BiConsumer, BiConsumer)
,readMap(Function, Function)
- Mappings:
Namespace Name Mixin selector official a
Lob;a(Ljava/util/function/IntFunction;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/util/Map;
intermediary method_34069
Lnet/minecraft/class_2540;method_34069(Ljava/util/function/IntFunction;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/util/Map;
named readMap
Lnet/minecraft/network/PacketByteBuf;readMap(Ljava/util/function/IntFunction;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/util/Map;
-
readMap
public <K, V> Map<K,V> readMap(Function<PacketByteBuf,K> keyParser, Function<PacketByteBuf,V> valueParser)Reads a map from this buf as a hash map.- Type Parameters:
K
- the key typeV
- the value type- Parameters:
keyParser
- a parser that parses each key for the map given this bufvalueParser
- a parser that parses each value for the map given this buf- Returns:
- the read map
- See Also:
readMap(IntFunction, Function, Function)
- Mappings:
Namespace Name Mixin selector official a
Lob;a(Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/util/Map;
intermediary method_34067
Lnet/minecraft/class_2540;method_34067(Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/util/Map;
named readMap
Lnet/minecraft/network/PacketByteBuf;readMap(Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/util/Map;
-
writeMap
public <K, V> void writeMap(Map<K,V> map, BiConsumer<PacketByteBuf,K> keySerializer, BiConsumer<PacketByteBuf,V> valueSerializer)Writes a map to this buf. The map is stored as a leading var int size followed by each key and value pair.- Type Parameters:
K
- the key typeV
- the value type- Parameters:
map
- the map to writekeySerializer
- a serializer that writes each key in the map to this bufvalueSerializer
- a serializer that writes each value in the map to this buf- See Also:
readMap(IntFunction, Function, Function)
- Mappings:
Namespace Name Mixin selector official a
Lob;a(Ljava/util/Map;Ljava/util/function/BiConsumer;Ljava/util/function/BiConsumer;)V
intermediary method_34063
Lnet/minecraft/class_2540;method_34063(Ljava/util/Map;Ljava/util/function/BiConsumer;Ljava/util/function/BiConsumer;)V
named writeMap
Lnet/minecraft/network/PacketByteBuf;writeMap(Ljava/util/Map;Ljava/util/function/BiConsumer;Ljava/util/function/BiConsumer;)V
-
forEachInCollection
Iterates a collection from this buf. The collection is stored as a leading var intsize
followed by the entries sequentially. Theconsumer
will be calledsize
times.- Parameters:
consumer
- the consumer to read entries- See Also:
readCollection(IntFunction, Function)
- Mappings:
Namespace Name Mixin selector official a
Lob;a(Ljava/util/function/Consumer;)V
intermediary method_34065
Lnet/minecraft/class_2540;method_34065(Ljava/util/function/Consumer;)V
named forEachInCollection
Lnet/minecraft/network/PacketByteBuf;forEachInCollection(Ljava/util/function/Consumer;)V
-
readByteArray
public byte[] readByteArray()Reads an array of primitive bytes from this buf. The array first has a var int indicating its length, followed by the actual bytes. The array does not have a length limit.- Returns:
- the read byte array
- See Also:
readByteArray(int)
,writeByteArray(byte[])
- Mappings:
Namespace Name Mixin selector official b
Lob;b()[B
intermediary method_10795
Lnet/minecraft/class_2540;method_10795()[B
named readByteArray
Lnet/minecraft/network/PacketByteBuf;readByteArray()[B
-
writeByteArray
Writes an array of primitive bytes to this buf. The array first has a var int indicating its length, followed by the actual bytes.- Parameters:
array
- the array to write- Returns:
- this buf, for chaining
- See Also:
readByteArray()
- Mappings:
Namespace Name Mixin selector official a
Lob;a([B)Lob;
intermediary method_10813
Lnet/minecraft/class_2540;method_10813([B)Lnet/minecraft/class_2540;
named writeByteArray
Lnet/minecraft/network/PacketByteBuf;writeByteArray([B)Lnet/minecraft/network/PacketByteBuf;
-
readByteArray
public byte[] readByteArray(int maxSize)Reads an array of primitive bytes from this buf. The array first has a var int indicating its length, followed by the actual bytes. The array has a length limit given bymaxSize
.- Parameters:
maxSize
- the max length of the read array- Returns:
- the read byte array
- Throws:
DecoderException
- if the read array has a length overmaxSize
- See Also:
readByteArray()
,writeByteArray(byte[])
- Mappings:
Namespace Name Mixin selector official b
Lob;b(I)[B
intermediary method_10803
Lnet/minecraft/class_2540;method_10803(I)[B
named readByteArray
Lnet/minecraft/network/PacketByteBuf;readByteArray(I)[B
-
writeIntArray
Writes an array of primitive ints to this buf. The array first has a var int indicating its length, followed by the var int entries.- Parameters:
array
- the array to write- Returns:
- this buf, for chaining
- See Also:
readIntArray(int)
,writeIntArray(int[])
,writeIntList(IntList)
- Implementation Note:
- An int array has the same format as a list of ints.
- Mappings:
Namespace Name Mixin selector official a
Lob;a([I)Lob;
intermediary method_10806
Lnet/minecraft/class_2540;method_10806([I)Lnet/minecraft/class_2540;
named writeIntArray
Lnet/minecraft/network/PacketByteBuf;writeIntArray([I)Lnet/minecraft/network/PacketByteBuf;
-
readIntArray
public int[] readIntArray()Reads an array of primitive ints from this buf. The array first has a var int indicating its length, followed by the var int entries. The array does not have a length limit.- Returns:
- the read byte array
- See Also:
readIntArray(int)
,writeIntArray(int[])
,readIntList()
- Implementation Note:
- An int array has the same format as a list of ints.
- Mappings:
Namespace Name Mixin selector official c
Lob;c()[I
intermediary method_10787
Lnet/minecraft/class_2540;method_10787()[I
named readIntArray
Lnet/minecraft/network/PacketByteBuf;readIntArray()[I
-
readIntArray
public int[] readIntArray(int maxSize)Reads an array of primitive ints from this buf. The array first has a var int indicating its length, followed by the var int entries. The array has a length limit given bymaxSize
.- Parameters:
maxSize
- the max length of the read array- Returns:
- the read byte array
- Throws:
DecoderException
- if the read array has a length overmaxSize
- See Also:
readIntArray()
,writeIntArray(int[])
- Implementation Note:
- An int array has the same format as a list of ints.
- Mappings:
Namespace Name Mixin selector official c
Lob;c(I)[I
intermediary method_10799
Lnet/minecraft/class_2540;method_10799(I)[I
named readIntArray
Lnet/minecraft/network/PacketByteBuf;readIntArray(I)[I
-
writeLongArray
Writes an array of primitive longs to this buf. The array first has a var int indicating its length, followed by the regular long (not var long) values.- Parameters:
array
- the array to write- Returns:
- this buf, for chaining
- See Also:
readLongArray()
- Mappings:
Namespace Name Mixin selector official a
Lob;a([J)Lob;
intermediary method_10789
Lnet/minecraft/class_2540;method_10789([J)Lnet/minecraft/class_2540;
named writeLongArray
Lnet/minecraft/network/PacketByteBuf;writeLongArray([J)Lnet/minecraft/network/PacketByteBuf;
-
readLongArray
public long[] readLongArray()Reads an array of primitive longs from this buf. The array first has a var int indicating its length, followed by the regular long (not var long) values. The array does not have a length limit.- Returns:
- the read long array
- See Also:
writeLongArray(long[])
,readLongArray(long[])
,readLongArray(long[], int)
- Mappings:
Namespace Name Mixin selector official d
Lob;d()[J
intermediary method_33134
Lnet/minecraft/class_2540;method_33134()[J
named readLongArray
Lnet/minecraft/network/PacketByteBuf;readLongArray()[J
-
readLongArray
Reads an array of primitive longs from this buf. The array first has a var int indicating its length, followed by the regular long (not var long) values. The array does not have a length limit.Only when
toArray
is notnull
andtoArray.length
equals to the length var int read will thetoArray
be reused and returned; otherwise, a new array of proper size is created.- Parameters:
toArray
- the array to reuse- Returns:
- the read long array
- See Also:
writeLongArray(long[])
,readLongArray()
,readLongArray(long[], int)
- Mappings:
Namespace Name Mixin selector official b
Lob;b([J)[J
intermediary method_10801
Lnet/minecraft/class_2540;method_10801([J)[J
named readLongArray
Lnet/minecraft/network/PacketByteBuf;readLongArray([J)[J
-
readLongArray
public long[] readLongArray(@Nullable @org.jetbrains.annotations.Nullable long[] toArray, int maxSize)Reads an array of primitive longs from this buf. The array first has a var int indicating its length, followed by the regular long (not var long) values. The array has a length limit ofmaxSize
.Only when
toArray
is notnull
andtoArray.length
equals to the length var int read will thetoArray
be reused and returned; otherwise, a new array of proper size is created.- Parameters:
toArray
- the array to reusemaxSize
- the max length of the read array- Returns:
- the read long array
- Throws:
DecoderException
- if the read array has a length overmaxSize
- See Also:
writeLongArray(long[])
,readLongArray()
,readLongArray(long[])
- Mappings:
Namespace Name Mixin selector official a
Lob;a([JI)[J
intermediary method_10809
Lnet/minecraft/class_2540;method_10809([JI)[J
named readLongArray
Lnet/minecraft/network/PacketByteBuf;readLongArray([JI)[J
-
getWrittenBytes
public byte[] getWrittenBytes()Returns an array of bytes of contents in this buf between index0
and thewriterIndex()
.- Mappings:
Namespace Name Mixin selector official e
Lob;e()[B
intermediary method_36132
Lnet/minecraft/class_2540;method_36132()[B
named getWrittenBytes
Lnet/minecraft/network/PacketByteBuf;getWrittenBytes()[B
-
readBlockPos
Reads a block position from this buf. A block position is represented by a regular long.- Returns:
- the read block pos
- See Also:
writeBlockPos(BlockPos)
- Mappings:
Namespace Name Mixin selector official f
Lob;f()Lgb;
intermediary method_10811
Lnet/minecraft/class_2540;method_10811()Lnet/minecraft/class_2338;
named readBlockPos
Lnet/minecraft/network/PacketByteBuf;readBlockPos()Lnet/minecraft/util/math/BlockPos;
-
writeBlockPos
Writes a block position to this buf. A block position is represented by a regular long.- Parameters:
pos
- the pos to write- Returns:
- this buf, for chaining
- See Also:
readBlockPos()
- Mappings:
Namespace Name Mixin selector official a
Lob;a(Lgb;)Lob;
intermediary method_10807
Lnet/minecraft/class_2540;method_10807(Lnet/minecraft/class_2338;)Lnet/minecraft/class_2540;
named writeBlockPos
Lnet/minecraft/network/PacketByteBuf;writeBlockPos(Lnet/minecraft/util/math/BlockPos;)Lnet/minecraft/network/PacketByteBuf;
-
readChunkPos
Reads a chunk position from this buf. A chunk position is represented by a regular long.- Returns:
- the read chunk position
- See Also:
writeChunkPos(ChunkPos)
- Mappings:
Namespace Name Mixin selector official g
Lob;g()Lbvc;
intermediary method_36133
Lnet/minecraft/class_2540;method_36133()Lnet/minecraft/class_1923;
named readChunkPos
Lnet/minecraft/network/PacketByteBuf;readChunkPos()Lnet/minecraft/util/math/ChunkPos;
-
writeChunkPos
Writes a chunk position to this buf. A chunk position is represented by a regular long.- Parameters:
pos
- the chunk position to write- Returns:
- this buf, for chaining
- See Also:
readChunkPos()
- Mappings:
Namespace Name Mixin selector official a
Lob;a(Lbvc;)Lob;
intermediary method_36130
Lnet/minecraft/class_2540;method_36130(Lnet/minecraft/class_1923;)Lnet/minecraft/class_2540;
named writeChunkPos
Lnet/minecraft/network/PacketByteBuf;writeChunkPos(Lnet/minecraft/util/math/ChunkPos;)Lnet/minecraft/network/PacketByteBuf;
-
readChunkSectionPos
Reads a chunk section position from this buf. A chunk section position is represented by a regular long.- Returns:
- the read chunk section pos
- See Also:
writeChunkSectionPos(ChunkSectionPos)
- Mappings:
Namespace Name Mixin selector official h
Lob;h()Lgu;
intermediary method_19456
Lnet/minecraft/class_2540;method_19456()Lnet/minecraft/class_4076;
named readChunkSectionPos
Lnet/minecraft/network/PacketByteBuf;readChunkSectionPos()Lnet/minecraft/util/math/ChunkSectionPos;
-
writeChunkSectionPos
Reads a chunk section position from this buf. A chunk section position is represented by a regular long.- Parameters:
pos
- the section position to write- Returns:
- this buf, for chaining
- See Also:
readChunkSectionPos()
- Mappings:
Namespace Name Mixin selector official a
Lob;a(Lgu;)Lob;
intermediary method_36131
Lnet/minecraft/class_2540;method_36131(Lnet/minecraft/class_4076;)Lnet/minecraft/class_2540;
named writeChunkSectionPos
Lnet/minecraft/network/PacketByteBuf;writeChunkSectionPos(Lnet/minecraft/util/math/ChunkSectionPos;)Lnet/minecraft/network/PacketByteBuf;
-
readText
Reads a text from this buf. A text is represented by a JSON string with max length 262144.- Returns:
- the read text
- Throws:
DecoderException
- if the JSON string read exceeds 262144 in length- See Also:
writeText(Text)
,MAX_TEXT_LENGTH
- Mappings:
Namespace Name Mixin selector official i
Lob;i()Lon;
intermediary method_10808
Lnet/minecraft/class_2540;method_10808()Lnet/minecraft/class_2561;
named readText
Lnet/minecraft/network/PacketByteBuf;readText()Lnet/minecraft/text/Text;
-
writeText
Writes a text to this buf. A text is represented by a JSON string with max length 262144.- Parameters:
text
- the text to write- Returns:
- this buf, for chaining
- Throws:
EncoderException
- if the JSON string written exceeds 262144 in length- See Also:
readText()
,MAX_TEXT_LENGTH
- Mappings:
Namespace Name Mixin selector official a
Lob;a(Lon;)Lob;
intermediary method_10805
Lnet/minecraft/class_2540;method_10805(Lnet/minecraft/class_2561;)Lnet/minecraft/class_2540;
named writeText
Lnet/minecraft/network/PacketByteBuf;writeText(Lnet/minecraft/text/Text;)Lnet/minecraft/network/PacketByteBuf;
-
readEnumConstant
Reads an enum constant from this buf. An enum constant is represented by a var int indicating its ordinal.- Parameters:
enumClass
- the enum class, for constant lookup- Returns:
- the read enum constant
- See Also:
writeEnumConstant(Enum)
- Mappings:
Namespace Name Mixin selector official a
Lob;a(Ljava/lang/Class;)Ljava/lang/Enum;
intermediary method_10818
Lnet/minecraft/class_2540;method_10818(Ljava/lang/Class;)Ljava/lang/Enum;
named readEnumConstant
Lnet/minecraft/network/PacketByteBuf;readEnumConstant(Ljava/lang/Class;)Ljava/lang/Enum;
-
writeEnumConstant
Writes an enum constant to this buf. An enum constant is represented by a var int indicating its ordinal.- Parameters:
instance
- the enum constant to write- Returns:
- this buf, for chaining
- See Also:
readEnumConstant(Class)
- Mappings:
Namespace Name Mixin selector official a
Lob;a(Ljava/lang/Enum;)Lob;
intermediary method_10817
Lnet/minecraft/class_2540;method_10817(Ljava/lang/Enum;)Lnet/minecraft/class_2540;
named writeEnumConstant
Lnet/minecraft/network/PacketByteBuf;writeEnumConstant(Ljava/lang/Enum;)Lnet/minecraft/network/PacketByteBuf;
-
readVarInt
public int readVarInt()Reads a single var int from this buf.- Returns:
- the value read
- See Also:
writeVarInt(int)
- Mappings:
Namespace Name Mixin selector official j
Lob;j()I
intermediary method_10816
Lnet/minecraft/class_2540;method_10816()I
named readVarInt
Lnet/minecraft/network/PacketByteBuf;readVarInt()I
-
readVarLong
public long readVarLong()Reads a single var long from this buf.- Returns:
- the value read
- See Also:
writeVarLong(long)
- Mappings:
Namespace Name Mixin selector official k
Lob;k()J
intermediary method_10792
Lnet/minecraft/class_2540;method_10792()J
named readVarLong
Lnet/minecraft/network/PacketByteBuf;readVarLong()J
-
writeUuid
Writes a UUID (universally unique identifier) to this buf. A UUID is represented by two regular longs.- Parameters:
uuid
- the UUID to write- Returns:
- this buf, for chaining
- See Also:
readUuid()
- Mappings:
Namespace Name Mixin selector official a
Lob;a(Ljava/util/UUID;)Lob;
intermediary method_10797
Lnet/minecraft/class_2540;method_10797(Ljava/util/UUID;)Lnet/minecraft/class_2540;
named writeUuid
Lnet/minecraft/network/PacketByteBuf;writeUuid(Ljava/util/UUID;)Lnet/minecraft/network/PacketByteBuf;
-
readUuid
Reads a UUID (universally unique identifier) from this buf. A UUID is represented by two regular longs.- Returns:
- the read UUID
- See Also:
writeUuid(UUID)
- Mappings:
Namespace Name Mixin selector official l
Lob;l()Ljava/util/UUID;
intermediary method_10790
Lnet/minecraft/class_2540;method_10790()Ljava/util/UUID;
named readUuid
Lnet/minecraft/network/PacketByteBuf;readUuid()Ljava/util/UUID;
-
writeVarInt
Writes a single var int to this buf.Compared to regular ints, var ints may use less bytes (ranging from 1 to 5, where regular ints use 4) when representing smaller positive numbers.
- Parameters:
value
- the value to write- Returns:
- this buf, for chaining
- See Also:
readVarInt()
,getVarIntLength(int)
- Mappings:
Namespace Name Mixin selector official d
Lob;d(I)Lob;
intermediary method_10804
Lnet/minecraft/class_2540;method_10804(I)Lnet/minecraft/class_2540;
named writeVarInt
Lnet/minecraft/network/PacketByteBuf;writeVarInt(I)Lnet/minecraft/network/PacketByteBuf;
-
writeVarLong
Writes a single var long to this buf.Compared to regular longs, var longs may use less bytes when representing smaller positive numbers.
- Parameters:
value
- the value to write- Returns:
- this buf, for chaining
- See Also:
readVarLong()
,getVarLongLength(long)
- Mappings:
Namespace Name Mixin selector official b
Lob;b(J)Lob;
intermediary method_10791
Lnet/minecraft/class_2540;method_10791(J)Lnet/minecraft/class_2540;
named writeVarLong
Lnet/minecraft/network/PacketByteBuf;writeVarLong(J)Lnet/minecraft/network/PacketByteBuf;
-
writeNbt
Writes an NBT compound to this buf. The binary representation of NBT is handled byNbtIo
. Ifcompound
isnull
, it is treated as an NBT null.- Parameters:
compound
- the compound to write- Returns:
- this buf, for chaining
- Throws:
EncoderException
- if the NBT cannot be written- See Also:
readNbt()
,readUnlimitedNbt()
,readNbt(NbtTagSizeTracker)
- Mappings:
Namespace Name Mixin selector official a
Lob;a(Lmv;)Lob;
intermediary method_10794
Lnet/minecraft/class_2540;method_10794(Lnet/minecraft/class_2487;)Lnet/minecraft/class_2540;
named writeNbt
Lnet/minecraft/network/PacketByteBuf;writeNbt(Lnet/minecraft/nbt/NbtCompound;)Lnet/minecraft/network/PacketByteBuf;
-
readNbt
Reads an NBT compound from this buf. The binary representation of NBT is handled byNbtIo
. If an NBT null is encountered, this method returnsnull
. The compound can have a maximum size of 2097152 bytes.- Returns:
- the read compound, may be
null
- Throws:
EncoderException
- if the NBT cannot be readRuntimeException
- if the compound exceeds the allowed maximum size- See Also:
writeNbt(NbtCompound)
,readUnlimitedNbt()
,readNbt(NbtTagSizeTracker)
,MAX_READ_NBT_SIZE
- Mappings:
Namespace Name Mixin selector official m
Lob;m()Lmv;
intermediary method_10798
Lnet/minecraft/class_2540;method_10798()Lnet/minecraft/class_2487;
named readNbt
Lnet/minecraft/network/PacketByteBuf;readNbt()Lnet/minecraft/nbt/NbtCompound;
-
readUnlimitedNbt
Reads an NBT compound from this buf. The binary representation of NBT is handled byNbtIo
. If an NBT null is encountered, this method returnsnull
. The compound does not have a size limit.- Returns:
- the read compound, may be
null
- Throws:
EncoderException
- if the NBT cannot be read- See Also:
writeNbt(NbtCompound)
,readNbt()
,readNbt(NbtTagSizeTracker)
- API Note:
- Since this version does not have a size limit, it may be vulnerable to malicious NBT spam attacks.
- Mappings:
Namespace Name Mixin selector official n
Lob;n()Lmv;
intermediary method_30617
Lnet/minecraft/class_2540;method_30617()Lnet/minecraft/class_2487;
named readUnlimitedNbt
Lnet/minecraft/network/PacketByteBuf;readUnlimitedNbt()Lnet/minecraft/nbt/NbtCompound;
-
readNbt
Reads an NBT compound from this buf. The binary representation of NBT is handled byNbtIo
. If an NBT null is encountered, this method returnsnull
. The compound can have a maximum size controlled by thesizeTracker
.- Returns:
- the read compound, may be
null
- Throws:
EncoderException
- if the NBT cannot be readRuntimeException
- if the compound exceeds the allowed maximum size- See Also:
writeNbt(NbtCompound)
,readNbt()
,readUnlimitedNbt()
- Mappings:
Namespace Name Mixin selector official a
Lob;a(Lne;)Lmv;
intermediary method_30616
Lnet/minecraft/class_2540;method_30616(Lnet/minecraft/class_2505;)Lnet/minecraft/class_2487;
named readNbt
Lnet/minecraft/network/PacketByteBuf;readNbt(Lnet/minecraft/nbt/NbtTagSizeTracker;)Lnet/minecraft/nbt/NbtCompound;
-
writeItemStack
Writes an item stack to this buf. An item stack is represented by a boolean indicating whether it exists; if it exists, it is followed by a var int for its raw id, a byte for its count, and an NBT compound for its tag.- Parameters:
stack
- the stack to write- Returns:
- this buf, for chaining
- See Also:
readItemStack()
- Mappings:
Namespace Name Mixin selector official a
Lob;a(Lbpx;)Lob;
intermediary method_10793
Lnet/minecraft/class_2540;method_10793(Lnet/minecraft/class_1799;)Lnet/minecraft/class_2540;
named writeItemStack
Lnet/minecraft/network/PacketByteBuf;writeItemStack(Lnet/minecraft/item/ItemStack;)Lnet/minecraft/network/PacketByteBuf;
-
readItemStack
Reads an item stack from this buf. An item stack is represented by a boolean indicating whether it exists; if it exists, it is followed by a var int for its raw id, a byte for its count, and an NBT compound for its tag.- Returns:
- the read item stack
- See Also:
writeItemStack(ItemStack)
- Mappings:
Namespace Name Mixin selector official o
Lob;o()Lbpx;
intermediary method_10819
Lnet/minecraft/class_2540;method_10819()Lnet/minecraft/class_1799;
named readItemStack
Lnet/minecraft/network/PacketByteBuf;readItemStack()Lnet/minecraft/item/ItemStack;
-
readString
Reads a string from this buf. A string is represented by a byte array of its UTF-8 data. The string can have a maximum length of 32767.- Returns:
- the string read
- Throws:
DecoderException
- if the string read exceeds the maximum length- See Also:
readString(int)
,writeString(String)
,writeString(String, int)
- Mappings:
Namespace Name Mixin selector official p
Lob;p()Ljava/lang/String;
intermediary method_19772
Lnet/minecraft/class_2540;method_19772()Ljava/lang/String;
named readString
Lnet/minecraft/network/PacketByteBuf;readString()Ljava/lang/String;
-
readString
Reads a string from this buf. A string is represented by a byte array of its UTF-8 data. The string can have a maximum length ofmaxLength
.- Parameters:
maxLength
- the maximum length of the string read- Returns:
- the string read
- Throws:
DecoderException
- if the string read is longer thanmaxLength
- See Also:
readString()
,writeString(String)
,writeString(String, int)
- Mappings:
Namespace Name Mixin selector official e
Lob;e(I)Ljava/lang/String;
intermediary method_10800
Lnet/minecraft/class_2540;method_10800(I)Ljava/lang/String;
named readString
Lnet/minecraft/network/PacketByteBuf;readString(I)Ljava/lang/String;
-
writeString
Writes a string to this buf. A string is represented by a byte array of its UTF-8 data. That byte array can have a maximum length of 32767.- Parameters:
string
- the string to write- Returns:
- this buf, for chaining
- Throws:
EncoderException
- if the byte array of the string to write is longer than 32767- See Also:
readString()
,readString(int)
,writeString(String, int)
- Mappings:
Namespace Name Mixin selector official a
Lob;a(Ljava/lang/String;)Lob;
intermediary method_10814
Lnet/minecraft/class_2540;method_10814(Ljava/lang/String;)Lnet/minecraft/class_2540;
named writeString
Lnet/minecraft/network/PacketByteBuf;writeString(Ljava/lang/String;)Lnet/minecraft/network/PacketByteBuf;
-
writeString
Writes a string to this buf. A string is represented by a byte array of its UTF-8 data. That byte array can have a maximum length ofmaxLength
.- Parameters:
string
- the string to writemaxLength
- the max length of the byte array- Returns:
- this buf, for chaining
- Throws:
EncoderException
- if the byte array of the string to write is longer thanmaxLength
- See Also:
readString()
,readString(int)
,writeString(String)
- Mappings:
Namespace Name Mixin selector official a
Lob;a(Ljava/lang/String;I)Lob;
intermediary method_10788
Lnet/minecraft/class_2540;method_10788(Ljava/lang/String;I)Lnet/minecraft/class_2540;
named writeString
Lnet/minecraft/network/PacketByteBuf;writeString(Ljava/lang/String;I)Lnet/minecraft/network/PacketByteBuf;
-
readIdentifier
Reads an identifier from this buf. An identifier is represented by its string form. The read identifier's string form can have a max length of 32767.- Returns:
- the read identifier
- Throws:
DecoderException
- if the identifier's string form is longer than 32767- See Also:
writeIdentifier(Identifier)
- Mappings:
Namespace Name Mixin selector official q
Lob;q()Lwp;
intermediary method_10810
Lnet/minecraft/class_2540;method_10810()Lnet/minecraft/class_2960;
named readIdentifier
Lnet/minecraft/network/PacketByteBuf;readIdentifier()Lnet/minecraft/util/Identifier;
-
writeIdentifier
Writes an identifier to this buf. An identifier is represented by its string form. The written identifier's byte array can have a max length of 32767.- Parameters:
id
- the identifier to write- Returns:
- the read identifier
- Throws:
EncoderException
- if theid
's byte array is longer than 32767- See Also:
readIdentifier()
- Mappings:
Namespace Name Mixin selector official a
Lob;a(Lwp;)Lob;
intermediary method_10812
Lnet/minecraft/class_2540;method_10812(Lnet/minecraft/class_2960;)Lnet/minecraft/class_2540;
named writeIdentifier
Lnet/minecraft/network/PacketByteBuf;writeIdentifier(Lnet/minecraft/util/Identifier;)Lnet/minecraft/network/PacketByteBuf;
-
readDate
Reads a date from this buf. A date is represented by its time, a regular long.- Returns:
- the read date
- See Also:
writeDate(Date)
- Mappings:
Namespace Name Mixin selector official r
Lob;r()Ljava/util/Date;
intermediary method_10802
Lnet/minecraft/class_2540;method_10802()Ljava/util/Date;
named readDate
Lnet/minecraft/network/PacketByteBuf;readDate()Ljava/util/Date;
-
writeDate
Writes a date to this buf. A date is represented by its time, a regular long.- Parameters:
date
- the date to write- Returns:
- this buf, for chaining
- See Also:
readDate()
- Mappings:
Namespace Name Mixin selector official a
Lob;a(Ljava/util/Date;)Lob;
intermediary method_10796
Lnet/minecraft/class_2540;method_10796(Ljava/util/Date;)Lnet/minecraft/class_2540;
named writeDate
Lnet/minecraft/network/PacketByteBuf;writeDate(Ljava/util/Date;)Lnet/minecraft/network/PacketByteBuf;
-
readBlockHitResult
Reads a block hit result from this buf. A block hit result is represented by a block position, a direction enum constant, 3 floats for the hit offset position, and a boolean for whether the hit was inside a block.- Returns:
- the read block hit result
- See Also:
writeBlockHitResult(BlockHitResult)
- Mappings:
Namespace Name Mixin selector official s
Lob;s()Ldlx;
intermediary method_17814
Lnet/minecraft/class_2540;method_17814()Lnet/minecraft/class_3965;
named readBlockHitResult
Lnet/minecraft/network/PacketByteBuf;readBlockHitResult()Lnet/minecraft/util/hit/BlockHitResult;
-
writeBlockHitResult
Writes a block hit result to this buf. A block hit result is represented by a block position, a direction enum constant, 3 floats for the hit offset position, and a boolean for whether the hit was inside a block.- Parameters:
hitResult
- the block hit result to write- See Also:
readBlockHitResult()
- Mappings:
Namespace Name Mixin selector official a
Lob;a(Ldlx;)V
intermediary method_17813
Lnet/minecraft/class_2540;method_17813(Lnet/minecraft/class_3965;)V
named writeBlockHitResult
Lnet/minecraft/network/PacketByteBuf;writeBlockHitResult(Lnet/minecraft/util/hit/BlockHitResult;)V
-
readBitSet
Reads a bit set from this buf. A bit set is represented by a long array.- Returns:
- the read bit set
- See Also:
writeBitSet(BitSet)
- Mappings:
Namespace Name Mixin selector official t
Lob;t()Ljava/util/BitSet;
intermediary method_33558
Lnet/minecraft/class_2540;method_33558()Ljava/util/BitSet;
named readBitSet
Lnet/minecraft/network/PacketByteBuf;readBitSet()Ljava/util/BitSet;
-
writeBitSet
Writes a bit set to this buf. A bit set is represented by a long array.- Parameters:
bitSet
- the bit set to write- See Also:
readBitSet()
- Mappings:
Namespace Name Mixin selector official a
Lob;a(Ljava/util/BitSet;)V
intermediary method_33557
Lnet/minecraft/class_2540;method_33557(Ljava/util/BitSet;)V
named writeBitSet
Lnet/minecraft/network/PacketByteBuf;writeBitSet(Ljava/util/BitSet;)V
-
capacity
public int capacity() -
capacity
- Specified by:
capacity
in classByteBuf
- Mappings:
Namespace Name Mixin selector official capacity
Lob;capacity(I)Lio/netty/buffer/ByteBuf;
intermediary capacity
Lnet/minecraft/class_2540;capacity(I)Lio/netty/buffer/ByteBuf;
named capacity
Lnet/minecraft/network/PacketByteBuf;capacity(I)Lio/netty/buffer/ByteBuf;
-
maxCapacity
public int maxCapacity()- Specified by:
maxCapacity
in classByteBuf
- Mappings:
Namespace Name Mixin selector official maxCapacity
Lob;maxCapacity()I
intermediary maxCapacity
Lnet/minecraft/class_2540;maxCapacity()I
named maxCapacity
Lnet/minecraft/network/PacketByteBuf;maxCapacity()I
-
alloc
- Specified by:
alloc
in classByteBuf
- Mappings:
Namespace Name Mixin selector official alloc
Lob;alloc()Lio/netty/buffer/ByteBufAllocator;
intermediary alloc
Lnet/minecraft/class_2540;alloc()Lio/netty/buffer/ByteBufAllocator;
named alloc
Lnet/minecraft/network/PacketByteBuf;alloc()Lio/netty/buffer/ByteBufAllocator;
-
order
-
order
- Specified by:
order
in classByteBuf
- Mappings:
Namespace Name Mixin selector official order
Lob;order(Ljava/nio/ByteOrder;)Lio/netty/buffer/ByteBuf;
intermediary order
Lnet/minecraft/class_2540;order(Ljava/nio/ByteOrder;)Lio/netty/buffer/ByteBuf;
named order
Lnet/minecraft/network/PacketByteBuf;order(Ljava/nio/ByteOrder;)Lio/netty/buffer/ByteBuf;
-
unwrap
-
isDirect
public boolean isDirect() -
isReadOnly
public boolean isReadOnly()- Specified by:
isReadOnly
in classByteBuf
- Mappings:
Namespace Name Mixin selector official isReadOnly
Lob;isReadOnly()Z
intermediary isReadOnly
Lnet/minecraft/class_2540;isReadOnly()Z
named isReadOnly
Lnet/minecraft/network/PacketByteBuf;isReadOnly()Z
-
asReadOnly
- Specified by:
asReadOnly
in classByteBuf
- Mappings:
Namespace Name Mixin selector official asReadOnly
Lob;asReadOnly()Lio/netty/buffer/ByteBuf;
intermediary asReadOnly
Lnet/minecraft/class_2540;asReadOnly()Lio/netty/buffer/ByteBuf;
named asReadOnly
Lnet/minecraft/network/PacketByteBuf;asReadOnly()Lio/netty/buffer/ByteBuf;
-
readerIndex
public int readerIndex()- Specified by:
readerIndex
in classByteBuf
- Mappings:
Namespace Name Mixin selector official readerIndex
Lob;readerIndex()I
intermediary readerIndex
Lnet/minecraft/class_2540;readerIndex()I
named readerIndex
Lnet/minecraft/network/PacketByteBuf;readerIndex()I
-
readerIndex
- Specified by:
readerIndex
in classByteBuf
- Mappings:
Namespace Name Mixin selector official readerIndex
Lob;readerIndex(I)Lio/netty/buffer/ByteBuf;
intermediary readerIndex
Lnet/minecraft/class_2540;readerIndex(I)Lio/netty/buffer/ByteBuf;
named readerIndex
Lnet/minecraft/network/PacketByteBuf;readerIndex(I)Lio/netty/buffer/ByteBuf;
-
writerIndex
public int writerIndex()- Specified by:
writerIndex
in classByteBuf
- Mappings:
Namespace Name Mixin selector official writerIndex
Lob;writerIndex()I
intermediary writerIndex
Lnet/minecraft/class_2540;writerIndex()I
named writerIndex
Lnet/minecraft/network/PacketByteBuf;writerIndex()I
-
writerIndex
- Specified by:
writerIndex
in classByteBuf
- Mappings:
Namespace Name Mixin selector official writerIndex
Lob;writerIndex(I)Lio/netty/buffer/ByteBuf;
intermediary writerIndex
Lnet/minecraft/class_2540;writerIndex(I)Lio/netty/buffer/ByteBuf;
named writerIndex
Lnet/minecraft/network/PacketByteBuf;writerIndex(I)Lio/netty/buffer/ByteBuf;
-
setIndex
- Specified by:
setIndex
in classByteBuf
- Mappings:
Namespace Name Mixin selector official setIndex
Lob;setIndex(II)Lio/netty/buffer/ByteBuf;
intermediary setIndex
Lnet/minecraft/class_2540;setIndex(II)Lio/netty/buffer/ByteBuf;
named setIndex
Lnet/minecraft/network/PacketByteBuf;setIndex(II)Lio/netty/buffer/ByteBuf;
-
readableBytes
public int readableBytes()- Specified by:
readableBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official readableBytes
Lob;readableBytes()I
intermediary readableBytes
Lnet/minecraft/class_2540;readableBytes()I
named readableBytes
Lnet/minecraft/network/PacketByteBuf;readableBytes()I
-
writableBytes
public int writableBytes()- Specified by:
writableBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official writableBytes
Lob;writableBytes()I
intermediary writableBytes
Lnet/minecraft/class_2540;writableBytes()I
named writableBytes
Lnet/minecraft/network/PacketByteBuf;writableBytes()I
-
maxWritableBytes
public int maxWritableBytes()- Specified by:
maxWritableBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official maxWritableBytes
Lob;maxWritableBytes()I
intermediary maxWritableBytes
Lnet/minecraft/class_2540;maxWritableBytes()I
named maxWritableBytes
Lnet/minecraft/network/PacketByteBuf;maxWritableBytes()I
-
isReadable
public boolean isReadable()- Specified by:
isReadable
in classByteBuf
- Mappings:
Namespace Name Mixin selector official isReadable
Lob;isReadable()Z
intermediary isReadable
Lnet/minecraft/class_2540;isReadable()Z
named isReadable
Lnet/minecraft/network/PacketByteBuf;isReadable()Z
-
isReadable
public boolean isReadable(int int2)- Specified by:
isReadable
in classByteBuf
- Mappings:
Namespace Name Mixin selector official isReadable
Lob;isReadable(I)Z
intermediary isReadable
Lnet/minecraft/class_2540;isReadable(I)Z
named isReadable
Lnet/minecraft/network/PacketByteBuf;isReadable(I)Z
-
isWritable
public boolean isWritable()- Specified by:
isWritable
in classByteBuf
- Mappings:
Namespace Name Mixin selector official isWritable
Lob;isWritable()Z
intermediary isWritable
Lnet/minecraft/class_2540;isWritable()Z
named isWritable
Lnet/minecraft/network/PacketByteBuf;isWritable()Z
-
isWritable
public boolean isWritable(int int2)- Specified by:
isWritable
in classByteBuf
- Mappings:
Namespace Name Mixin selector official isWritable
Lob;isWritable(I)Z
intermediary isWritable
Lnet/minecraft/class_2540;isWritable(I)Z
named isWritable
Lnet/minecraft/network/PacketByteBuf;isWritable(I)Z
-
clear
-
markReaderIndex
- Specified by:
markReaderIndex
in classByteBuf
- Mappings:
Namespace Name Mixin selector official markReaderIndex
Lob;markReaderIndex()Lio/netty/buffer/ByteBuf;
intermediary markReaderIndex
Lnet/minecraft/class_2540;markReaderIndex()Lio/netty/buffer/ByteBuf;
named markReaderIndex
Lnet/minecraft/network/PacketByteBuf;markReaderIndex()Lio/netty/buffer/ByteBuf;
-
resetReaderIndex
- Specified by:
resetReaderIndex
in classByteBuf
- Mappings:
Namespace Name Mixin selector official resetReaderIndex
Lob;resetReaderIndex()Lio/netty/buffer/ByteBuf;
intermediary resetReaderIndex
Lnet/minecraft/class_2540;resetReaderIndex()Lio/netty/buffer/ByteBuf;
named resetReaderIndex
Lnet/minecraft/network/PacketByteBuf;resetReaderIndex()Lio/netty/buffer/ByteBuf;
-
markWriterIndex
- Specified by:
markWriterIndex
in classByteBuf
- Mappings:
Namespace Name Mixin selector official markWriterIndex
Lob;markWriterIndex()Lio/netty/buffer/ByteBuf;
intermediary markWriterIndex
Lnet/minecraft/class_2540;markWriterIndex()Lio/netty/buffer/ByteBuf;
named markWriterIndex
Lnet/minecraft/network/PacketByteBuf;markWriterIndex()Lio/netty/buffer/ByteBuf;
-
resetWriterIndex
- Specified by:
resetWriterIndex
in classByteBuf
- Mappings:
Namespace Name Mixin selector official resetWriterIndex
Lob;resetWriterIndex()Lio/netty/buffer/ByteBuf;
intermediary resetWriterIndex
Lnet/minecraft/class_2540;resetWriterIndex()Lio/netty/buffer/ByteBuf;
named resetWriterIndex
Lnet/minecraft/network/PacketByteBuf;resetWriterIndex()Lio/netty/buffer/ByteBuf;
-
discardReadBytes
- Specified by:
discardReadBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official discardReadBytes
Lob;discardReadBytes()Lio/netty/buffer/ByteBuf;
intermediary discardReadBytes
Lnet/minecraft/class_2540;discardReadBytes()Lio/netty/buffer/ByteBuf;
named discardReadBytes
Lnet/minecraft/network/PacketByteBuf;discardReadBytes()Lio/netty/buffer/ByteBuf;
-
discardSomeReadBytes
- Specified by:
discardSomeReadBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official discardSomeReadBytes
Lob;discardSomeReadBytes()Lio/netty/buffer/ByteBuf;
intermediary discardSomeReadBytes
Lnet/minecraft/class_2540;discardSomeReadBytes()Lio/netty/buffer/ByteBuf;
named discardSomeReadBytes
Lnet/minecraft/network/PacketByteBuf;discardSomeReadBytes()Lio/netty/buffer/ByteBuf;
-
ensureWritable
- Specified by:
ensureWritable
in classByteBuf
- Mappings:
Namespace Name Mixin selector official ensureWritable
Lob;ensureWritable(I)Lio/netty/buffer/ByteBuf;
intermediary ensureWritable
Lnet/minecraft/class_2540;ensureWritable(I)Lio/netty/buffer/ByteBuf;
named ensureWritable
Lnet/minecraft/network/PacketByteBuf;ensureWritable(I)Lio/netty/buffer/ByteBuf;
-
ensureWritable
public int ensureWritable(int int2, boolean bool)- Specified by:
ensureWritable
in classByteBuf
- Mappings:
Namespace Name Mixin selector official ensureWritable
Lob;ensureWritable(IZ)I
intermediary ensureWritable
Lnet/minecraft/class_2540;ensureWritable(IZ)I
named ensureWritable
Lnet/minecraft/network/PacketByteBuf;ensureWritable(IZ)I
-
getBoolean
public boolean getBoolean(int int2)- Specified by:
getBoolean
in classByteBuf
- Mappings:
Namespace Name Mixin selector official getBoolean
Lob;getBoolean(I)Z
intermediary getBoolean
Lnet/minecraft/class_2540;getBoolean(I)Z
named getBoolean
Lnet/minecraft/network/PacketByteBuf;getBoolean(I)Z
-
getByte
public byte getByte(int int2) -
getUnsignedByte
public short getUnsignedByte(int int2)- Specified by:
getUnsignedByte
in classByteBuf
- Mappings:
Namespace Name Mixin selector official getUnsignedByte
Lob;getUnsignedByte(I)S
intermediary getUnsignedByte
Lnet/minecraft/class_2540;getUnsignedByte(I)S
named getUnsignedByte
Lnet/minecraft/network/PacketByteBuf;getUnsignedByte(I)S
-
getShort
public short getShort(int int2) -
getShortLE
public short getShortLE(int int2)- Specified by:
getShortLE
in classByteBuf
- Mappings:
Namespace Name Mixin selector official getShortLE
Lob;getShortLE(I)S
intermediary getShortLE
Lnet/minecraft/class_2540;getShortLE(I)S
named getShortLE
Lnet/minecraft/network/PacketByteBuf;getShortLE(I)S
-
getUnsignedShort
public int getUnsignedShort(int int2)- Specified by:
getUnsignedShort
in classByteBuf
- Mappings:
Namespace Name Mixin selector official getUnsignedShort
Lob;getUnsignedShort(I)I
intermediary getUnsignedShort
Lnet/minecraft/class_2540;getUnsignedShort(I)I
named getUnsignedShort
Lnet/minecraft/network/PacketByteBuf;getUnsignedShort(I)I
-
getUnsignedShortLE
public int getUnsignedShortLE(int int2)- Specified by:
getUnsignedShortLE
in classByteBuf
- Mappings:
Namespace Name Mixin selector official getUnsignedShortLE
Lob;getUnsignedShortLE(I)I
intermediary getUnsignedShortLE
Lnet/minecraft/class_2540;getUnsignedShortLE(I)I
named getUnsignedShortLE
Lnet/minecraft/network/PacketByteBuf;getUnsignedShortLE(I)I
-
getMedium
public int getMedium(int int2) -
getMediumLE
public int getMediumLE(int int2)- Specified by:
getMediumLE
in classByteBuf
- Mappings:
Namespace Name Mixin selector official getMediumLE
Lob;getMediumLE(I)I
intermediary getMediumLE
Lnet/minecraft/class_2540;getMediumLE(I)I
named getMediumLE
Lnet/minecraft/network/PacketByteBuf;getMediumLE(I)I
-
getUnsignedMedium
public int getUnsignedMedium(int int2)- Specified by:
getUnsignedMedium
in classByteBuf
- Mappings:
Namespace Name Mixin selector official getUnsignedMedium
Lob;getUnsignedMedium(I)I
intermediary getUnsignedMedium
Lnet/minecraft/class_2540;getUnsignedMedium(I)I
named getUnsignedMedium
Lnet/minecraft/network/PacketByteBuf;getUnsignedMedium(I)I
-
getUnsignedMediumLE
public int getUnsignedMediumLE(int int2)- Specified by:
getUnsignedMediumLE
in classByteBuf
- Mappings:
Namespace Name Mixin selector official getUnsignedMediumLE
Lob;getUnsignedMediumLE(I)I
intermediary getUnsignedMediumLE
Lnet/minecraft/class_2540;getUnsignedMediumLE(I)I
named getUnsignedMediumLE
Lnet/minecraft/network/PacketByteBuf;getUnsignedMediumLE(I)I
-
getInt
public int getInt(int int2) -
getIntLE
public int getIntLE(int int2) -
getUnsignedInt
public long getUnsignedInt(int int2)- Specified by:
getUnsignedInt
in classByteBuf
- Mappings:
Namespace Name Mixin selector official getUnsignedInt
Lob;getUnsignedInt(I)J
intermediary getUnsignedInt
Lnet/minecraft/class_2540;getUnsignedInt(I)J
named getUnsignedInt
Lnet/minecraft/network/PacketByteBuf;getUnsignedInt(I)J
-
getUnsignedIntLE
public long getUnsignedIntLE(int int2)- Specified by:
getUnsignedIntLE
in classByteBuf
- Mappings:
Namespace Name Mixin selector official getUnsignedIntLE
Lob;getUnsignedIntLE(I)J
intermediary getUnsignedIntLE
Lnet/minecraft/class_2540;getUnsignedIntLE(I)J
named getUnsignedIntLE
Lnet/minecraft/network/PacketByteBuf;getUnsignedIntLE(I)J
-
getLong
public long getLong(int int2) -
getLongLE
public long getLongLE(int int2) -
getChar
public char getChar(int int2) -
getFloat
public float getFloat(int int2) -
getDouble
public double getDouble(int int2) -
getBytes
- Specified by:
getBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official getBytes
Lob;getBytes(ILio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
intermediary getBytes
Lnet/minecraft/class_2540;getBytes(ILio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
named getBytes
Lnet/minecraft/network/PacketByteBuf;getBytes(ILio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
-
getBytes
- Specified by:
getBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official getBytes
Lob;getBytes(ILio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf;
intermediary getBytes
Lnet/minecraft/class_2540;getBytes(ILio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf;
named getBytes
Lnet/minecraft/network/PacketByteBuf;getBytes(ILio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf;
-
getBytes
- Specified by:
getBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official getBytes
Lob;getBytes(ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
intermediary getBytes
Lnet/minecraft/class_2540;getBytes(ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
named getBytes
Lnet/minecraft/network/PacketByteBuf;getBytes(ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
-
getBytes
- Specified by:
getBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official getBytes
Lob;getBytes(I[B)Lio/netty/buffer/ByteBuf;
intermediary getBytes
Lnet/minecraft/class_2540;getBytes(I[B)Lio/netty/buffer/ByteBuf;
named getBytes
Lnet/minecraft/network/PacketByteBuf;getBytes(I[B)Lio/netty/buffer/ByteBuf;
-
getBytes
- Specified by:
getBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official getBytes
Lob;getBytes(I[BII)Lio/netty/buffer/ByteBuf;
intermediary getBytes
Lnet/minecraft/class_2540;getBytes(I[BII)Lio/netty/buffer/ByteBuf;
named getBytes
Lnet/minecraft/network/PacketByteBuf;getBytes(I[BII)Lio/netty/buffer/ByteBuf;
-
getBytes
- Specified by:
getBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official getBytes
Lob;getBytes(ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
intermediary getBytes
Lnet/minecraft/class_2540;getBytes(ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
named getBytes
Lnet/minecraft/network/PacketByteBuf;getBytes(ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
-
getBytes
- Specified by:
getBytes
in classByteBuf
- Throws:
IOException
- Mappings:
Namespace Name Mixin selector official getBytes
Lob;getBytes(ILjava/io/OutputStream;I)Lio/netty/buffer/ByteBuf;
intermediary getBytes
Lnet/minecraft/class_2540;getBytes(ILjava/io/OutputStream;I)Lio/netty/buffer/ByteBuf;
named getBytes
Lnet/minecraft/network/PacketByteBuf;getBytes(ILjava/io/OutputStream;I)Lio/netty/buffer/ByteBuf;
-
getBytes
public int getBytes(int int2, GatheringByteChannel gatheringByteChannel, int int3) throws IOException- Specified by:
getBytes
in classByteBuf
- Throws:
IOException
- Mappings:
Namespace Name Mixin selector official getBytes
Lob;getBytes(ILjava/nio/channels/GatheringByteChannel;I)I
intermediary getBytes
Lnet/minecraft/class_2540;getBytes(ILjava/nio/channels/GatheringByteChannel;I)I
named getBytes
Lnet/minecraft/network/PacketByteBuf;getBytes(ILjava/nio/channels/GatheringByteChannel;I)I
-
getBytes
- Specified by:
getBytes
in classByteBuf
- Throws:
IOException
- Mappings:
Namespace Name Mixin selector official getBytes
Lob;getBytes(ILjava/nio/channels/FileChannel;JI)I
intermediary getBytes
Lnet/minecraft/class_2540;getBytes(ILjava/nio/channels/FileChannel;JI)I
named getBytes
Lnet/minecraft/network/PacketByteBuf;getBytes(ILjava/nio/channels/FileChannel;JI)I
-
getCharSequence
- Specified by:
getCharSequence
in classByteBuf
- Mappings:
Namespace Name Mixin selector official getCharSequence
Lob;getCharSequence(IILjava/nio/charset/Charset;)Ljava/lang/CharSequence;
intermediary getCharSequence
Lnet/minecraft/class_2540;getCharSequence(IILjava/nio/charset/Charset;)Ljava/lang/CharSequence;
named getCharSequence
Lnet/minecraft/network/PacketByteBuf;getCharSequence(IILjava/nio/charset/Charset;)Ljava/lang/CharSequence;
-
setBoolean
- Specified by:
setBoolean
in classByteBuf
- Mappings:
Namespace Name Mixin selector official setBoolean
Lob;setBoolean(IZ)Lio/netty/buffer/ByteBuf;
intermediary setBoolean
Lnet/minecraft/class_2540;setBoolean(IZ)Lio/netty/buffer/ByteBuf;
named setBoolean
Lnet/minecraft/network/PacketByteBuf;setBoolean(IZ)Lio/netty/buffer/ByteBuf;
-
setByte
- Specified by:
setByte
in classByteBuf
- Mappings:
Namespace Name Mixin selector official setByte
Lob;setByte(II)Lio/netty/buffer/ByteBuf;
intermediary setByte
Lnet/minecraft/class_2540;setByte(II)Lio/netty/buffer/ByteBuf;
named setByte
Lnet/minecraft/network/PacketByteBuf;setByte(II)Lio/netty/buffer/ByteBuf;
-
setShort
- Specified by:
setShort
in classByteBuf
- Mappings:
Namespace Name Mixin selector official setShort
Lob;setShort(II)Lio/netty/buffer/ByteBuf;
intermediary setShort
Lnet/minecraft/class_2540;setShort(II)Lio/netty/buffer/ByteBuf;
named setShort
Lnet/minecraft/network/PacketByteBuf;setShort(II)Lio/netty/buffer/ByteBuf;
-
setShortLE
- Specified by:
setShortLE
in classByteBuf
- Mappings:
Namespace Name Mixin selector official setShortLE
Lob;setShortLE(II)Lio/netty/buffer/ByteBuf;
intermediary setShortLE
Lnet/minecraft/class_2540;setShortLE(II)Lio/netty/buffer/ByteBuf;
named setShortLE
Lnet/minecraft/network/PacketByteBuf;setShortLE(II)Lio/netty/buffer/ByteBuf;
-
setMedium
- Specified by:
setMedium
in classByteBuf
- Mappings:
Namespace Name Mixin selector official setMedium
Lob;setMedium(II)Lio/netty/buffer/ByteBuf;
intermediary setMedium
Lnet/minecraft/class_2540;setMedium(II)Lio/netty/buffer/ByteBuf;
named setMedium
Lnet/minecraft/network/PacketByteBuf;setMedium(II)Lio/netty/buffer/ByteBuf;
-
setMediumLE
- Specified by:
setMediumLE
in classByteBuf
- Mappings:
Namespace Name Mixin selector official setMediumLE
Lob;setMediumLE(II)Lio/netty/buffer/ByteBuf;
intermediary setMediumLE
Lnet/minecraft/class_2540;setMediumLE(II)Lio/netty/buffer/ByteBuf;
named setMediumLE
Lnet/minecraft/network/PacketByteBuf;setMediumLE(II)Lio/netty/buffer/ByteBuf;
-
setInt
- Specified by:
setInt
in classByteBuf
- Mappings:
Namespace Name Mixin selector official setInt
Lob;setInt(II)Lio/netty/buffer/ByteBuf;
intermediary setInt
Lnet/minecraft/class_2540;setInt(II)Lio/netty/buffer/ByteBuf;
named setInt
Lnet/minecraft/network/PacketByteBuf;setInt(II)Lio/netty/buffer/ByteBuf;
-
setIntLE
- Specified by:
setIntLE
in classByteBuf
- Mappings:
Namespace Name Mixin selector official setIntLE
Lob;setIntLE(II)Lio/netty/buffer/ByteBuf;
intermediary setIntLE
Lnet/minecraft/class_2540;setIntLE(II)Lio/netty/buffer/ByteBuf;
named setIntLE
Lnet/minecraft/network/PacketByteBuf;setIntLE(II)Lio/netty/buffer/ByteBuf;
-
setLong
- Specified by:
setLong
in classByteBuf
- Mappings:
Namespace Name Mixin selector official setLong
Lob;setLong(IJ)Lio/netty/buffer/ByteBuf;
intermediary setLong
Lnet/minecraft/class_2540;setLong(IJ)Lio/netty/buffer/ByteBuf;
named setLong
Lnet/minecraft/network/PacketByteBuf;setLong(IJ)Lio/netty/buffer/ByteBuf;
-
setLongLE
- Specified by:
setLongLE
in classByteBuf
- Mappings:
Namespace Name Mixin selector official setLongLE
Lob;setLongLE(IJ)Lio/netty/buffer/ByteBuf;
intermediary setLongLE
Lnet/minecraft/class_2540;setLongLE(IJ)Lio/netty/buffer/ByteBuf;
named setLongLE
Lnet/minecraft/network/PacketByteBuf;setLongLE(IJ)Lio/netty/buffer/ByteBuf;
-
setChar
- Specified by:
setChar
in classByteBuf
- Mappings:
Namespace Name Mixin selector official setChar
Lob;setChar(II)Lio/netty/buffer/ByteBuf;
intermediary setChar
Lnet/minecraft/class_2540;setChar(II)Lio/netty/buffer/ByteBuf;
named setChar
Lnet/minecraft/network/PacketByteBuf;setChar(II)Lio/netty/buffer/ByteBuf;
-
setFloat
- Specified by:
setFloat
in classByteBuf
- Mappings:
Namespace Name Mixin selector official setFloat
Lob;setFloat(IF)Lio/netty/buffer/ByteBuf;
intermediary setFloat
Lnet/minecraft/class_2540;setFloat(IF)Lio/netty/buffer/ByteBuf;
named setFloat
Lnet/minecraft/network/PacketByteBuf;setFloat(IF)Lio/netty/buffer/ByteBuf;
-
setDouble
- Specified by:
setDouble
in classByteBuf
- Mappings:
Namespace Name Mixin selector official setDouble
Lob;setDouble(ID)Lio/netty/buffer/ByteBuf;
intermediary setDouble
Lnet/minecraft/class_2540;setDouble(ID)Lio/netty/buffer/ByteBuf;
named setDouble
Lnet/minecraft/network/PacketByteBuf;setDouble(ID)Lio/netty/buffer/ByteBuf;
-
setBytes
- Specified by:
setBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official setBytes
Lob;setBytes(ILio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
intermediary setBytes
Lnet/minecraft/class_2540;setBytes(ILio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
named setBytes
Lnet/minecraft/network/PacketByteBuf;setBytes(ILio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
-
setBytes
- Specified by:
setBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official setBytes
Lob;setBytes(ILio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf;
intermediary setBytes
Lnet/minecraft/class_2540;setBytes(ILio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf;
named setBytes
Lnet/minecraft/network/PacketByteBuf;setBytes(ILio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf;
-
setBytes
- Specified by:
setBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official setBytes
Lob;setBytes(ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
intermediary setBytes
Lnet/minecraft/class_2540;setBytes(ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
named setBytes
Lnet/minecraft/network/PacketByteBuf;setBytes(ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
-
setBytes
- Specified by:
setBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official setBytes
Lob;setBytes(I[B)Lio/netty/buffer/ByteBuf;
intermediary setBytes
Lnet/minecraft/class_2540;setBytes(I[B)Lio/netty/buffer/ByteBuf;
named setBytes
Lnet/minecraft/network/PacketByteBuf;setBytes(I[B)Lio/netty/buffer/ByteBuf;
-
setBytes
- Specified by:
setBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official setBytes
Lob;setBytes(I[BII)Lio/netty/buffer/ByteBuf;
intermediary setBytes
Lnet/minecraft/class_2540;setBytes(I[BII)Lio/netty/buffer/ByteBuf;
named setBytes
Lnet/minecraft/network/PacketByteBuf;setBytes(I[BII)Lio/netty/buffer/ByteBuf;
-
setBytes
- Specified by:
setBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official setBytes
Lob;setBytes(ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
intermediary setBytes
Lnet/minecraft/class_2540;setBytes(ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
named setBytes
Lnet/minecraft/network/PacketByteBuf;setBytes(ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
-
setBytes
- Specified by:
setBytes
in classByteBuf
- Throws:
IOException
- Mappings:
Namespace Name Mixin selector official setBytes
Lob;setBytes(ILjava/io/InputStream;I)I
intermediary setBytes
Lnet/minecraft/class_2540;setBytes(ILjava/io/InputStream;I)I
named setBytes
Lnet/minecraft/network/PacketByteBuf;setBytes(ILjava/io/InputStream;I)I
-
setBytes
public int setBytes(int int2, ScatteringByteChannel scatteringByteChannel, int int3) throws IOException- Specified by:
setBytes
in classByteBuf
- Throws:
IOException
- Mappings:
Namespace Name Mixin selector official setBytes
Lob;setBytes(ILjava/nio/channels/ScatteringByteChannel;I)I
intermediary setBytes
Lnet/minecraft/class_2540;setBytes(ILjava/nio/channels/ScatteringByteChannel;I)I
named setBytes
Lnet/minecraft/network/PacketByteBuf;setBytes(ILjava/nio/channels/ScatteringByteChannel;I)I
-
setBytes
- Specified by:
setBytes
in classByteBuf
- Throws:
IOException
- Mappings:
Namespace Name Mixin selector official setBytes
Lob;setBytes(ILjava/nio/channels/FileChannel;JI)I
intermediary setBytes
Lnet/minecraft/class_2540;setBytes(ILjava/nio/channels/FileChannel;JI)I
named setBytes
Lnet/minecraft/network/PacketByteBuf;setBytes(ILjava/nio/channels/FileChannel;JI)I
-
setZero
- Specified by:
setZero
in classByteBuf
- Mappings:
Namespace Name Mixin selector official setZero
Lob;setZero(II)Lio/netty/buffer/ByteBuf;
intermediary setZero
Lnet/minecraft/class_2540;setZero(II)Lio/netty/buffer/ByteBuf;
named setZero
Lnet/minecraft/network/PacketByteBuf;setZero(II)Lio/netty/buffer/ByteBuf;
-
setCharSequence
- Specified by:
setCharSequence
in classByteBuf
- Mappings:
Namespace Name Mixin selector official setCharSequence
Lob;setCharSequence(ILjava/lang/CharSequence;Ljava/nio/charset/Charset;)I
intermediary setCharSequence
Lnet/minecraft/class_2540;setCharSequence(ILjava/lang/CharSequence;Ljava/nio/charset/Charset;)I
named setCharSequence
Lnet/minecraft/network/PacketByteBuf;setCharSequence(ILjava/lang/CharSequence;Ljava/nio/charset/Charset;)I
-
readBoolean
public boolean readBoolean()- Specified by:
readBoolean
in classByteBuf
- Mappings:
Namespace Name Mixin selector official readBoolean
Lob;readBoolean()Z
intermediary readBoolean
Lnet/minecraft/class_2540;readBoolean()Z
named readBoolean
Lnet/minecraft/network/PacketByteBuf;readBoolean()Z
-
readByte
public byte readByte() -
readUnsignedByte
public short readUnsignedByte()- Specified by:
readUnsignedByte
in classByteBuf
- Mappings:
Namespace Name Mixin selector official readUnsignedByte
Lob;readUnsignedByte()S
intermediary readUnsignedByte
Lnet/minecraft/class_2540;readUnsignedByte()S
named readUnsignedByte
Lnet/minecraft/network/PacketByteBuf;readUnsignedByte()S
-
readShort
public short readShort() -
readShortLE
public short readShortLE()- Specified by:
readShortLE
in classByteBuf
- Mappings:
Namespace Name Mixin selector official readShortLE
Lob;readShortLE()S
intermediary readShortLE
Lnet/minecraft/class_2540;readShortLE()S
named readShortLE
Lnet/minecraft/network/PacketByteBuf;readShortLE()S
-
readUnsignedShort
public int readUnsignedShort()- Specified by:
readUnsignedShort
in classByteBuf
- Mappings:
Namespace Name Mixin selector official readUnsignedShort
Lob;readUnsignedShort()I
intermediary readUnsignedShort
Lnet/minecraft/class_2540;readUnsignedShort()I
named readUnsignedShort
Lnet/minecraft/network/PacketByteBuf;readUnsignedShort()I
-
readUnsignedShortLE
public int readUnsignedShortLE()- Specified by:
readUnsignedShortLE
in classByteBuf
- Mappings:
Namespace Name Mixin selector official readUnsignedShortLE
Lob;readUnsignedShortLE()I
intermediary readUnsignedShortLE
Lnet/minecraft/class_2540;readUnsignedShortLE()I
named readUnsignedShortLE
Lnet/minecraft/network/PacketByteBuf;readUnsignedShortLE()I
-
readMedium
public int readMedium()- Specified by:
readMedium
in classByteBuf
- Mappings:
Namespace Name Mixin selector official readMedium
Lob;readMedium()I
intermediary readMedium
Lnet/minecraft/class_2540;readMedium()I
named readMedium
Lnet/minecraft/network/PacketByteBuf;readMedium()I
-
readMediumLE
public int readMediumLE()- Specified by:
readMediumLE
in classByteBuf
- Mappings:
Namespace Name Mixin selector official readMediumLE
Lob;readMediumLE()I
intermediary readMediumLE
Lnet/minecraft/class_2540;readMediumLE()I
named readMediumLE
Lnet/minecraft/network/PacketByteBuf;readMediumLE()I
-
readUnsignedMedium
public int readUnsignedMedium()- Specified by:
readUnsignedMedium
in classByteBuf
- Mappings:
Namespace Name Mixin selector official readUnsignedMedium
Lob;readUnsignedMedium()I
intermediary readUnsignedMedium
Lnet/minecraft/class_2540;readUnsignedMedium()I
named readUnsignedMedium
Lnet/minecraft/network/PacketByteBuf;readUnsignedMedium()I
-
readUnsignedMediumLE
public int readUnsignedMediumLE()- Specified by:
readUnsignedMediumLE
in classByteBuf
- Mappings:
Namespace Name Mixin selector official readUnsignedMediumLE
Lob;readUnsignedMediumLE()I
intermediary readUnsignedMediumLE
Lnet/minecraft/class_2540;readUnsignedMediumLE()I
named readUnsignedMediumLE
Lnet/minecraft/network/PacketByteBuf;readUnsignedMediumLE()I
-
readInt
public int readInt() -
readIntLE
public int readIntLE() -
readUnsignedInt
public long readUnsignedInt()- Specified by:
readUnsignedInt
in classByteBuf
- Mappings:
Namespace Name Mixin selector official readUnsignedInt
Lob;readUnsignedInt()J
intermediary readUnsignedInt
Lnet/minecraft/class_2540;readUnsignedInt()J
named readUnsignedInt
Lnet/minecraft/network/PacketByteBuf;readUnsignedInt()J
-
readUnsignedIntLE
public long readUnsignedIntLE()- Specified by:
readUnsignedIntLE
in classByteBuf
- Mappings:
Namespace Name Mixin selector official readUnsignedIntLE
Lob;readUnsignedIntLE()J
intermediary readUnsignedIntLE
Lnet/minecraft/class_2540;readUnsignedIntLE()J
named readUnsignedIntLE
Lnet/minecraft/network/PacketByteBuf;readUnsignedIntLE()J
-
readLong
public long readLong() -
readLongLE
public long readLongLE()- Specified by:
readLongLE
in classByteBuf
- Mappings:
Namespace Name Mixin selector official readLongLE
Lob;readLongLE()J
intermediary readLongLE
Lnet/minecraft/class_2540;readLongLE()J
named readLongLE
Lnet/minecraft/network/PacketByteBuf;readLongLE()J
-
readChar
public char readChar() -
readFloat
public float readFloat() -
readDouble
public double readDouble()- Specified by:
readDouble
in classByteBuf
- Mappings:
Namespace Name Mixin selector official readDouble
Lob;readDouble()D
intermediary readDouble
Lnet/minecraft/class_2540;readDouble()D
named readDouble
Lnet/minecraft/network/PacketByteBuf;readDouble()D
-
readBytes
- Specified by:
readBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official readBytes
Lob;readBytes(I)Lio/netty/buffer/ByteBuf;
intermediary readBytes
Lnet/minecraft/class_2540;readBytes(I)Lio/netty/buffer/ByteBuf;
named readBytes
Lnet/minecraft/network/PacketByteBuf;readBytes(I)Lio/netty/buffer/ByteBuf;
-
readSlice
- Specified by:
readSlice
in classByteBuf
- Mappings:
Namespace Name Mixin selector official readSlice
Lob;readSlice(I)Lio/netty/buffer/ByteBuf;
intermediary readSlice
Lnet/minecraft/class_2540;readSlice(I)Lio/netty/buffer/ByteBuf;
named readSlice
Lnet/minecraft/network/PacketByteBuf;readSlice(I)Lio/netty/buffer/ByteBuf;
-
readRetainedSlice
- Specified by:
readRetainedSlice
in classByteBuf
- Mappings:
Namespace Name Mixin selector official readRetainedSlice
Lob;readRetainedSlice(I)Lio/netty/buffer/ByteBuf;
intermediary readRetainedSlice
Lnet/minecraft/class_2540;readRetainedSlice(I)Lio/netty/buffer/ByteBuf;
named readRetainedSlice
Lnet/minecraft/network/PacketByteBuf;readRetainedSlice(I)Lio/netty/buffer/ByteBuf;
-
readBytes
- Specified by:
readBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official readBytes
Lob;readBytes(Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
intermediary readBytes
Lnet/minecraft/class_2540;readBytes(Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
named readBytes
Lnet/minecraft/network/PacketByteBuf;readBytes(Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
-
readBytes
- Specified by:
readBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official readBytes
Lob;readBytes(Lio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf;
intermediary readBytes
Lnet/minecraft/class_2540;readBytes(Lio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf;
named readBytes
Lnet/minecraft/network/PacketByteBuf;readBytes(Lio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf;
-
readBytes
- Specified by:
readBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official readBytes
Lob;readBytes(Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
intermediary readBytes
Lnet/minecraft/class_2540;readBytes(Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
named readBytes
Lnet/minecraft/network/PacketByteBuf;readBytes(Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
-
readBytes
- Specified by:
readBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official readBytes
Lob;readBytes([B)Lio/netty/buffer/ByteBuf;
intermediary readBytes
Lnet/minecraft/class_2540;readBytes([B)Lio/netty/buffer/ByteBuf;
named readBytes
Lnet/minecraft/network/PacketByteBuf;readBytes([B)Lio/netty/buffer/ByteBuf;
-
readBytes
- Specified by:
readBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official readBytes
Lob;readBytes([BII)Lio/netty/buffer/ByteBuf;
intermediary readBytes
Lnet/minecraft/class_2540;readBytes([BII)Lio/netty/buffer/ByteBuf;
named readBytes
Lnet/minecraft/network/PacketByteBuf;readBytes([BII)Lio/netty/buffer/ByteBuf;
-
readBytes
- Specified by:
readBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official readBytes
Lob;readBytes(Ljava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
intermediary readBytes
Lnet/minecraft/class_2540;readBytes(Ljava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
named readBytes
Lnet/minecraft/network/PacketByteBuf;readBytes(Ljava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
-
readBytes
- Specified by:
readBytes
in classByteBuf
- Throws:
IOException
- Mappings:
Namespace Name Mixin selector official readBytes
Lob;readBytes(Ljava/io/OutputStream;I)Lio/netty/buffer/ByteBuf;
intermediary readBytes
Lnet/minecraft/class_2540;readBytes(Ljava/io/OutputStream;I)Lio/netty/buffer/ByteBuf;
named readBytes
Lnet/minecraft/network/PacketByteBuf;readBytes(Ljava/io/OutputStream;I)Lio/netty/buffer/ByteBuf;
-
readBytes
- Specified by:
readBytes
in classByteBuf
- Throws:
IOException
- Mappings:
Namespace Name Mixin selector official readBytes
Lob;readBytes(Ljava/nio/channels/GatheringByteChannel;I)I
intermediary readBytes
Lnet/minecraft/class_2540;readBytes(Ljava/nio/channels/GatheringByteChannel;I)I
named readBytes
Lnet/minecraft/network/PacketByteBuf;readBytes(Ljava/nio/channels/GatheringByteChannel;I)I
-
readCharSequence
- Specified by:
readCharSequence
in classByteBuf
- Mappings:
Namespace Name Mixin selector official readCharSequence
Lob;readCharSequence(ILjava/nio/charset/Charset;)Ljava/lang/CharSequence;
intermediary readCharSequence
Lnet/minecraft/class_2540;readCharSequence(ILjava/nio/charset/Charset;)Ljava/lang/CharSequence;
named readCharSequence
Lnet/minecraft/network/PacketByteBuf;readCharSequence(ILjava/nio/charset/Charset;)Ljava/lang/CharSequence;
-
readBytes
- Specified by:
readBytes
in classByteBuf
- Throws:
IOException
- Mappings:
Namespace Name Mixin selector official readBytes
Lob;readBytes(Ljava/nio/channels/FileChannel;JI)I
intermediary readBytes
Lnet/minecraft/class_2540;readBytes(Ljava/nio/channels/FileChannel;JI)I
named readBytes
Lnet/minecraft/network/PacketByteBuf;readBytes(Ljava/nio/channels/FileChannel;JI)I
-
skipBytes
- Specified by:
skipBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official skipBytes
Lob;skipBytes(I)Lio/netty/buffer/ByteBuf;
intermediary skipBytes
Lnet/minecraft/class_2540;skipBytes(I)Lio/netty/buffer/ByteBuf;
named skipBytes
Lnet/minecraft/network/PacketByteBuf;skipBytes(I)Lio/netty/buffer/ByteBuf;
-
writeBoolean
- Specified by:
writeBoolean
in classByteBuf
- Mappings:
Namespace Name Mixin selector official writeBoolean
Lob;writeBoolean(Z)Lio/netty/buffer/ByteBuf;
intermediary writeBoolean
Lnet/minecraft/class_2540;writeBoolean(Z)Lio/netty/buffer/ByteBuf;
named writeBoolean
Lnet/minecraft/network/PacketByteBuf;writeBoolean(Z)Lio/netty/buffer/ByteBuf;
-
writeByte
- Specified by:
writeByte
in classByteBuf
- Mappings:
Namespace Name Mixin selector official writeByte
Lob;writeByte(I)Lio/netty/buffer/ByteBuf;
intermediary writeByte
Lnet/minecraft/class_2540;writeByte(I)Lio/netty/buffer/ByteBuf;
named writeByte
Lnet/minecraft/network/PacketByteBuf;writeByte(I)Lio/netty/buffer/ByteBuf;
-
writeShort
- Specified by:
writeShort
in classByteBuf
- Mappings:
Namespace Name Mixin selector official writeShort
Lob;writeShort(I)Lio/netty/buffer/ByteBuf;
intermediary writeShort
Lnet/minecraft/class_2540;writeShort(I)Lio/netty/buffer/ByteBuf;
named writeShort
Lnet/minecraft/network/PacketByteBuf;writeShort(I)Lio/netty/buffer/ByteBuf;
-
writeShortLE
- Specified by:
writeShortLE
in classByteBuf
- Mappings:
Namespace Name Mixin selector official writeShortLE
Lob;writeShortLE(I)Lio/netty/buffer/ByteBuf;
intermediary writeShortLE
Lnet/minecraft/class_2540;writeShortLE(I)Lio/netty/buffer/ByteBuf;
named writeShortLE
Lnet/minecraft/network/PacketByteBuf;writeShortLE(I)Lio/netty/buffer/ByteBuf;
-
writeMedium
- Specified by:
writeMedium
in classByteBuf
- Mappings:
Namespace Name Mixin selector official writeMedium
Lob;writeMedium(I)Lio/netty/buffer/ByteBuf;
intermediary writeMedium
Lnet/minecraft/class_2540;writeMedium(I)Lio/netty/buffer/ByteBuf;
named writeMedium
Lnet/minecraft/network/PacketByteBuf;writeMedium(I)Lio/netty/buffer/ByteBuf;
-
writeMediumLE
- Specified by:
writeMediumLE
in classByteBuf
- Mappings:
Namespace Name Mixin selector official writeMediumLE
Lob;writeMediumLE(I)Lio/netty/buffer/ByteBuf;
intermediary writeMediumLE
Lnet/minecraft/class_2540;writeMediumLE(I)Lio/netty/buffer/ByteBuf;
named writeMediumLE
Lnet/minecraft/network/PacketByteBuf;writeMediumLE(I)Lio/netty/buffer/ByteBuf;
-
writeInt
- Specified by:
writeInt
in classByteBuf
- Mappings:
Namespace Name Mixin selector official writeInt
Lob;writeInt(I)Lio/netty/buffer/ByteBuf;
intermediary writeInt
Lnet/minecraft/class_2540;writeInt(I)Lio/netty/buffer/ByteBuf;
named writeInt
Lnet/minecraft/network/PacketByteBuf;writeInt(I)Lio/netty/buffer/ByteBuf;
-
writeIntLE
- Specified by:
writeIntLE
in classByteBuf
- Mappings:
Namespace Name Mixin selector official writeIntLE
Lob;writeIntLE(I)Lio/netty/buffer/ByteBuf;
intermediary writeIntLE
Lnet/minecraft/class_2540;writeIntLE(I)Lio/netty/buffer/ByteBuf;
named writeIntLE
Lnet/minecraft/network/PacketByteBuf;writeIntLE(I)Lio/netty/buffer/ByteBuf;
-
writeLong
- Specified by:
writeLong
in classByteBuf
- Mappings:
Namespace Name Mixin selector official writeLong
Lob;writeLong(J)Lio/netty/buffer/ByteBuf;
intermediary writeLong
Lnet/minecraft/class_2540;writeLong(J)Lio/netty/buffer/ByteBuf;
named writeLong
Lnet/minecraft/network/PacketByteBuf;writeLong(J)Lio/netty/buffer/ByteBuf;
-
writeLongLE
- Specified by:
writeLongLE
in classByteBuf
- Mappings:
Namespace Name Mixin selector official writeLongLE
Lob;writeLongLE(J)Lio/netty/buffer/ByteBuf;
intermediary writeLongLE
Lnet/minecraft/class_2540;writeLongLE(J)Lio/netty/buffer/ByteBuf;
named writeLongLE
Lnet/minecraft/network/PacketByteBuf;writeLongLE(J)Lio/netty/buffer/ByteBuf;
-
writeChar
- Specified by:
writeChar
in classByteBuf
- Mappings:
Namespace Name Mixin selector official writeChar
Lob;writeChar(I)Lio/netty/buffer/ByteBuf;
intermediary writeChar
Lnet/minecraft/class_2540;writeChar(I)Lio/netty/buffer/ByteBuf;
named writeChar
Lnet/minecraft/network/PacketByteBuf;writeChar(I)Lio/netty/buffer/ByteBuf;
-
writeFloat
- Specified by:
writeFloat
in classByteBuf
- Mappings:
Namespace Name Mixin selector official writeFloat
Lob;writeFloat(F)Lio/netty/buffer/ByteBuf;
intermediary writeFloat
Lnet/minecraft/class_2540;writeFloat(F)Lio/netty/buffer/ByteBuf;
named writeFloat
Lnet/minecraft/network/PacketByteBuf;writeFloat(F)Lio/netty/buffer/ByteBuf;
-
writeDouble
- Specified by:
writeDouble
in classByteBuf
- Mappings:
Namespace Name Mixin selector official writeDouble
Lob;writeDouble(D)Lio/netty/buffer/ByteBuf;
intermediary writeDouble
Lnet/minecraft/class_2540;writeDouble(D)Lio/netty/buffer/ByteBuf;
named writeDouble
Lnet/minecraft/network/PacketByteBuf;writeDouble(D)Lio/netty/buffer/ByteBuf;
-
writeBytes
- Specified by:
writeBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official writeBytes
Lob;writeBytes(Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
intermediary writeBytes
Lnet/minecraft/class_2540;writeBytes(Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
named writeBytes
Lnet/minecraft/network/PacketByteBuf;writeBytes(Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
-
writeBytes
- Specified by:
writeBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official writeBytes
Lob;writeBytes(Lio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf;
intermediary writeBytes
Lnet/minecraft/class_2540;writeBytes(Lio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf;
named writeBytes
Lnet/minecraft/network/PacketByteBuf;writeBytes(Lio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf;
-
writeBytes
- Specified by:
writeBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official writeBytes
Lob;writeBytes(Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
intermediary writeBytes
Lnet/minecraft/class_2540;writeBytes(Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
named writeBytes
Lnet/minecraft/network/PacketByteBuf;writeBytes(Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
-
writeBytes
- Specified by:
writeBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official writeBytes
Lob;writeBytes([B)Lio/netty/buffer/ByteBuf;
intermediary writeBytes
Lnet/minecraft/class_2540;writeBytes([B)Lio/netty/buffer/ByteBuf;
named writeBytes
Lnet/minecraft/network/PacketByteBuf;writeBytes([B)Lio/netty/buffer/ByteBuf;
-
writeBytes
- Specified by:
writeBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official writeBytes
Lob;writeBytes([BII)Lio/netty/buffer/ByteBuf;
intermediary writeBytes
Lnet/minecraft/class_2540;writeBytes([BII)Lio/netty/buffer/ByteBuf;
named writeBytes
Lnet/minecraft/network/PacketByteBuf;writeBytes([BII)Lio/netty/buffer/ByteBuf;
-
writeBytes
- Specified by:
writeBytes
in classByteBuf
- Mappings:
Namespace Name Mixin selector official writeBytes
Lob;writeBytes(Ljava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
intermediary writeBytes
Lnet/minecraft/class_2540;writeBytes(Ljava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
named writeBytes
Lnet/minecraft/network/PacketByteBuf;writeBytes(Ljava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
-
writeBytes
- Specified by:
writeBytes
in classByteBuf
- Throws:
IOException
- Mappings:
Namespace Name Mixin selector official writeBytes
Lob;writeBytes(Ljava/io/InputStream;I)I
intermediary writeBytes
Lnet/minecraft/class_2540;writeBytes(Ljava/io/InputStream;I)I
named writeBytes
Lnet/minecraft/network/PacketByteBuf;writeBytes(Ljava/io/InputStream;I)I
-
writeBytes
- Specified by:
writeBytes
in classByteBuf
- Throws:
IOException
- Mappings:
Namespace Name Mixin selector official writeBytes
Lob;writeBytes(Ljava/nio/channels/ScatteringByteChannel;I)I
intermediary writeBytes
Lnet/minecraft/class_2540;writeBytes(Ljava/nio/channels/ScatteringByteChannel;I)I
named writeBytes
Lnet/minecraft/network/PacketByteBuf;writeBytes(Ljava/nio/channels/ScatteringByteChannel;I)I
-
writeBytes
- Specified by:
writeBytes
in classByteBuf
- Throws:
IOException
- Mappings:
Namespace Name Mixin selector official writeBytes
Lob;writeBytes(Ljava/nio/channels/FileChannel;JI)I
intermediary writeBytes
Lnet/minecraft/class_2540;writeBytes(Ljava/nio/channels/FileChannel;JI)I
named writeBytes
Lnet/minecraft/network/PacketByteBuf;writeBytes(Ljava/nio/channels/FileChannel;JI)I
-
writeZero
- Specified by:
writeZero
in classByteBuf
- Mappings:
Namespace Name Mixin selector official writeZero
Lob;writeZero(I)Lio/netty/buffer/ByteBuf;
intermediary writeZero
Lnet/minecraft/class_2540;writeZero(I)Lio/netty/buffer/ByteBuf;
named writeZero
Lnet/minecraft/network/PacketByteBuf;writeZero(I)Lio/netty/buffer/ByteBuf;
-
writeCharSequence
- Specified by:
writeCharSequence
in classByteBuf
- Mappings:
Namespace Name Mixin selector official writeCharSequence
Lob;writeCharSequence(Ljava/lang/CharSequence;Ljava/nio/charset/Charset;)I
intermediary writeCharSequence
Lnet/minecraft/class_2540;writeCharSequence(Ljava/lang/CharSequence;Ljava/nio/charset/Charset;)I
named writeCharSequence
Lnet/minecraft/network/PacketByteBuf;writeCharSequence(Ljava/lang/CharSequence;Ljava/nio/charset/Charset;)I
-
indexOf
public int indexOf(int int2, int int3, byte byte2) -
bytesBefore
public int bytesBefore(byte byte2)- Specified by:
bytesBefore
in classByteBuf
- Mappings:
Namespace Name Mixin selector official bytesBefore
Lob;bytesBefore(B)I
intermediary bytesBefore
Lnet/minecraft/class_2540;bytesBefore(B)I
named bytesBefore
Lnet/minecraft/network/PacketByteBuf;bytesBefore(B)I
-
bytesBefore
public int bytesBefore(int int2, byte byte2)- Specified by:
bytesBefore
in classByteBuf
- Mappings:
Namespace Name Mixin selector official bytesBefore
Lob;bytesBefore(IB)I
intermediary bytesBefore
Lnet/minecraft/class_2540;bytesBefore(IB)I
named bytesBefore
Lnet/minecraft/network/PacketByteBuf;bytesBefore(IB)I
-
bytesBefore
public int bytesBefore(int int2, int int3, byte byte2)- Specified by:
bytesBefore
in classByteBuf
- Mappings:
Namespace Name Mixin selector official bytesBefore
Lob;bytesBefore(IIB)I
intermediary bytesBefore
Lnet/minecraft/class_2540;bytesBefore(IIB)I
named bytesBefore
Lnet/minecraft/network/PacketByteBuf;bytesBefore(IIB)I
-
forEachByte
- Specified by:
forEachByte
in classByteBuf
- Mappings:
Namespace Name Mixin selector official forEachByte
Lob;forEachByte(Lio/netty/util/ByteProcessor;)I
intermediary forEachByte
Lnet/minecraft/class_2540;forEachByte(Lio/netty/util/ByteProcessor;)I
named forEachByte
Lnet/minecraft/network/PacketByteBuf;forEachByte(Lio/netty/util/ByteProcessor;)I
-
forEachByte
- Specified by:
forEachByte
in classByteBuf
- Mappings:
Namespace Name Mixin selector official forEachByte
Lob;forEachByte(IILio/netty/util/ByteProcessor;)I
intermediary forEachByte
Lnet/minecraft/class_2540;forEachByte(IILio/netty/util/ByteProcessor;)I
named forEachByte
Lnet/minecraft/network/PacketByteBuf;forEachByte(IILio/netty/util/ByteProcessor;)I
-
forEachByteDesc
- Specified by:
forEachByteDesc
in classByteBuf
- Mappings:
Namespace Name Mixin selector official forEachByteDesc
Lob;forEachByteDesc(Lio/netty/util/ByteProcessor;)I
intermediary forEachByteDesc
Lnet/minecraft/class_2540;forEachByteDesc(Lio/netty/util/ByteProcessor;)I
named forEachByteDesc
Lnet/minecraft/network/PacketByteBuf;forEachByteDesc(Lio/netty/util/ByteProcessor;)I
-
forEachByteDesc
- Specified by:
forEachByteDesc
in classByteBuf
- Mappings:
Namespace Name Mixin selector official forEachByteDesc
Lob;forEachByteDesc(IILio/netty/util/ByteProcessor;)I
intermediary forEachByteDesc
Lnet/minecraft/class_2540;forEachByteDesc(IILio/netty/util/ByteProcessor;)I
named forEachByteDesc
Lnet/minecraft/network/PacketByteBuf;forEachByteDesc(IILio/netty/util/ByteProcessor;)I
-
copy
-
copy
-
slice
-
retainedSlice
- Specified by:
retainedSlice
in classByteBuf
- Mappings:
Namespace Name Mixin selector official retainedSlice
Lob;retainedSlice()Lio/netty/buffer/ByteBuf;
intermediary retainedSlice
Lnet/minecraft/class_2540;retainedSlice()Lio/netty/buffer/ByteBuf;
named retainedSlice
Lnet/minecraft/network/PacketByteBuf;retainedSlice()Lio/netty/buffer/ByteBuf;
-
slice
-
retainedSlice
- Specified by:
retainedSlice
in classByteBuf
- Mappings:
Namespace Name Mixin selector official retainedSlice
Lob;retainedSlice(II)Lio/netty/buffer/ByteBuf;
intermediary retainedSlice
Lnet/minecraft/class_2540;retainedSlice(II)Lio/netty/buffer/ByteBuf;
named retainedSlice
Lnet/minecraft/network/PacketByteBuf;retainedSlice(II)Lio/netty/buffer/ByteBuf;
-
duplicate
- Specified by:
duplicate
in classByteBuf
- Mappings:
Namespace Name Mixin selector official duplicate
Lob;duplicate()Lio/netty/buffer/ByteBuf;
intermediary duplicate
Lnet/minecraft/class_2540;duplicate()Lio/netty/buffer/ByteBuf;
named duplicate
Lnet/minecraft/network/PacketByteBuf;duplicate()Lio/netty/buffer/ByteBuf;
-
retainedDuplicate
- Specified by:
retainedDuplicate
in classByteBuf
- Mappings:
Namespace Name Mixin selector official retainedDuplicate
Lob;retainedDuplicate()Lio/netty/buffer/ByteBuf;
intermediary retainedDuplicate
Lnet/minecraft/class_2540;retainedDuplicate()Lio/netty/buffer/ByteBuf;
named retainedDuplicate
Lnet/minecraft/network/PacketByteBuf;retainedDuplicate()Lio/netty/buffer/ByteBuf;
-
nioBufferCount
public int nioBufferCount()- Specified by:
nioBufferCount
in classByteBuf
- Mappings:
Namespace Name Mixin selector official nioBufferCount
Lob;nioBufferCount()I
intermediary nioBufferCount
Lnet/minecraft/class_2540;nioBufferCount()I
named nioBufferCount
Lnet/minecraft/network/PacketByteBuf;nioBufferCount()I
-
nioBuffer
- Specified by:
nioBuffer
in classByteBuf
- Mappings:
Namespace Name Mixin selector official nioBuffer
Lob;nioBuffer()Ljava/nio/ByteBuffer;
intermediary nioBuffer
Lnet/minecraft/class_2540;nioBuffer()Ljava/nio/ByteBuffer;
named nioBuffer
Lnet/minecraft/network/PacketByteBuf;nioBuffer()Ljava/nio/ByteBuffer;
-
nioBuffer
- Specified by:
nioBuffer
in classByteBuf
- Mappings:
Namespace Name Mixin selector official nioBuffer
Lob;nioBuffer(II)Ljava/nio/ByteBuffer;
intermediary nioBuffer
Lnet/minecraft/class_2540;nioBuffer(II)Ljava/nio/ByteBuffer;
named nioBuffer
Lnet/minecraft/network/PacketByteBuf;nioBuffer(II)Ljava/nio/ByteBuffer;
-
internalNioBuffer
- Specified by:
internalNioBuffer
in classByteBuf
- Mappings:
Namespace Name Mixin selector official internalNioBuffer
Lob;internalNioBuffer(II)Ljava/nio/ByteBuffer;
intermediary internalNioBuffer
Lnet/minecraft/class_2540;internalNioBuffer(II)Ljava/nio/ByteBuffer;
named internalNioBuffer
Lnet/minecraft/network/PacketByteBuf;internalNioBuffer(II)Ljava/nio/ByteBuffer;
-
nioBuffers
- Specified by:
nioBuffers
in classByteBuf
- Mappings:
Namespace Name Mixin selector official nioBuffers
Lob;nioBuffers()[Ljava/nio/ByteBuffer;
intermediary nioBuffers
Lnet/minecraft/class_2540;nioBuffers()[Ljava/nio/ByteBuffer;
named nioBuffers
Lnet/minecraft/network/PacketByteBuf;nioBuffers()[Ljava/nio/ByteBuffer;
-
nioBuffers
- Specified by:
nioBuffers
in classByteBuf
- Mappings:
Namespace Name Mixin selector official nioBuffers
Lob;nioBuffers(II)[Ljava/nio/ByteBuffer;
intermediary nioBuffers
Lnet/minecraft/class_2540;nioBuffers(II)[Ljava/nio/ByteBuffer;
named nioBuffers
Lnet/minecraft/network/PacketByteBuf;nioBuffers(II)[Ljava/nio/ByteBuffer;
-
hasArray
public boolean hasArray() -
array
public byte[] array() -
arrayOffset
public int arrayOffset()- Specified by:
arrayOffset
in classByteBuf
- Mappings:
Namespace Name Mixin selector official arrayOffset
Lob;arrayOffset()I
intermediary arrayOffset
Lnet/minecraft/class_2540;arrayOffset()I
named arrayOffset
Lnet/minecraft/network/PacketByteBuf;arrayOffset()I
-
hasMemoryAddress
public boolean hasMemoryAddress()- Specified by:
hasMemoryAddress
in classByteBuf
- Mappings:
Namespace Name Mixin selector official hasMemoryAddress
Lob;hasMemoryAddress()Z
intermediary hasMemoryAddress
Lnet/minecraft/class_2540;hasMemoryAddress()Z
named hasMemoryAddress
Lnet/minecraft/network/PacketByteBuf;hasMemoryAddress()Z
-
memoryAddress
public long memoryAddress()- Specified by:
memoryAddress
in classByteBuf
- Mappings:
Namespace Name Mixin selector official memoryAddress
Lob;memoryAddress()J
intermediary memoryAddress
Lnet/minecraft/class_2540;memoryAddress()J
named memoryAddress
Lnet/minecraft/network/PacketByteBuf;memoryAddress()J
-
toString
- Specified by:
toString
in classByteBuf
- Mappings:
Namespace Name Mixin selector official toString
Lob;toString(Ljava/nio/charset/Charset;)Ljava/lang/String;
intermediary toString
Lnet/minecraft/class_2540;toString(Ljava/nio/charset/Charset;)Ljava/lang/String;
named toString
Lnet/minecraft/network/PacketByteBuf;toString(Ljava/nio/charset/Charset;)Ljava/lang/String;
-
toString
- Specified by:
toString
in classByteBuf
- Mappings:
Namespace Name Mixin selector official toString
Lob;toString(IILjava/nio/charset/Charset;)Ljava/lang/String;
intermediary toString
Lnet/minecraft/class_2540;toString(IILjava/nio/charset/Charset;)Ljava/lang/String;
named toString
Lnet/minecraft/network/PacketByteBuf;toString(IILjava/nio/charset/Charset;)Ljava/lang/String;
-
hashCode
public int hashCode() -
equals
-
compareTo
- Specified by:
compareTo
in interfaceComparable<ByteBuf>
- Specified by:
compareTo
in classByteBuf
- Mappings:
Namespace Name Mixin selector official compareTo
Lob;compareTo(Lio/netty/buffer/ByteBuf;)I
intermediary compareTo
Lnet/minecraft/class_2540;compareTo(Lio/netty/buffer/ByteBuf;)I
named compareTo
Lnet/minecraft/network/PacketByteBuf;compareTo(Lio/netty/buffer/ByteBuf;)I
-
toString
-
retain
- Specified by:
retain
in interfaceReferenceCounted
- Specified by:
retain
in classByteBuf
- Mappings:
Namespace Name Mixin selector official retain
Lob;retain(I)Lio/netty/buffer/ByteBuf;
intermediary retain
Lnet/minecraft/class_2540;retain(I)Lio/netty/buffer/ByteBuf;
named retain
Lnet/minecraft/network/PacketByteBuf;retain(I)Lio/netty/buffer/ByteBuf;
-
retain
- Specified by:
retain
in interfaceReferenceCounted
- Specified by:
retain
in classByteBuf
- Mappings:
Namespace Name Mixin selector official retain
Lob;retain()Lio/netty/buffer/ByteBuf;
intermediary retain
Lnet/minecraft/class_2540;retain()Lio/netty/buffer/ByteBuf;
named retain
Lnet/minecraft/network/PacketByteBuf;retain()Lio/netty/buffer/ByteBuf;
-
touch
- Specified by:
touch
in interfaceReferenceCounted
- Specified by:
touch
in classByteBuf
- Mappings:
Namespace Name Mixin selector official touch
Lob;touch()Lio/netty/buffer/ByteBuf;
intermediary touch
Lnet/minecraft/class_2540;touch()Lio/netty/buffer/ByteBuf;
named touch
Lnet/minecraft/network/PacketByteBuf;touch()Lio/netty/buffer/ByteBuf;
-
touch
- Specified by:
touch
in interfaceReferenceCounted
- Specified by:
touch
in classByteBuf
- Mappings:
Namespace Name Mixin selector official touch
Lob;touch(Ljava/lang/Object;)Lio/netty/buffer/ByteBuf;
intermediary touch
Lnet/minecraft/class_2540;touch(Ljava/lang/Object;)Lio/netty/buffer/ByteBuf;
named touch
Lnet/minecraft/network/PacketByteBuf;touch(Ljava/lang/Object;)Lio/netty/buffer/ByteBuf;
-
refCnt
public int refCnt()- Mappings:
Namespace Name Mixin selector official refCnt
Lob;refCnt()I
intermediary refCnt
Lnet/minecraft/class_2540;refCnt()I
named refCnt
Lnet/minecraft/network/PacketByteBuf;refCnt()I
-
release
public boolean release()- Mappings:
Namespace Name Mixin selector official release
Lob;release()Z
intermediary release
Lnet/minecraft/class_2540;release()Z
named release
Lnet/minecraft/network/PacketByteBuf;release()Z
-
release
public boolean release(int int2)- Mappings:
Namespace Name Mixin selector official release
Lob;release(I)Z
intermediary release
Lnet/minecraft/class_2540;release(I)Z
named release
Lnet/minecraft/network/PacketByteBuf;release(I)Z
-