Class PacketByteBuf
- All Implemented Interfaces:
ByteBufConvertible,ReferenceCounted,Comparable<ByteBuf>
- Direct Known Subclasses:
RegistryByteBuf
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 named net/minecraft/network/PacketByteBufintermediary net/minecraft/class_2540official wj
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final shortprivate static final intprivate static final intprivate static final intprivate static final Gsonstatic final intThe maximum size, in number of bytes, allowed of the NBT compound read byreadNbt().static final intThe maximum size, in terms of JSON string length, allowed for serialized texts.private final ByteBuf -
Constructor Summary
ConstructorsConstructorDescriptionPacketByteBuf(ByteBuf parent) Creates a packet byte buf that delegates its operations to theparentbuf. -
Method Summary
Modifier and TypeMethodDescriptionalloc()byte[]array()intintbytesBefore(byte value) intbytesBefore(int length, byte value) intbytesBefore(int index, int length, byte value) intcapacity()capacity(int int2) clear()intcopy()copy(int index, int length) <T> Tdecode(com.mojang.serialization.DynamicOps<NbtElement> ops, com.mojang.serialization.Codec<T> codec) Deprecated.<T> Tdecode(com.mojang.serialization.DynamicOps<NbtElement> ops, com.mojang.serialization.Codec<T> codec, NbtSizeTracker sizeTracker) Deprecated.<T> Tdecode(IntFunction<T> idToValue) Reads a var int representing an ID, then returns the value converted byidToValue.<T> TdecodeAsJson(com.mojang.serialization.Codec<T> codec) Reads an object from this buf as a JSON element with the given codec.<T> PacketByteBufencode(com.mojang.serialization.DynamicOps<NbtElement> ops, com.mojang.serialization.Codec<T> codec, T value) Deprecated.<T> PacketByteBufencode(ToIntFunction<T> valueToId, T value) Convertsvalueto an integer representing its ID, then writes a var int representation of such ID.<T> voidencodeAsJson(com.mojang.serialization.Codec<T> codec, T value) Writes an object to this buf as a JSON element with the given codec.ensureWritable(int int2) intensureWritable(int minBytes, boolean force) booleanintforEachByte(int index, int length, ByteProcessor byteProcessor) intforEachByte(ByteProcessor byteProcessor) intforEachByteDesc(int index, int length, ByteProcessor byteProcessor) intforEachByteDesc(ByteProcessor byteProcessor) voidforEachInCollection(Consumer<PacketByteBuf> consumer) Iterates a collection from this buf.booleangetBoolean(int index) bytegetByte(int index) 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) intgetBytes(int index, FileChannel channel, long pos, int length) intgetBytes(int index, GatheringByteChannel channel, int length) chargetChar(int index) getCharSequence(int index, int length, Charset charset) doublegetDouble(int index) floatgetFloat(int index) intgetInt(int index) intgetIntLE(int index) longgetLong(int index) longgetLongLE(int index) static <T> IntFunction<T> getMaxValidator(IntFunction<T> applier, int max) intgetMedium(int index) intgetMediumLE(int index) shortgetShort(int index) shortgetShortLE(int index) shortgetUnsignedByte(int index) longgetUnsignedInt(int index) longgetUnsignedIntLE(int index) intgetUnsignedMedium(int index) intgetUnsignedMediumLE(int index) intgetUnsignedShort(int index) intgetUnsignedShortLE(int index) booleanhasArray()inthashCode()booleanintindexOf(int from, int to, byte value) internalNioBuffer(int index, int length) booleanbooleanisDirect()booleanbooleanisReadable(int size) booleanbooleanbooleanisWritable(int size) intintintlongnioBuffer(int index, int length) intnioBuffers(int index, int length) order()intReads a bit set from this buf.readBitSet(int size) Reads a bit set from this buf.Reads a block hit result from this buf.Reads a block position from this buf.static BlockPosreadBlockPos(ByteBuf buf) booleanbytereadByte()byte[]Reads an array of primitive bytes from this buf.byte[]readByteArray(int maxSize) Reads an array of primitive bytes from this buf.static byte[]readByteArray(ByteBuf buf) static byte[]readByteArray(ByteBuf buf, int maxSize) readBytes(byte[] byte2) readBytes(byte[] byte2, int int2, int int3) readBytes(int length) readBytes(OutputStream outputStream, int int2) readBytes(ByteBuffer byteBuffer) intreadBytes(FileChannel channel, long pos, int length) intreadBytes(GatheringByteChannel channel, int length) charreadChar()readCharSequence(int length, Charset charset) Reads a chunk position from this buf.static ChunkPosreadChunkPos(ByteBuf buf) Reads a chunk section position from this buf.<T,C extends Collection<T>>
CreadCollection(IntFunction<C> collectionFactory, PacketDecoder<? super PacketByteBuf, T> reader) Reads a collection from this buf.readDate()Reads a date from this buf.double<L,R> com.mojang.datafixers.util.Either <L, R> readEither(PacketDecoder<? super PacketByteBuf, L> leftDecoder, PacketDecoder<? super PacketByteBuf, R> rightDecoder) <T extends Enum<T>>
TreadEnumConstant(Class<T> enumClass) Reads an enum constant from this buf.readEnumSet(Class<E> type) Reads an enum set from this buf.intreaderIndex(int int2) long[]readFixedLengthLongArray(long[] values) static long[]readFixedLengthLongArray(ByteBuf buf, long[] values) floatReads a global position from this buf.Reads an identifier from this buf.Reads an instant from this buf.intreadInt()int[]Reads an array of primitive ints from this buf.int[]readIntArray(int maxSize) Reads an array of primitive ints from this buf.intReads a list of primitive ints from this buf.<T> List<T> readList(PacketDecoder<? super PacketByteBuf, T> reader) Reads a collection from this buf as an array list.longreadLong()long[]Reads an array of primitive longs from this buf.static long[]readLongArray(ByteBuf buf) Reads an array of primitive longs from this buf.long<K,V, M extends Map<K, V>>
MreadMap(IntFunction<M> mapFactory, PacketDecoder<? super PacketByteBuf, K> keyReader, PacketDecoder<? super PacketByteBuf, V> valueReader) Reads a map from this buf.<K,V> Map <K, V> readMap(PacketDecoder<? super PacketByteBuf, K> keyReader, PacketDecoder<? super PacketByteBuf, V> valueReader) Reads a map from this buf as a hash map.intintreadNbt()Reads an NBT compound from this buf.static @Nullable NbtCompoundstatic @Nullable NbtElementreadNbt(ByteBuf buf, NbtSizeTracker sizeTracker) readNbt(NbtSizeTracker sizeTracker) Reads an NBT element from this buf.static <T,B extends ByteBuf>
TreadNullable(B buf, PacketDecoder<? super B, T> reader) <T> TreadNullable(PacketDecoder<? super PacketByteBuf, T> reader) Reads a nullable value from this buf.<T> Optional<T> readOptional(PacketDecoder<? super PacketByteBuf, T> reader) Reads an optional value from this buf.Reads a public key from this buf.Reads aQuaternionffrom this buf.static QuaternionfreadQuaternionf(ByteBuf buf) <T> RegistryKey<T> readRegistryKey(RegistryKey<? extends Registry<T>> registryRef) Reads a registry key from this buf.<T> RegistryKey<? extends Registry<T>> Reads a registry key referencing another registry key from this buf.readRetainedSlice(int length) shortshortreadSlice(int length) Reads a string from this buf.readString(int maxLength) Reads a string from this buf.intstatic intreadSyncId(ByteBuf buf) shortlonglongintintintintreadUuid()Reads a UUID (universally unique identifier) from this buf.static UUIDintReads a single var int from this buf.longReads a single var long from this buf.Reads aVec3dfrom this buf.static Vec3dReads aVector3ffrom this buf.static Vector3freadVector3f(ByteBuf buf) intrefCnt()booleanrelease()booleanrelease(int decrement) retain()retain(int int2) retainedSlice(int index, int length) setBoolean(int int2, boolean bool) setByte(int int2, int int3) setBytes(int int2, byte[] byte2) setBytes(int int2, byte[] byte2, int int3, int int4) intsetBytes(int index, InputStream stream, int length) setBytes(int int2, ByteBuffer byteBuffer) intsetBytes(int index, FileChannel channel, long pos, int length) intsetBytes(int index, ScatteringByteChannel channel, int length) setChar(int int2, int int3) intsetCharSequence(int index, CharSequence sequence, 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 index, int length) toString()touch()unwrap()intvoidwriteBitSet(BitSet bitSet) Writes a bit set to this buf.voidwriteBitSet(BitSet bitSet, int size) Writes a bit set to this buf.voidwriteBlockHitResult(BlockHitResult hitResult) Writes a block hit result to this buf.static voidwriteBlockPos(ByteBuf buf, BlockPos pos) 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.static voidwriteByteArray(ByteBuf buf, byte[] array) 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) intwriteBytes(InputStream stream, int length) writeBytes(ByteBuffer byteBuffer) intwriteBytes(FileChannel channel, long pos, int length) intwriteBytes(ScatteringByteChannel channel, int length) writeChar(int int2) intwriteCharSequence(CharSequence sequence, Charset charset) static voidwriteChunkPos(ByteBuf buf, ChunkPos pos) writeChunkPos(ChunkPos pos) Writes a chunk position to this buf.Reads a chunk section position from this buf.<T> voidwriteCollection(Collection<T> collection, PacketEncoder<? super PacketByteBuf, T> writer) Writes a collection to this buf.Writes a date to this buf.writeDouble(double double2) <L,R> void writeEither(com.mojang.datafixers.util.Either<L, R> either, PacketEncoder<? super PacketByteBuf, L> leftEncoder, PacketEncoder<? super PacketByteBuf, R> rightEncoder) writeEnumConstant(Enum<?> instance) Writes an enum constant to this buf.<E extends Enum<E>>
voidwriteEnumSet(EnumSet<E> enumSet, Class<E> type) Writes an enum set to this buf.writeFixedLengthLongArray(long[] values) static voidwriteFixedLengthLongArray(ByteBuf buf, long[] values) writeFloat(float float2) voidwriteGlobalPos(GlobalPos pos) Writes a global position to this buf.Writes an identifier to this buf.voidwriteInstant(Instant instant) Writes an instant to this buf.writeInt(int int2) writeIntArray(int[] array) Writes an array of primitive ints to this buf.writeIntLE(int int2) voidwriteIntList(IntList list) Writes a list of primitive ints from this buf.writeLong(long long2) writeLongArray(long[] values) Writes an array of primitive longs to this buf.static voidwriteLongArray(ByteBuf buf, long[] values) writeLongLE(long long2) <K,V> void writeMap(Map<K, V> map, PacketEncoder<? super PacketByteBuf, K> keyWriter, PacketEncoder<? super PacketByteBuf, V> valueWriter) Writes a map to this buf.writeMedium(int int2) writeMediumLE(int int2) static voidwriteNbt(ByteBuf buf, @Nullable NbtElement nbt) writeNbt(@Nullable NbtElement nbt) Writes an NBT element to this buf.static <T,B extends ByteBuf>
voidwriteNullable(B buf, T value, PacketEncoder<? super B, T> writer) <T> voidwriteNullable(T value, PacketEncoder<? super PacketByteBuf, T> writer) Writes a nullable value to this buf.<T> voidwriteOptional(Optional<T> value, PacketEncoder<? super PacketByteBuf, T> writer) Writes an optional value to this buf.writePublicKey(PublicKey publicKey) Writes a public key to this buf.static voidwriteQuaternionf(ByteBuf buf, Quaternionf quaternion) voidwriteQuaternionf(Quaternionf quaternionf) Writes aQuaternionfto this buf.voidwriteRegistryKey(RegistryKey<?> key) Writes a registry key to this buf.intwriterIndex(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.voidwriteSyncId(int syncId) static voidwriteSyncId(ByteBuf buf, int syncId) static voidWrites 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.static voidwriteVec3d(ByteBuf buf, Vec3d vec) voidwriteVec3d(Vec3d vec) Writes aVec3dto this buf.static voidwriteVector3f(ByteBuf buf, Vector3f vector) voidwriteVector3f(Vector3f vector3f) Writes aVector3fto this buf.writeZero(int int2) Methods inherited from class io.netty.buffer.ByteBuf
asByteBuf, getDoubleLE, getFloatLE, readDoubleLE, readFloatLE, setDoubleLE, setFloatLE, writeDoubleLE, writeFloatLE
-
Field Details
-
MAX_READ_NBT_SIZE
public static final int MAX_READ_NBT_SIZEThe maximum size, in number of bytes, allowed of the NBT compound read byreadNbt().- See Also:
- Mappings:
Namespace Name Mixin selector named MAX_READ_NBT_SIZELnet/minecraft/network/PacketByteBuf;MAX_READ_NBT_SIZE:Iintermediary field_33287Lnet/minecraft/class_2540;field_33287:Iofficial aLwj;a: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:
- Mappings:
Namespace Name Mixin selector named DEFAULT_MAX_STRING_LENGTHLnet/minecraft/network/PacketByteBuf;DEFAULT_MAX_STRING_LENGTH:Sintermediary field_33283Lnet/minecraft/class_2540;field_33283:Sofficial bLwj;b:S
-
MAX_TEXT_LENGTH
public static final int MAX_TEXT_LENGTHThe maximum size, in terms of JSON string length, allowed for serialized texts.- See Also:
- Mappings:
Namespace Name Mixin selector named MAX_TEXT_LENGTHLnet/minecraft/network/PacketByteBuf;MAX_TEXT_LENGTH:Iintermediary field_33284Lnet/minecraft/class_2540;field_33284:Iofficial cLwj;c:I
-
field_39381
private static final int field_39381- See Also:
- Mappings:
Namespace Name Mixin selector named field_39381Lnet/minecraft/network/PacketByteBuf;field_39381:Iintermediary field_39381Lnet/minecraft/class_2540;field_39381:Iofficial eLwj;e:I
-
field_39382
private static final int field_39382- See Also:
- Mappings:
Namespace Name Mixin selector named field_39382Lnet/minecraft/network/PacketByteBuf;field_39382:Iintermediary field_39382Lnet/minecraft/class_2540;field_39382:Iofficial fLwj;f:I
-
field_39383
private static final int field_39383- See Also:
- Mappings:
Namespace Name Mixin selector named field_39383Lnet/minecraft/network/PacketByteBuf;field_39383:Iintermediary field_39383Lnet/minecraft/class_2540;field_39383:Iofficial gLwj;g:I
-
GSON
- Mappings:
Namespace Name Mixin selector named GSONLnet/minecraft/network/PacketByteBuf;GSON:Lcom/google/gson/Gson;intermediary field_42966Lnet/minecraft/class_2540;field_42966:Lcom/google/gson/Gson;official hLwj;h:Lcom/google/gson/Gson;
-
parent
- Mappings:
Namespace Name Mixin selector named parentLnet/minecraft/network/PacketByteBuf;parent:Lio/netty/buffer/ByteBuf;intermediary field_11695Lnet/minecraft/class_2540;field_11695:Lio/netty/buffer/ByteBuf;official dLwj;d:Lio/netty/buffer/ByteBuf;
-
-
Constructor Details
-
PacketByteBuf
Creates a packet byte buf that delegates its operations to theparentbuf.- Parameters:
parent- the parent, or delegate, buf- Mappings:
Namespace Name Mixin selector named <init>Lnet/minecraft/network/PacketByteBuf;<init>(Lio/netty/buffer/ByteBuf;)Vintermediary <init>Lnet/minecraft/class_2540;<init>(Lio/netty/buffer/ByteBuf;)Vofficial <init>Lwj;<init>(Lio/netty/buffer/ByteBuf;)V
-
-
Method Details
-
decode
@Deprecated public <T> T decode(com.mojang.serialization.DynamicOps<NbtElement> ops, com.mojang.serialization.Codec<T> codec) Deprecated.Reads an object from this buf as a compound NBT with the given codec.- Type Parameters:
T- the decoded object's type- Returns:
- the read object
- Throws:
EncoderException- if thecodecfails to decode the compound NBT- See Also:
- Mappings:
Namespace Name Mixin selector named decodeLnet/minecraft/network/PacketByteBuf;decode(Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Codec;)Ljava/lang/Object;intermediary method_52954Lnet/minecraft/class_2540;method_52954(Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Codec;)Ljava/lang/Object;official aLwj;a(Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Codec;)Ljava/lang/Object;
-
decode
@Deprecated public <T> T decode(com.mojang.serialization.DynamicOps<NbtElement> ops, com.mojang.serialization.Codec<T> codec, NbtSizeTracker sizeTracker) Deprecated.Reads an object from this buf as a compound NBT with the given codec.- Type Parameters:
T- the decoded object's type- Returns:
- the read object
- Throws:
EncoderException- if thecodecfails to decode the compound NBT- See Also:
- Mappings:
Namespace Name Mixin selector named decodeLnet/minecraft/network/PacketByteBuf;decode(Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Codec;Lnet/minecraft/nbt/NbtSizeTracker;)Ljava/lang/Object;intermediary method_29171Lnet/minecraft/class_2540;method_29171(Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Codec;Lnet/minecraft/class_2505;)Ljava/lang/Object;official aLwj;a(Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Codec;Luu;)Ljava/lang/Object;
-
encode
@Deprecated public <T> PacketByteBuf encode(com.mojang.serialization.DynamicOps<NbtElement> ops, com.mojang.serialization.Codec<T> codec, T value) Deprecated.Writes an object to this buf as a compound NBT with the given codec.- Type Parameters:
T- the encoded object's type- Throws:
EncoderException- if thecodecfails to encode the compound NBT- See Also:
- Mappings:
Namespace Name Mixin selector named encodeLnet/minecraft/network/PacketByteBuf;encode(Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Codec;Ljava/lang/Object;)Lnet/minecraft/network/PacketByteBuf;intermediary method_29172Lnet/minecraft/class_2540;method_29172(Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Codec;Ljava/lang/Object;)Lnet/minecraft/class_2540;official aLwj;a(Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Codec;Ljava/lang/Object;)Lwj;
-
decodeAsJson
public <T> T decodeAsJson(com.mojang.serialization.Codec<T> codec) Reads an object from this buf as a JSON element with the given codec.- Type Parameters:
T- the decoded object's type- Returns:
- the read object
- Throws:
EncoderException- if thecodecfails to decode the JSON element- See Also:
- Mappings:
Namespace Name Mixin selector named decodeAsJsonLnet/minecraft/network/PacketByteBuf;decodeAsJson(Lcom/mojang/serialization/Codec;)Ljava/lang/Object;intermediary method_49394Lnet/minecraft/class_2540;method_49394(Lcom/mojang/serialization/Codec;)Ljava/lang/Object;official aLwj;a(Lcom/mojang/serialization/Codec;)Ljava/lang/Object;
-
encodeAsJson
public <T> void encodeAsJson(com.mojang.serialization.Codec<T> codec, T value) Writes an object to this buf as a JSON element with the given codec.- Type Parameters:
T- the encoded object's type- Throws:
EncoderException- if thecodecfails to encode the JSON element- See Also:
- Mappings:
Namespace Name Mixin selector named encodeAsJsonLnet/minecraft/network/PacketByteBuf;encodeAsJson(Lcom/mojang/serialization/Codec;Ljava/lang/Object;)Vintermediary method_49395Lnet/minecraft/class_2540;method_49395(Lcom/mojang/serialization/Codec;Ljava/lang/Object;)Vofficial aLwj;a(Lcom/mojang/serialization/Codec;Ljava/lang/Object;)V
-
getMaxValidator
- Mappings:
Namespace Name Mixin selector named getMaxValidatorLnet/minecraft/network/PacketByteBuf;getMaxValidator(Ljava/util/function/IntFunction;I)Ljava/util/function/IntFunction;intermediary method_37453Lnet/minecraft/class_2540;method_37453(Ljava/util/function/IntFunction;I)Ljava/util/function/IntFunction;official aLwj;a(Ljava/util/function/IntFunction;I)Ljava/util/function/IntFunction;
-
readCollection
public <T,C extends Collection<T>> C readCollection(IntFunction<C> collectionFactory, PacketDecoder<? super PacketByteBuf, T> reader) 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 size- Returns:
- the read collection
- See Also:
- Mappings:
Namespace Name Mixin selector named readCollectionLnet/minecraft/network/PacketByteBuf;readCollection(Ljava/util/function/IntFunction;Lnet/minecraft/network/codec/PacketDecoder;)Ljava/util/Collection;intermediary method_34068Lnet/minecraft/class_2540;method_34068(Ljava/util/function/IntFunction;Lnet/minecraft/class_9141;)Ljava/util/Collection;official aLwj;a(Ljava/util/function/IntFunction;Lzq;)Ljava/util/Collection;
-
writeCollection
public <T> void writeCollection(Collection<T> collection, PacketEncoder<? super PacketByteBuf, T> writer) 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 write- See Also:
- Mappings:
Namespace Name Mixin selector named writeCollectionLnet/minecraft/network/PacketByteBuf;writeCollection(Ljava/util/Collection;Lnet/minecraft/network/codec/PacketEncoder;)Vintermediary method_34062Lnet/minecraft/class_2540;method_34062(Ljava/util/Collection;Lnet/minecraft/class_9142;)Vofficial aLwj;a(Ljava/util/Collection;Lzr;)V
-
readList
Reads a collection from this buf as an array list.- Type Parameters:
T- the list's entry type- Returns:
- the read list
- See Also:
- Mappings:
Namespace Name Mixin selector named readListLnet/minecraft/network/PacketByteBuf;readList(Lnet/minecraft/network/codec/PacketDecoder;)Ljava/util/List;intermediary method_34066Lnet/minecraft/class_2540;method_34066(Lnet/minecraft/class_9141;)Ljava/util/List;official aLwj;a(Lzq;)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:
- 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 named readIntListLnet/minecraft/network/PacketByteBuf;readIntList()Lit/unimi/dsi/fastutil/ints/IntList;intermediary method_34059Lnet/minecraft/class_2540;method_34059()Lit/unimi/dsi/fastutil/ints/IntList;official aLwj;a()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:
- Implementation Note:
- A list of ints has the same format as an int array.
- Mappings:
Namespace Name Mixin selector named writeIntListLnet/minecraft/network/PacketByteBuf;writeIntList(Lit/unimi/dsi/fastutil/ints/IntList;)Vintermediary method_34060Lnet/minecraft/class_2540;method_34060(Lit/unimi/dsi/fastutil/ints/IntList;)Vofficial aLwj;a(Lit/unimi/dsi/fastutil/ints/IntList;)V
-
readMap
public <K,V, M readMapM extends Map<K, V>> (IntFunction<M> mapFactory, PacketDecoder<? super PacketByteBuf, K> keyReader, PacketDecoder<? super PacketByteBuf, V> valueReader) 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 size- Returns:
- the read map
- See Also:
- Mappings:
Namespace Name Mixin selector named readMapLnet/minecraft/network/PacketByteBuf;readMap(Ljava/util/function/IntFunction;Lnet/minecraft/network/codec/PacketDecoder;Lnet/minecraft/network/codec/PacketDecoder;)Ljava/util/Map;intermediary method_34069Lnet/minecraft/class_2540;method_34069(Ljava/util/function/IntFunction;Lnet/minecraft/class_9141;Lnet/minecraft/class_9141;)Ljava/util/Map;official aLwj;a(Ljava/util/function/IntFunction;Lzq;Lzq;)Ljava/util/Map;
-
readMap
public <K,V> Map<K,V> readMap(PacketDecoder<? super PacketByteBuf, K> keyReader, PacketDecoder<? super PacketByteBuf, V> valueReader) Reads a map from this buf as a hash map.- Type Parameters:
K- the key typeV- the value type- Returns:
- the read map
- See Also:
- Mappings:
Namespace Name Mixin selector named readMapLnet/minecraft/network/PacketByteBuf;readMap(Lnet/minecraft/network/codec/PacketDecoder;Lnet/minecraft/network/codec/PacketDecoder;)Ljava/util/Map;intermediary method_34067Lnet/minecraft/class_2540;method_34067(Lnet/minecraft/class_9141;Lnet/minecraft/class_9141;)Ljava/util/Map;official aLwj;a(Lzq;Lzq;)Ljava/util/Map;
-
writeMap
public <K,V> void writeMap(Map<K, V> map, PacketEncoder<? super PacketByteBuf, K> keyWriter, PacketEncoder<? super PacketByteBuf, V> valueWriter) 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 write- See Also:
- Mappings:
Namespace Name Mixin selector named writeMapLnet/minecraft/network/PacketByteBuf;writeMap(Ljava/util/Map;Lnet/minecraft/network/codec/PacketEncoder;Lnet/minecraft/network/codec/PacketEncoder;)Vintermediary method_34063Lnet/minecraft/class_2540;method_34063(Ljava/util/Map;Lnet/minecraft/class_9142;Lnet/minecraft/class_9142;)Vofficial aLwj;a(Ljava/util/Map;Lzr;Lzr;)V
-
forEachInCollection
Iterates a collection from this buf. The collection is stored as a leading var intsizefollowed by the entries sequentially. Theconsumerwill be calledsizetimes.- Parameters:
consumer- the consumer to read entries- See Also:
- Mappings:
Namespace Name Mixin selector named forEachInCollectionLnet/minecraft/network/PacketByteBuf;forEachInCollection(Ljava/util/function/Consumer;)Vintermediary method_34065Lnet/minecraft/class_2540;method_34065(Ljava/util/function/Consumer;)Vofficial aLwj;a(Ljava/util/function/Consumer;)V
-
writeEnumSet
Writes an enum set to this buf. An enum set is represented by a bit set that indicates whether each element is in the set.- Parameters:
type- the type of the enum- See Also:
- Mappings:
Namespace Name Mixin selector named writeEnumSetLnet/minecraft/network/PacketByteBuf;writeEnumSet(Ljava/util/EnumSet;Ljava/lang/Class;)Vintermediary method_46253Lnet/minecraft/class_2540;method_46253(Ljava/util/EnumSet;Ljava/lang/Class;)Vofficial aLwj;a(Ljava/util/EnumSet;Ljava/lang/Class;)V
-
readEnumSet
Reads an enum set from this buf. An enum set is represented by a bit set that indicates whether each element is in the set.- Parameters:
type- the type of the enum- See Also:
- Mappings:
Namespace Name Mixin selector named readEnumSetLnet/minecraft/network/PacketByteBuf;readEnumSet(Ljava/lang/Class;)Ljava/util/EnumSet;intermediary method_46251Lnet/minecraft/class_2540;method_46251(Ljava/lang/Class;)Ljava/util/EnumSet;official aLwj;a(Ljava/lang/Class;)Ljava/util/EnumSet;
-
writeOptional
Writes an optional value to this buf. An optional value is represented by a boolean indicating if the value is present, followed by the value only if the value is present.- See Also:
- Mappings:
Namespace Name Mixin selector named writeOptionalLnet/minecraft/network/PacketByteBuf;writeOptional(Ljava/util/Optional;Lnet/minecraft/network/codec/PacketEncoder;)Vintermediary method_37435Lnet/minecraft/class_2540;method_37435(Ljava/util/Optional;Lnet/minecraft/class_9142;)Vofficial aLwj;a(Ljava/util/Optional;Lzr;)V
-
readOptional
Reads an optional value from this buf. An optional value is represented by a boolean indicating if the value is present, followed by the value only if the value is present.- Returns:
- the read optional value
- See Also:
- Mappings:
Namespace Name Mixin selector named readOptionalLnet/minecraft/network/PacketByteBuf;readOptional(Lnet/minecraft/network/codec/PacketDecoder;)Ljava/util/Optional;intermediary method_37436Lnet/minecraft/class_2540;method_37436(Lnet/minecraft/class_9141;)Ljava/util/Optional;official bLwj;b(Lzq;)Ljava/util/Optional;
-
writeEither
public <L,R> void writeEither(com.mojang.datafixers.util.Either<L, R> either, PacketEncoder<? super PacketByteBuf, L> leftEncoder, PacketEncoder<? super PacketByteBuf, R> rightEncoder) - Mappings:
Namespace Name Mixin selector named writeEitherLnet/minecraft/network/PacketByteBuf;writeEither(Lcom/mojang/datafixers/util/Either;Lnet/minecraft/network/codec/PacketEncoder;Lnet/minecraft/network/codec/PacketEncoder;)Vintermediary method_70966Lnet/minecraft/class_2540;method_70966(Lcom/mojang/datafixers/util/Either;Lnet/minecraft/class_9142;Lnet/minecraft/class_9142;)Vofficial aLwj;a(Lcom/mojang/datafixers/util/Either;Lzr;Lzr;)V
-
readEither
public <L,R> com.mojang.datafixers.util.Either<L,R> readEither(PacketDecoder<? super PacketByteBuf, L> leftDecoder, PacketDecoder<? super PacketByteBuf, R> rightDecoder) - Mappings:
Namespace Name Mixin selector named readEitherLnet/minecraft/network/PacketByteBuf;readEither(Lnet/minecraft/network/codec/PacketDecoder;Lnet/minecraft/network/codec/PacketDecoder;)Lcom/mojang/datafixers/util/Either;intermediary method_70968Lnet/minecraft/class_2540;method_70968(Lnet/minecraft/class_9141;Lnet/minecraft/class_9141;)Lcom/mojang/datafixers/util/Either;official bLwj;b(Lzq;Lzq;)Lcom/mojang/datafixers/util/Either;
-
readNullable
Reads a nullable value from this buf. A nullable value is represented by a boolean indicating if the value is not null, followed by the value only if the value is not null.- Returns:
- the read nullable value
- See Also:
- Mappings:
Namespace Name Mixin selector named readNullableLnet/minecraft/network/PacketByteBuf;readNullable(Lnet/minecraft/network/codec/PacketDecoder;)Ljava/lang/Object;intermediary method_43827Lnet/minecraft/class_2540;method_43827(Lnet/minecraft/class_9141;)Ljava/lang/Object;official cLwj;c(Lzq;)Ljava/lang/Object;
-
readNullable
@Nullable public static <T,B extends ByteBuf> T readNullable(B buf, PacketDecoder<? super B, T> reader) - Mappings:
Namespace Name Mixin selector named readNullableLnet/minecraft/network/PacketByteBuf;readNullable(Lio/netty/buffer/ByteBuf;Lnet/minecraft/network/codec/PacketDecoder;)Ljava/lang/Object;intermediary method_56893Lnet/minecraft/class_2540;method_56893(Lio/netty/buffer/ByteBuf;Lnet/minecraft/class_9141;)Ljava/lang/Object;official aLwj;a(Lio/netty/buffer/ByteBuf;Lzq;)Ljava/lang/Object;
-
writeNullable
Writes a nullable value to this buf. A nullable value is represented by a boolean indicating if the value is not null, followed by the value only if the value is not null.- See Also:
- Mappings:
Namespace Name Mixin selector named writeNullableLnet/minecraft/network/PacketByteBuf;writeNullable(Ljava/lang/Object;Lnet/minecraft/network/codec/PacketEncoder;)Vintermediary method_43826Lnet/minecraft/class_2540;method_43826(Ljava/lang/Object;Lnet/minecraft/class_9142;)Vofficial aLwj;a(Ljava/lang/Object;Lzr;)V
-
writeNullable
public static <T,B extends ByteBuf> void writeNullable(B buf, @Nullable T value, PacketEncoder<? super B, T> writer) - Mappings:
Namespace Name Mixin selector named writeNullableLnet/minecraft/network/PacketByteBuf;writeNullable(Lio/netty/buffer/ByteBuf;Ljava/lang/Object;Lnet/minecraft/network/codec/PacketEncoder;)Vintermediary method_56892Lnet/minecraft/class_2540;method_56892(Lio/netty/buffer/ByteBuf;Ljava/lang/Object;Lnet/minecraft/class_9142;)Vofficial aLwj;a(Lio/netty/buffer/ByteBuf;Ljava/lang/Object;Lzr;)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:
- Mappings:
Namespace Name Mixin selector named readByteArrayLnet/minecraft/network/PacketByteBuf;readByteArray()[Bintermediary method_10795Lnet/minecraft/class_2540;method_10795()[Bofficial bLwj;b()[B
-
readByteArray
- Mappings:
Namespace Name Mixin selector named readByteArrayLnet/minecraft/network/PacketByteBuf;readByteArray(Lio/netty/buffer/ByteBuf;)[Bintermediary method_56890Lnet/minecraft/class_2540;method_56890(Lio/netty/buffer/ByteBuf;)[Bofficial aLwj;a(Lio/netty/buffer/ByteBuf;)[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:
- Mappings:
Namespace Name Mixin selector named writeByteArrayLnet/minecraft/network/PacketByteBuf;writeByteArray([B)Lnet/minecraft/network/PacketByteBuf;intermediary method_10813Lnet/minecraft/class_2540;method_10813([B)Lnet/minecraft/class_2540;official aLwj;a([B)Lwj;
-
writeByteArray
- Mappings:
Namespace Name Mixin selector named writeByteArrayLnet/minecraft/network/PacketByteBuf;writeByteArray(Lio/netty/buffer/ByteBuf;[B)Vintermediary method_56894Lnet/minecraft/class_2540;method_56894(Lio/netty/buffer/ByteBuf;[B)Vofficial aLwj;a(Lio/netty/buffer/ByteBuf;[B)V
-
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:
- Mappings:
Namespace Name Mixin selector named readByteArrayLnet/minecraft/network/PacketByteBuf;readByteArray(I)[Bintermediary method_10803Lnet/minecraft/class_2540;method_10803(I)[Bofficial aLwj;a(I)[B
-
readByteArray
- Mappings:
Namespace Name Mixin selector named readByteArrayLnet/minecraft/network/PacketByteBuf;readByteArray(Lio/netty/buffer/ByteBuf;I)[Bintermediary method_56891Lnet/minecraft/class_2540;method_56891(Lio/netty/buffer/ByteBuf;I)[Bofficial aLwj;a(Lio/netty/buffer/ByteBuf;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:
- Implementation Note:
- An int array has the same format as a list of ints.
- Mappings:
Namespace Name Mixin selector named writeIntArrayLnet/minecraft/network/PacketByteBuf;writeIntArray([I)Lnet/minecraft/network/PacketByteBuf;intermediary method_10806Lnet/minecraft/class_2540;method_10806([I)Lnet/minecraft/class_2540;official aLwj;a([I)Lwj;
-
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:
- Implementation Note:
- An int array has the same format as a list of ints.
- Mappings:
Namespace Name Mixin selector named readIntArrayLnet/minecraft/network/PacketByteBuf;readIntArray()[Iintermediary method_10787Lnet/minecraft/class_2540;method_10787()[Iofficial cLwj;c()[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:
- Implementation Note:
- An int array has the same format as a list of ints.
- Mappings:
Namespace Name Mixin selector named readIntArrayLnet/minecraft/network/PacketByteBuf;readIntArray(I)[Iintermediary method_10799Lnet/minecraft/class_2540;method_10799(I)[Iofficial bLwj;b(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.- Returns:
- this buf, for chaining
- See Also:
- Mappings:
Namespace Name Mixin selector named writeLongArrayLnet/minecraft/network/PacketByteBuf;writeLongArray([J)Lnet/minecraft/network/PacketByteBuf;intermediary method_10789Lnet/minecraft/class_2540;method_10789([J)Lnet/minecraft/class_2540;official aLwj;a([J)Lwj;
-
writeLongArray
- Mappings:
Namespace Name Mixin selector named writeLongArrayLnet/minecraft/network/PacketByteBuf;writeLongArray(Lio/netty/buffer/ByteBuf;[J)Vintermediary method_68085Lnet/minecraft/class_2540;method_68085(Lio/netty/buffer/ByteBuf;[J)Vofficial aLwj;a(Lio/netty/buffer/ByteBuf;[J)V
-
writeFixedLengthLongArray
- Mappings:
Namespace Name Mixin selector named writeFixedLengthLongArrayLnet/minecraft/network/PacketByteBuf;writeFixedLengthLongArray([J)Lnet/minecraft/network/PacketByteBuf;intermediary method_68087Lnet/minecraft/class_2540;method_68087([J)Lnet/minecraft/class_2540;official bLwj;b([J)Lwj;
-
writeFixedLengthLongArray
- Mappings:
Namespace Name Mixin selector named writeFixedLengthLongArrayLnet/minecraft/network/PacketByteBuf;writeFixedLengthLongArray(Lio/netty/buffer/ByteBuf;[J)Vintermediary method_68086Lnet/minecraft/class_2540;method_68086(Lio/netty/buffer/ByteBuf;[J)Vofficial bLwj;b(Lio/netty/buffer/ByteBuf;[J)V
-
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:
- Mappings:
Namespace Name Mixin selector named readLongArrayLnet/minecraft/network/PacketByteBuf;readLongArray()[Jintermediary method_33134Lnet/minecraft/class_2540;method_33134()[Jofficial dLwj;d()[J
-
readFixedLengthLongArray
public long[] readFixedLengthLongArray(long[] values) - Mappings:
Namespace Name Mixin selector named readFixedLengthLongArrayLnet/minecraft/network/PacketByteBuf;readFixedLengthLongArray([J)[Jintermediary method_68089Lnet/minecraft/class_2540;method_68089([J)[Jofficial cLwj;c([J)[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
toArrayis notnullandtoArray.lengthequals to the length var int read will thetoArraybe reused and returned; otherwise, a new array of proper size is created.- Returns:
- the read long array
- See Also:
- Mappings:
Namespace Name Mixin selector named readLongArrayLnet/minecraft/network/PacketByteBuf;readLongArray(Lio/netty/buffer/ByteBuf;)[Jintermediary method_10801Lnet/minecraft/class_2540;method_10801(Lio/netty/buffer/ByteBuf;)[Jofficial bLwj;b(Lio/netty/buffer/ByteBuf;)[J
-
readFixedLengthLongArray
- Mappings:
Namespace Name Mixin selector named readFixedLengthLongArrayLnet/minecraft/network/PacketByteBuf;readFixedLengthLongArray(Lio/netty/buffer/ByteBuf;[J)[Jintermediary method_68088Lnet/minecraft/class_2540;method_68088(Lio/netty/buffer/ByteBuf;[J)[Jofficial cLwj;c(Lio/netty/buffer/ByteBuf;[J)[J
-
readBlockPos
Reads a block position from this buf. A block position is represented by a regular long.- Returns:
- the read block pos
- See Also:
- Mappings:
Namespace Name Mixin selector named readBlockPosLnet/minecraft/network/PacketByteBuf;readBlockPos()Lnet/minecraft/util/math/BlockPos;intermediary method_10811Lnet/minecraft/class_2540;method_10811()Lnet/minecraft/class_2338;official eLwj;e()Ljb;
-
readBlockPos
- Mappings:
Namespace Name Mixin selector named readBlockPosLnet/minecraft/network/PacketByteBuf;readBlockPos(Lio/netty/buffer/ByteBuf;)Lnet/minecraft/util/math/BlockPos;intermediary method_56335Lnet/minecraft/class_2540;method_56335(Lio/netty/buffer/ByteBuf;)Lnet/minecraft/class_2338;official cLwj;c(Lio/netty/buffer/ByteBuf;)Ljb;
-
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:
- Mappings:
Namespace Name Mixin selector named writeBlockPosLnet/minecraft/network/PacketByteBuf;writeBlockPos(Lnet/minecraft/util/math/BlockPos;)Lnet/minecraft/network/PacketByteBuf;intermediary method_10807Lnet/minecraft/class_2540;method_10807(Lnet/minecraft/class_2338;)Lnet/minecraft/class_2540;official aLwj;a(Ljb;)Lwj;
-
writeBlockPos
- Mappings:
Namespace Name Mixin selector named writeBlockPosLnet/minecraft/network/PacketByteBuf;writeBlockPos(Lio/netty/buffer/ByteBuf;Lnet/minecraft/util/math/BlockPos;)Vintermediary method_56336Lnet/minecraft/class_2540;method_56336(Lio/netty/buffer/ByteBuf;Lnet/minecraft/class_2338;)Vofficial aLwj;a(Lio/netty/buffer/ByteBuf;Ljb;)V
-
readChunkPos
Reads a chunk position from this buf. A chunk position is represented by a regular long.- Returns:
- the read chunk position
- See Also:
- Mappings:
Namespace Name Mixin selector named readChunkPosLnet/minecraft/network/PacketByteBuf;readChunkPos()Lnet/minecraft/util/math/ChunkPos;intermediary method_36133Lnet/minecraft/class_2540;method_36133()Lnet/minecraft/class_1923;official fLwj;f()Ldmt;
-
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:
- Mappings:
Namespace Name Mixin selector named writeChunkPosLnet/minecraft/network/PacketByteBuf;writeChunkPos(Lnet/minecraft/util/math/ChunkPos;)Lnet/minecraft/network/PacketByteBuf;intermediary method_36130Lnet/minecraft/class_2540;method_36130(Lnet/minecraft/class_1923;)Lnet/minecraft/class_2540;official aLwj;a(Ldmt;)Lwj;
-
readChunkPos
- Mappings:
Namespace Name Mixin selector named readChunkPosLnet/minecraft/network/PacketByteBuf;readChunkPos(Lio/netty/buffer/ByteBuf;)Lnet/minecraft/util/math/ChunkPos;intermediary method_64264Lnet/minecraft/class_2540;method_64264(Lio/netty/buffer/ByteBuf;)Lnet/minecraft/class_1923;official dLwj;d(Lio/netty/buffer/ByteBuf;)Ldmt;
-
writeChunkPos
- Mappings:
Namespace Name Mixin selector named writeChunkPosLnet/minecraft/network/PacketByteBuf;writeChunkPos(Lio/netty/buffer/ByteBuf;Lnet/minecraft/util/math/ChunkPos;)Vintermediary method_64263Lnet/minecraft/class_2540;method_64263(Lio/netty/buffer/ByteBuf;Lnet/minecraft/class_1923;)Vofficial aLwj;a(Lio/netty/buffer/ByteBuf;Ldmt;)V
-
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:
- Mappings:
Namespace Name Mixin selector named readChunkSectionPosLnet/minecraft/network/PacketByteBuf;readChunkSectionPos()Lnet/minecraft/util/math/ChunkSectionPos;intermediary method_19456Lnet/minecraft/class_2540;method_19456()Lnet/minecraft/class_4076;official gLwj;g()Lke;
-
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:
- Mappings:
Namespace Name Mixin selector named writeChunkSectionPosLnet/minecraft/network/PacketByteBuf;writeChunkSectionPos(Lnet/minecraft/util/math/ChunkSectionPos;)Lnet/minecraft/network/PacketByteBuf;intermediary method_36131Lnet/minecraft/class_2540;method_36131(Lnet/minecraft/class_4076;)Lnet/minecraft/class_2540;official aLwj;a(Lke;)Lwj;
-
readGlobalPos
Reads a global position from this buf. A global position is represented by the registry key of the dimension followed by the block position.- Returns:
- the read global pos
- See Also:
- Mappings:
Namespace Name Mixin selector named readGlobalPosLnet/minecraft/network/PacketByteBuf;readGlobalPos()Lnet/minecraft/util/math/GlobalPos;intermediary method_44117Lnet/minecraft/class_2540;method_44117()Lnet/minecraft/class_4208;official hLwj;h()Ljk;
-
writeGlobalPos
Writes a global position to this buf. A global position is represented by the registry key of the dimension followed by the block position.- See Also:
- Mappings:
Namespace Name Mixin selector named writeGlobalPosLnet/minecraft/network/PacketByteBuf;writeGlobalPos(Lnet/minecraft/util/math/GlobalPos;)Vintermediary method_44113Lnet/minecraft/class_2540;method_44113(Lnet/minecraft/class_4208;)Vofficial aLwj;a(Ljk;)V
-
readVector3f
- See Also:
- Mappings:
Namespace Name Mixin selector named readVector3fLnet/minecraft/network/PacketByteBuf;readVector3f()Lorg/joml/Vector3f;intermediary method_49069Lnet/minecraft/class_2540;method_49069()Lorg/joml/Vector3f;official iLwj;i()Lorg/joml/Vector3f;
-
readVector3f
- Mappings:
Namespace Name Mixin selector named readVector3fLnet/minecraft/network/PacketByteBuf;readVector3f(Lio/netty/buffer/ByteBuf;)Lorg/joml/Vector3f;intermediary method_56342Lnet/minecraft/class_2540;method_56342(Lio/netty/buffer/ByteBuf;)Lorg/joml/Vector3f;official eLwj;e(Lio/netty/buffer/ByteBuf;)Lorg/joml/Vector3f;
-
writeVector3f
- See Also:
- Mappings:
Namespace Name Mixin selector named writeVector3fLnet/minecraft/network/PacketByteBuf;writeVector3f(Lorg/joml/Vector3f;)Vintermediary method_49068Lnet/minecraft/class_2540;method_49068(Lorg/joml/Vector3f;)Vofficial aLwj;a(Lorg/joml/Vector3f;)V
-
writeVector3f
- Mappings:
Namespace Name Mixin selector named writeVector3fLnet/minecraft/network/PacketByteBuf;writeVector3f(Lio/netty/buffer/ByteBuf;Lorg/joml/Vector3f;)Vintermediary method_56339Lnet/minecraft/class_2540;method_56339(Lio/netty/buffer/ByteBuf;Lorg/joml/Vector3f;)Vofficial aLwj;a(Lio/netty/buffer/ByteBuf;Lorg/joml/Vector3f;)V
-
readQuaternionf
- See Also:
- Mappings:
Namespace Name Mixin selector named readQuaternionfLnet/minecraft/network/PacketByteBuf;readQuaternionf()Lorg/joml/Quaternionf;intermediary method_49070Lnet/minecraft/class_2540;method_49070()Lorg/joml/Quaternionf;official jLwj;j()Lorg/joml/Quaternionf;
-
readQuaternionf
- Mappings:
Namespace Name Mixin selector named readQuaternionfLnet/minecraft/network/PacketByteBuf;readQuaternionf(Lio/netty/buffer/ByteBuf;)Lorg/joml/Quaternionf;intermediary method_56343Lnet/minecraft/class_2540;method_56343(Lio/netty/buffer/ByteBuf;)Lorg/joml/Quaternionf;official fLwj;f(Lio/netty/buffer/ByteBuf;)Lorg/joml/Quaternionf;
-
writeQuaternionf
- See Also:
- Mappings:
Namespace Name Mixin selector named writeQuaternionfLnet/minecraft/network/PacketByteBuf;writeQuaternionf(Lorg/joml/Quaternionf;)Vintermediary method_49067Lnet/minecraft/class_2540;method_49067(Lorg/joml/Quaternionf;)Vofficial aLwj;a(Lorg/joml/Quaternionf;)V
-
writeQuaternionf
- Mappings:
Namespace Name Mixin selector named writeQuaternionfLnet/minecraft/network/PacketByteBuf;writeQuaternionf(Lio/netty/buffer/ByteBuf;Lorg/joml/Quaternionf;)Vintermediary method_56338Lnet/minecraft/class_2540;method_56338(Lio/netty/buffer/ByteBuf;Lorg/joml/Quaternionf;)Vofficial aLwj;a(Lio/netty/buffer/ByteBuf;Lorg/joml/Quaternionf;)V
-
readVec3d
- Mappings:
Namespace Name Mixin selector named readVec3dLnet/minecraft/network/PacketByteBuf;readVec3d(Lio/netty/buffer/ByteBuf;)Lnet/minecraft/util/math/Vec3d;intermediary method_62785Lnet/minecraft/class_2540;method_62785(Lio/netty/buffer/ByteBuf;)Lnet/minecraft/class_243;official gLwj;g(Lio/netty/buffer/ByteBuf;)Lfjy;
-
readVec3d
- See Also:
- Mappings:
Namespace Name Mixin selector named readVec3dLnet/minecraft/network/PacketByteBuf;readVec3d()Lnet/minecraft/util/math/Vec3d;intermediary method_52996Lnet/minecraft/class_2540;method_52996()Lnet/minecraft/class_243;official kLwj;k()Lfjy;
-
writeVec3d
- Mappings:
Namespace Name Mixin selector named writeVec3dLnet/minecraft/network/PacketByteBuf;writeVec3d(Lio/netty/buffer/ByteBuf;Lnet/minecraft/util/math/Vec3d;)Vintermediary method_62783Lnet/minecraft/class_2540;method_62783(Lio/netty/buffer/ByteBuf;Lnet/minecraft/class_243;)Vofficial aLwj;a(Lio/netty/buffer/ByteBuf;Lfjy;)V
-
writeVec3d
- See Also:
- Mappings:
Namespace Name Mixin selector named writeVec3dLnet/minecraft/network/PacketByteBuf;writeVec3d(Lnet/minecraft/util/math/Vec3d;)Vintermediary method_52955Lnet/minecraft/class_2540;method_52955(Lnet/minecraft/class_243;)Vofficial aLwj;a(Lfjy;)V
-
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:
- Mappings:
Namespace Name Mixin selector named readEnumConstantLnet/minecraft/network/PacketByteBuf;readEnumConstant(Ljava/lang/Class;)Ljava/lang/Enum;intermediary method_10818Lnet/minecraft/class_2540;method_10818(Ljava/lang/Class;)Ljava/lang/Enum;official bLwj;b(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:
- Mappings:
Namespace Name Mixin selector named writeEnumConstantLnet/minecraft/network/PacketByteBuf;writeEnumConstant(Ljava/lang/Enum;)Lnet/minecraft/network/PacketByteBuf;intermediary method_10817Lnet/minecraft/class_2540;method_10817(Ljava/lang/Enum;)Lnet/minecraft/class_2540;official aLwj;a(Ljava/lang/Enum;)Lwj;
-
decode
Reads a var int representing an ID, then returns the value converted byidToValue.- Parameters:
idToValue- a function that gets the value from the integer ID- See Also:
- Mappings:
Namespace Name Mixin selector named decodeLnet/minecraft/network/PacketByteBuf;decode(Ljava/util/function/IntFunction;)Ljava/lang/Object;intermediary method_52962Lnet/minecraft/class_2540;method_52962(Ljava/util/function/IntFunction;)Ljava/lang/Object;official aLwj;a(Ljava/util/function/IntFunction;)Ljava/lang/Object;
-
encode
Convertsvalueto an integer representing its ID, then writes a var int representation of such ID.- Parameters:
valueToId- a function that gets the value's integer ID- See Also:
- Mappings:
Namespace Name Mixin selector named encodeLnet/minecraft/network/PacketByteBuf;encode(Ljava/util/function/ToIntFunction;Ljava/lang/Object;)Lnet/minecraft/network/PacketByteBuf;intermediary method_52963Lnet/minecraft/class_2540;method_52963(Ljava/util/function/ToIntFunction;Ljava/lang/Object;)Lnet/minecraft/class_2540;official aLwj;a(Ljava/util/function/ToIntFunction;Ljava/lang/Object;)Lwj;
-
readVarInt
public int readVarInt()Reads a single var int from this buf.- Returns:
- the value read
- See Also:
- Mappings:
Namespace Name Mixin selector named readVarIntLnet/minecraft/network/PacketByteBuf;readVarInt()Iintermediary method_10816Lnet/minecraft/class_2540;method_10816()Iofficial lLwj;l()I
-
readVarLong
public long readVarLong()Reads a single var long from this buf.- Returns:
- the value read
- See Also:
- Mappings:
Namespace Name Mixin selector named readVarLongLnet/minecraft/network/PacketByteBuf;readVarLong()Jintermediary method_10792Lnet/minecraft/class_2540;method_10792()Jofficial mLwj;m()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:
- Mappings:
Namespace Name Mixin selector named writeUuidLnet/minecraft/network/PacketByteBuf;writeUuid(Ljava/util/UUID;)Lnet/minecraft/network/PacketByteBuf;intermediary method_10797Lnet/minecraft/class_2540;method_10797(Ljava/util/UUID;)Lnet/minecraft/class_2540;official aLwj;a(Ljava/util/UUID;)Lwj;
-
writeUuid
- Mappings:
Namespace Name Mixin selector named writeUuidLnet/minecraft/network/PacketByteBuf;writeUuid(Lio/netty/buffer/ByteBuf;Ljava/util/UUID;)Vintermediary method_56337Lnet/minecraft/class_2540;method_56337(Lio/netty/buffer/ByteBuf;Ljava/util/UUID;)Vofficial aLwj;a(Lio/netty/buffer/ByteBuf;Ljava/util/UUID;)V
-
readUuid
Reads a UUID (universally unique identifier) from this buf. A UUID is represented by two regular longs.- Returns:
- the read UUID
- See Also:
- Mappings:
Namespace Name Mixin selector named readUuidLnet/minecraft/network/PacketByteBuf;readUuid()Ljava/util/UUID;intermediary method_10790Lnet/minecraft/class_2540;method_10790()Ljava/util/UUID;official nLwj;n()Ljava/util/UUID;
-
readUuid
- Mappings:
Namespace Name Mixin selector named readUuidLnet/minecraft/network/PacketByteBuf;readUuid(Lio/netty/buffer/ByteBuf;)Ljava/util/UUID;intermediary method_56344Lnet/minecraft/class_2540;method_56344(Lio/netty/buffer/ByteBuf;)Ljava/util/UUID;official hLwj;h(Lio/netty/buffer/ByteBuf;)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:
- Mappings:
Namespace Name Mixin selector named writeVarIntLnet/minecraft/network/PacketByteBuf;writeVarInt(I)Lnet/minecraft/network/PacketByteBuf;intermediary method_10804Lnet/minecraft/class_2540;method_10804(I)Lnet/minecraft/class_2540;official cLwj;c(I)Lwj;
-
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:
- Mappings:
Namespace Name Mixin selector named writeVarLongLnet/minecraft/network/PacketByteBuf;writeVarLong(J)Lnet/minecraft/network/PacketByteBuf;intermediary method_10791Lnet/minecraft/class_2540;method_10791(J)Lnet/minecraft/class_2540;official aLwj;a(J)Lwj;
-
writeNbt
Writes an NBT element to this buf. The binary representation of NBT is handled byNbtIo. Ifnbtisnull, it is treated as an NBT null.- Returns:
- this buf, for chaining
- Throws:
EncoderException- if the NBT cannot be written- See Also:
- Mappings:
Namespace Name Mixin selector named writeNbtLnet/minecraft/network/PacketByteBuf;writeNbt(Lnet/minecraft/nbt/NbtElement;)Lnet/minecraft/network/PacketByteBuf;intermediary method_10794Lnet/minecraft/class_2540;method_10794(Lnet/minecraft/class_2520;)Lnet/minecraft/class_2540;official aLwj;a(Lvl;)Lwj;
-
writeNbt
- Mappings:
Namespace Name Mixin selector named writeNbtLnet/minecraft/network/PacketByteBuf;writeNbt(Lio/netty/buffer/ByteBuf;Lnet/minecraft/nbt/NbtElement;)Vintermediary method_56341Lnet/minecraft/class_2540;method_56341(Lio/netty/buffer/ByteBuf;Lnet/minecraft/class_2520;)Vofficial aLwj;a(Lio/netty/buffer/ByteBuf;Lvl;)V
-
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.Note that unlike
readNbt(NbtSizeTracker), this can only read compounds.- Returns:
- the read compound, may be
null - Throws:
EncoderException- if the NBT cannot be readNbtSizeValidationException- if the compound exceeds the allowed maximum size- See Also:
- Mappings:
Namespace Name Mixin selector named readNbtLnet/minecraft/network/PacketByteBuf;readNbt()Lnet/minecraft/nbt/NbtCompound;intermediary method_10798Lnet/minecraft/class_2540;method_10798()Lnet/minecraft/class_2487;official oLwj;o()Lul;
-
readNbt
- Mappings:
Namespace Name Mixin selector named readNbtLnet/minecraft/network/PacketByteBuf;readNbt(Lio/netty/buffer/ByteBuf;)Lnet/minecraft/nbt/NbtCompound;intermediary method_56345Lnet/minecraft/class_2540;method_56345(Lio/netty/buffer/ByteBuf;)Lnet/minecraft/class_2487;official iLwj;i(Lio/netty/buffer/ByteBuf;)Lul;
-
readNbt
- Mappings:
Namespace Name Mixin selector named readNbtLnet/minecraft/network/PacketByteBuf;readNbt(Lio/netty/buffer/ByteBuf;Lnet/minecraft/nbt/NbtSizeTracker;)Lnet/minecraft/nbt/NbtElement;intermediary method_56340Lnet/minecraft/class_2540;method_56340(Lio/netty/buffer/ByteBuf;Lnet/minecraft/class_2505;)Lnet/minecraft/class_2520;official aLwj;a(Lio/netty/buffer/ByteBuf;Luu;)Lvl;
-
readNbt
Reads an NBT element from this buf. The binary representation of NBT is handled byNbtIo. If an NBT null is encountered, this method returnsnull. The element can have a maximum size controlled by thesizeTracker.- Returns:
- the read element, may be
null - Throws:
EncoderException- if the NBT cannot be readNbtSizeValidationException- if the element exceeds the allowed maximum size- See Also:
- Mappings:
Namespace Name Mixin selector named readNbtLnet/minecraft/network/PacketByteBuf;readNbt(Lnet/minecraft/nbt/NbtSizeTracker;)Lnet/minecraft/nbt/NbtElement;intermediary method_30616Lnet/minecraft/class_2540;method_30616(Lnet/minecraft/class_2505;)Lnet/minecraft/class_2520;official aLwj;a(Luu;)Lvl;
-
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:
- Mappings:
Namespace Name Mixin selector named readStringLnet/minecraft/network/PacketByteBuf;readString()Ljava/lang/String;intermediary method_19772Lnet/minecraft/class_2540;method_19772()Ljava/lang/String;official pLwj;p()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:
- Mappings:
Namespace Name Mixin selector named readStringLnet/minecraft/network/PacketByteBuf;readString(I)Ljava/lang/String;intermediary method_10800Lnet/minecraft/class_2540;method_10800(I)Ljava/lang/String;official dLwj;d(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:
- Mappings:
Namespace Name Mixin selector named writeStringLnet/minecraft/network/PacketByteBuf;writeString(Ljava/lang/String;)Lnet/minecraft/network/PacketByteBuf;intermediary method_10814Lnet/minecraft/class_2540;method_10814(Ljava/lang/String;)Lnet/minecraft/class_2540;official aLwj;a(Ljava/lang/String;)Lwj;
-
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:
maxLength- 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:
- Mappings:
Namespace Name Mixin selector named writeStringLnet/minecraft/network/PacketByteBuf;writeString(Ljava/lang/String;I)Lnet/minecraft/network/PacketByteBuf;intermediary method_10788Lnet/minecraft/class_2540;method_10788(Ljava/lang/String;I)Lnet/minecraft/class_2540;official aLwj;a(Ljava/lang/String;I)Lwj;
-
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:
- Mappings:
Namespace Name Mixin selector named readIdentifierLnet/minecraft/network/PacketByteBuf;readIdentifier()Lnet/minecraft/util/Identifier;intermediary method_10810Lnet/minecraft/class_2540;method_10810()Lnet/minecraft/class_2960;official qLwj;q()Lamh;
-
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:
- this buf, for chaining
- Throws:
EncoderException- if theid's byte array is longer than 32767- See Also:
- Mappings:
Namespace Name Mixin selector named writeIdentifierLnet/minecraft/network/PacketByteBuf;writeIdentifier(Lnet/minecraft/util/Identifier;)Lnet/minecraft/network/PacketByteBuf;intermediary method_10812Lnet/minecraft/class_2540;method_10812(Lnet/minecraft/class_2960;)Lnet/minecraft/class_2540;official aLwj;a(Lamh;)Lwj;
-
readRegistryKey
Reads a registry key from this buf. A registry key is represented by its value as an identifier.- Parameters:
registryRef- the registry key of the registry the read registry key belongs to- Returns:
- the read registry key
- See Also:
- Mappings:
Namespace Name Mixin selector named readRegistryKeyLnet/minecraft/network/PacketByteBuf;readRegistryKey(Lnet/minecraft/registry/RegistryKey;)Lnet/minecraft/registry/RegistryKey;intermediary method_44112Lnet/minecraft/class_2540;method_44112(Lnet/minecraft/class_5321;)Lnet/minecraft/class_5321;official aLwj;a(Lamg;)Lamg;
-
writeRegistryKey
Writes a registry key to this buf. A registry key is represented by its value as an identifier.- See Also:
- Mappings:
Namespace Name Mixin selector named writeRegistryKeyLnet/minecraft/network/PacketByteBuf;writeRegistryKey(Lnet/minecraft/registry/RegistryKey;)Vintermediary method_44116Lnet/minecraft/class_2540;method_44116(Lnet/minecraft/class_5321;)Vofficial bLwj;b(Lamg;)V
-
readRegistryRefKey
Reads a registry key referencing another registry key from this buf. Such key is represented by its value as an identifier.This is the same as
readRegistryKey(Registries.ROOT). To read a registry key of a registered object (such as biomes), usereadRegistryKey(RegistryKey).- Returns:
- the read registry key
- See Also:
- Mappings:
Namespace Name Mixin selector named readRegistryRefKeyLnet/minecraft/network/PacketByteBuf;readRegistryRefKey()Lnet/minecraft/registry/RegistryKey;intermediary method_53006Lnet/minecraft/class_2540;method_53006()Lnet/minecraft/class_5321;official rLwj;r()Lamg;
-
readDate
Reads a date from this buf. A date is represented by its time, a regular long.- Returns:
- the read date
- See Also:
- Mappings:
Namespace Name Mixin selector named readDateLnet/minecraft/network/PacketByteBuf;readDate()Ljava/util/Date;intermediary method_10802Lnet/minecraft/class_2540;method_10802()Ljava/util/Date;official sLwj;s()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:
- Mappings:
Namespace Name Mixin selector named writeDateLnet/minecraft/network/PacketByteBuf;writeDate(Ljava/util/Date;)Lnet/minecraft/network/PacketByteBuf;intermediary method_10796Lnet/minecraft/class_2540;method_10796(Ljava/util/Date;)Lnet/minecraft/class_2540;official aLwj;a(Ljava/util/Date;)Lwj;
-
readInstant
Reads an instant from this buf. An instant is represented by the milliseconds since the epoch.- Returns:
- the read instant
- See Also:
- Mappings:
Namespace Name Mixin selector named readInstantLnet/minecraft/network/PacketByteBuf;readInstant()Ljava/time/Instant;intermediary method_44118Lnet/minecraft/class_2540;method_44118()Ljava/time/Instant;official tLwj;t()Ljava/time/Instant;
-
writeInstant
Writes an instant to this buf. An instant is represented by the milliseconds since the epoch.- See Also:
- Mappings:
Namespace Name Mixin selector named writeInstantLnet/minecraft/network/PacketByteBuf;writeInstant(Ljava/time/Instant;)Vintermediary method_44115Lnet/minecraft/class_2540;method_44115(Ljava/time/Instant;)Vofficial aLwj;a(Ljava/time/Instant;)V
-
readPublicKey
Reads a public key from this buf. A public key is represented by a byte array of X.509-encoded payload.- Returns:
- the read public key
- Throws:
DecoderException- if the public key is malformed- See Also:
- Mappings:
Namespace Name Mixin selector named readPublicKeyLnet/minecraft/network/PacketByteBuf;readPublicKey()Ljava/security/PublicKey;intermediary method_44119Lnet/minecraft/class_2540;method_44119()Ljava/security/PublicKey;official uLwj;u()Ljava/security/PublicKey;
-
writePublicKey
Writes a public key to this buf. A public key is represented by a byte array of X.509-encoded payload.- Returns:
- this buf, for chaining
- See Also:
- Mappings:
Namespace Name Mixin selector named writePublicKeyLnet/minecraft/network/PacketByteBuf;writePublicKey(Ljava/security/PublicKey;)Lnet/minecraft/network/PacketByteBuf;intermediary method_44114Lnet/minecraft/class_2540;method_44114(Ljava/security/PublicKey;)Lnet/minecraft/class_2540;official aLwj;a(Ljava/security/PublicKey;)Lwj;
-
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:
- Mappings:
Namespace Name Mixin selector named readBlockHitResultLnet/minecraft/network/PacketByteBuf;readBlockHitResult()Lnet/minecraft/util/hit/BlockHitResult;intermediary method_17814Lnet/minecraft/class_2540;method_17814()Lnet/minecraft/class_3965;official vLwj;v()Lfju;
-
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:
- Mappings:
Namespace Name Mixin selector named writeBlockHitResultLnet/minecraft/network/PacketByteBuf;writeBlockHitResult(Lnet/minecraft/util/hit/BlockHitResult;)Vintermediary method_17813Lnet/minecraft/class_2540;method_17813(Lnet/minecraft/class_3965;)Vofficial aLwj;a(Lfju;)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:
- Mappings:
Namespace Name Mixin selector named readBitSetLnet/minecraft/network/PacketByteBuf;readBitSet()Ljava/util/BitSet;intermediary method_33558Lnet/minecraft/class_2540;method_33558()Ljava/util/BitSet;official wLwj;w()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:
- Mappings:
Namespace Name Mixin selector named writeBitSetLnet/minecraft/network/PacketByteBuf;writeBitSet(Ljava/util/BitSet;)Vintermediary method_33557Lnet/minecraft/class_2540;method_33557(Ljava/util/BitSet;)Vofficial aLwj;a(Ljava/util/BitSet;)V
-
readBitSet
Reads a bit set from this buf. A bit set is represented using its byte array representation.- Parameters:
size- the maximum size of the bit set- See Also:
- Mappings:
Namespace Name Mixin selector named readBitSetLnet/minecraft/network/PacketByteBuf;readBitSet(I)Ljava/util/BitSet;intermediary method_46254Lnet/minecraft/class_2540;method_46254(I)Ljava/util/BitSet;official eLwj;e(I)Ljava/util/BitSet;
-
writeBitSet
Writes a bit set to this buf. A bit set is represented using its byte array representation.- Parameters:
size- the maximum size of the bit set- Throws:
EncoderException- if the bit set's length is abovesize- See Also:
- Mappings:
Namespace Name Mixin selector named writeBitSetLnet/minecraft/network/PacketByteBuf;writeBitSet(Ljava/util/BitSet;I)Vintermediary method_46252Lnet/minecraft/class_2540;method_46252(Ljava/util/BitSet;I)Vofficial aLwj;a(Ljava/util/BitSet;I)V
-
readSyncId
- Mappings:
Namespace Name Mixin selector named readSyncIdLnet/minecraft/network/PacketByteBuf;readSyncId(Lio/netty/buffer/ByteBuf;)Iintermediary method_62787Lnet/minecraft/class_2540;method_62787(Lio/netty/buffer/ByteBuf;)Iofficial jLwj;j(Lio/netty/buffer/ByteBuf;)I
-
readSyncId
public int readSyncId()- Mappings:
Namespace Name Mixin selector named readSyncIdLnet/minecraft/network/PacketByteBuf;readSyncId()Iintermediary method_62788Lnet/minecraft/class_2540;method_62788()Iofficial xLwj;x()I
-
writeSyncId
- Mappings:
Namespace Name Mixin selector named writeSyncIdLnet/minecraft/network/PacketByteBuf;writeSyncId(Lio/netty/buffer/ByteBuf;I)Vintermediary method_62784Lnet/minecraft/class_2540;method_62784(Lio/netty/buffer/ByteBuf;I)Vofficial bLwj;b(Lio/netty/buffer/ByteBuf;I)V
-
writeSyncId
public void writeSyncId(int syncId) - Mappings:
Namespace Name Mixin selector named writeSyncIdLnet/minecraft/network/PacketByteBuf;writeSyncId(I)Vintermediary method_62786Lnet/minecraft/class_2540;method_62786(I)Vofficial fLwj;f(I)V
-
isContiguous
public boolean isContiguous()- Overrides:
isContiguousin classByteBuf
-
maxFastWritableBytes
public int maxFastWritableBytes()- Overrides:
maxFastWritableBytesin classByteBuf
-
capacity
public int capacity() -
capacity
-
maxCapacity
public int maxCapacity()- Specified by:
maxCapacityin classByteBuf
-
alloc
-
order
-
order
- Specified by:
orderin classByteBuf- Mappings:
Namespace Name Mixin selector named orderLnet/minecraft/network/PacketByteBuf;order(Ljava/nio/ByteOrder;)Lio/netty/buffer/ByteBuf;intermediary orderLnet/minecraft/class_2540;order(Ljava/nio/ByteOrder;)Lio/netty/buffer/ByteBuf;official orderLwj;order(Ljava/nio/ByteOrder;)Lio/netty/buffer/ByteBuf;
-
unwrap
-
isDirect
public boolean isDirect() -
isReadOnly
public boolean isReadOnly()- Specified by:
isReadOnlyin classByteBuf
-
asReadOnly
- Specified by:
asReadOnlyin classByteBuf
-
readerIndex
public int readerIndex()- Specified by:
readerIndexin classByteBuf
-
readerIndex
- Specified by:
readerIndexin classByteBuf- Mappings:
Namespace Name Mixin selector named readerIndexLnet/minecraft/network/PacketByteBuf;readerIndex(I)Lnet/minecraft/network/PacketByteBuf;intermediary method_52988Lnet/minecraft/class_2540;method_52988(I)Lnet/minecraft/class_2540;official hLwj;h(I)Lwj;
-
writerIndex
public int writerIndex()- Specified by:
writerIndexin classByteBuf
-
writerIndex
- Specified by:
writerIndexin classByteBuf- Mappings:
Namespace Name Mixin selector named writerIndexLnet/minecraft/network/PacketByteBuf;writerIndex(I)Lnet/minecraft/network/PacketByteBuf;intermediary method_52990Lnet/minecraft/class_2540;method_52990(I)Lnet/minecraft/class_2540;official iLwj;i(I)Lwj;
-
setIndex
- Specified by:
setIndexin classByteBuf- Mappings:
Namespace Name Mixin selector named setIndexLnet/minecraft/network/PacketByteBuf;setIndex(II)Lnet/minecraft/network/PacketByteBuf;intermediary method_52944Lnet/minecraft/class_2540;method_52944(II)Lnet/minecraft/class_2540;official aLwj;a(II)Lwj;
-
readableBytes
public int readableBytes()- Specified by:
readableBytesin classByteBuf
-
writableBytes
public int writableBytes()- Specified by:
writableBytesin classByteBuf
-
maxWritableBytes
public int maxWritableBytes()- Specified by:
maxWritableBytesin classByteBuf
-
isReadable
public boolean isReadable()- Specified by:
isReadablein classByteBuf
-
isReadable
public boolean isReadable(int size) - Specified by:
isReadablein classByteBuf- Mappings:
Namespace Name Mixin selector named isReadableLnet/minecraft/network/PacketByteBuf;isReadable(I)Zintermediary isReadableLnet/minecraft/class_2540;isReadable(I)Zofficial isReadableLwj;isReadable(I)Z
-
isWritable
public boolean isWritable()- Specified by:
isWritablein classByteBuf
-
isWritable
public boolean isWritable(int size) - Specified by:
isWritablein classByteBuf- Mappings:
Namespace Name Mixin selector named isWritableLnet/minecraft/network/PacketByteBuf;isWritable(I)Zintermediary isWritableLnet/minecraft/class_2540;isWritable(I)Zofficial isWritableLwj;isWritable(I)Z
-
clear
-
markReaderIndex
- Specified by:
markReaderIndexin classByteBuf- Mappings:
Namespace Name Mixin selector named markReaderIndexLnet/minecraft/network/PacketByteBuf;markReaderIndex()Lnet/minecraft/network/PacketByteBuf;intermediary method_52932Lnet/minecraft/class_2540;method_52932()Lnet/minecraft/class_2540;official zLwj;z()Lwj;
-
resetReaderIndex
- Specified by:
resetReaderIndexin classByteBuf- Mappings:
Namespace Name Mixin selector named resetReaderIndexLnet/minecraft/network/PacketByteBuf;resetReaderIndex()Lnet/minecraft/network/PacketByteBuf;intermediary method_52933Lnet/minecraft/class_2540;method_52933()Lnet/minecraft/class_2540;official ALwj;A()Lwj;
-
markWriterIndex
- Specified by:
markWriterIndexin classByteBuf- Mappings:
Namespace Name Mixin selector named markWriterIndexLnet/minecraft/network/PacketByteBuf;markWriterIndex()Lnet/minecraft/network/PacketByteBuf;intermediary method_52934Lnet/minecraft/class_2540;method_52934()Lnet/minecraft/class_2540;official BLwj;B()Lwj;
-
resetWriterIndex
- Specified by:
resetWriterIndexin classByteBuf- Mappings:
Namespace Name Mixin selector named resetWriterIndexLnet/minecraft/network/PacketByteBuf;resetWriterIndex()Lnet/minecraft/network/PacketByteBuf;intermediary method_52935Lnet/minecraft/class_2540;method_52935()Lnet/minecraft/class_2540;official CLwj;C()Lwj;
-
discardReadBytes
- Specified by:
discardReadBytesin classByteBuf- Mappings:
Namespace Name Mixin selector named discardReadBytesLnet/minecraft/network/PacketByteBuf;discardReadBytes()Lnet/minecraft/network/PacketByteBuf;intermediary method_52936Lnet/minecraft/class_2540;method_52936()Lnet/minecraft/class_2540;official DLwj;D()Lwj;
-
discardSomeReadBytes
- Specified by:
discardSomeReadBytesin classByteBuf- Mappings:
Namespace Name Mixin selector named discardSomeReadBytesLnet/minecraft/network/PacketByteBuf;discardSomeReadBytes()Lnet/minecraft/network/PacketByteBuf;intermediary method_52937Lnet/minecraft/class_2540;method_52937()Lnet/minecraft/class_2540;official ELwj;E()Lwj;
-
ensureWritable
- Specified by:
ensureWritablein classByteBuf- Mappings:
Namespace Name Mixin selector named ensureWritableLnet/minecraft/network/PacketByteBuf;ensureWritable(I)Lnet/minecraft/network/PacketByteBuf;intermediary method_52992Lnet/minecraft/class_2540;method_52992(I)Lnet/minecraft/class_2540;official jLwj;j(I)Lwj;
-
ensureWritable
public int ensureWritable(int minBytes, boolean force) - Specified by:
ensureWritablein classByteBuf- Mappings:
Namespace Name Mixin selector named ensureWritableLnet/minecraft/network/PacketByteBuf;ensureWritable(IZ)Iintermediary ensureWritableLnet/minecraft/class_2540;ensureWritable(IZ)Iofficial ensureWritableLwj;ensureWritable(IZ)I
-
getBoolean
public boolean getBoolean(int index) - Specified by:
getBooleanin classByteBuf- Mappings:
Namespace Name Mixin selector named getBooleanLnet/minecraft/network/PacketByteBuf;getBoolean(I)Zintermediary getBooleanLnet/minecraft/class_2540;getBoolean(I)Zofficial getBooleanLwj;getBoolean(I)Z
-
getByte
public byte getByte(int index) -
getUnsignedByte
public short getUnsignedByte(int index) - Specified by:
getUnsignedBytein classByteBuf- Mappings:
Namespace Name Mixin selector named getUnsignedByteLnet/minecraft/network/PacketByteBuf;getUnsignedByte(I)Sintermediary getUnsignedByteLnet/minecraft/class_2540;getUnsignedByte(I)Sofficial getUnsignedByteLwj;getUnsignedByte(I)S
-
getShort
public short getShort(int index) -
getShortLE
public short getShortLE(int index) - Specified by:
getShortLEin classByteBuf- Mappings:
Namespace Name Mixin selector named getShortLELnet/minecraft/network/PacketByteBuf;getShortLE(I)Sintermediary getShortLELnet/minecraft/class_2540;getShortLE(I)Sofficial getShortLELwj;getShortLE(I)S
-
getUnsignedShort
public int getUnsignedShort(int index) - Specified by:
getUnsignedShortin classByteBuf- Mappings:
Namespace Name Mixin selector named getUnsignedShortLnet/minecraft/network/PacketByteBuf;getUnsignedShort(I)Iintermediary getUnsignedShortLnet/minecraft/class_2540;getUnsignedShort(I)Iofficial getUnsignedShortLwj;getUnsignedShort(I)I
-
getUnsignedShortLE
public int getUnsignedShortLE(int index) - Specified by:
getUnsignedShortLEin classByteBuf- Mappings:
Namespace Name Mixin selector named getUnsignedShortLELnet/minecraft/network/PacketByteBuf;getUnsignedShortLE(I)Iintermediary getUnsignedShortLELnet/minecraft/class_2540;getUnsignedShortLE(I)Iofficial getUnsignedShortLELwj;getUnsignedShortLE(I)I
-
getMedium
public int getMedium(int index) -
getMediumLE
public int getMediumLE(int index) - Specified by:
getMediumLEin classByteBuf- Mappings:
Namespace Name Mixin selector named getMediumLELnet/minecraft/network/PacketByteBuf;getMediumLE(I)Iintermediary getMediumLELnet/minecraft/class_2540;getMediumLE(I)Iofficial getMediumLELwj;getMediumLE(I)I
-
getUnsignedMedium
public int getUnsignedMedium(int index) - Specified by:
getUnsignedMediumin classByteBuf- Mappings:
Namespace Name Mixin selector named getUnsignedMediumLnet/minecraft/network/PacketByteBuf;getUnsignedMedium(I)Iintermediary getUnsignedMediumLnet/minecraft/class_2540;getUnsignedMedium(I)Iofficial getUnsignedMediumLwj;getUnsignedMedium(I)I
-
getUnsignedMediumLE
public int getUnsignedMediumLE(int index) - Specified by:
getUnsignedMediumLEin classByteBuf- Mappings:
Namespace Name Mixin selector named getUnsignedMediumLELnet/minecraft/network/PacketByteBuf;getUnsignedMediumLE(I)Iintermediary getUnsignedMediumLELnet/minecraft/class_2540;getUnsignedMediumLE(I)Iofficial getUnsignedMediumLELwj;getUnsignedMediumLE(I)I
-
getInt
public int getInt(int index) -
getIntLE
public int getIntLE(int index) -
getUnsignedInt
public long getUnsignedInt(int index) - Specified by:
getUnsignedIntin classByteBuf- Mappings:
Namespace Name Mixin selector named getUnsignedIntLnet/minecraft/network/PacketByteBuf;getUnsignedInt(I)Jintermediary getUnsignedIntLnet/minecraft/class_2540;getUnsignedInt(I)Jofficial getUnsignedIntLwj;getUnsignedInt(I)J
-
getUnsignedIntLE
public long getUnsignedIntLE(int index) - Specified by:
getUnsignedIntLEin classByteBuf- Mappings:
Namespace Name Mixin selector named getUnsignedIntLELnet/minecraft/network/PacketByteBuf;getUnsignedIntLE(I)Jintermediary getUnsignedIntLELnet/minecraft/class_2540;getUnsignedIntLE(I)Jofficial getUnsignedIntLELwj;getUnsignedIntLE(I)J
-
getLong
public long getLong(int index) -
getLongLE
public long getLongLE(int index) -
getChar
public char getChar(int index) -
getFloat
public float getFloat(int index) -
getDouble
public double getDouble(int index) -
getBytes
- Specified by:
getBytesin classByteBuf- Mappings:
Namespace Name Mixin selector named getBytesLnet/minecraft/network/PacketByteBuf;getBytes(ILio/netty/buffer/ByteBuf;)Lnet/minecraft/network/PacketByteBuf;intermediary method_52946Lnet/minecraft/class_2540;method_52946(ILio/netty/buffer/ByteBuf;)Lnet/minecraft/class_2540;official aLwj;a(ILio/netty/buffer/ByteBuf;)Lwj;
-
getBytes
- Specified by:
getBytesin classByteBuf- Mappings:
Namespace Name Mixin selector named getBytesLnet/minecraft/network/PacketByteBuf;getBytes(ILio/netty/buffer/ByteBuf;I)Lnet/minecraft/network/PacketByteBuf;intermediary method_52947Lnet/minecraft/class_2540;method_52947(ILio/netty/buffer/ByteBuf;I)Lnet/minecraft/class_2540;official aLwj;a(ILio/netty/buffer/ByteBuf;I)Lwj;
-
getBytes
- Specified by:
getBytesin classByteBuf- Mappings:
Namespace Name Mixin selector named getBytesLnet/minecraft/network/PacketByteBuf;getBytes(ILio/netty/buffer/ByteBuf;II)Lnet/minecraft/network/PacketByteBuf;intermediary method_52948Lnet/minecraft/class_2540;method_52948(ILio/netty/buffer/ByteBuf;II)Lnet/minecraft/class_2540;official aLwj;a(ILio/netty/buffer/ByteBuf;II)Lwj;
-
getBytes
- Specified by:
getBytesin classByteBuf- Mappings:
Namespace Name Mixin selector named getBytesLnet/minecraft/network/PacketByteBuf;getBytes(I[B)Lnet/minecraft/network/PacketByteBuf;intermediary method_52952Lnet/minecraft/class_2540;method_52952(I[B)Lnet/minecraft/class_2540;official aLwj;a(I[B)Lwj;
-
getBytes
- Specified by:
getBytesin classByteBuf- Mappings:
Namespace Name Mixin selector named getBytesLnet/minecraft/network/PacketByteBuf;getBytes(I[BII)Lnet/minecraft/network/PacketByteBuf;intermediary method_52953Lnet/minecraft/class_2540;method_52953(I[BII)Lnet/minecraft/class_2540;official aLwj;a(I[BII)Lwj;
-
getBytes
- Specified by:
getBytesin classByteBuf- Mappings:
Namespace Name Mixin selector named getBytesLnet/minecraft/network/PacketByteBuf;getBytes(ILjava/nio/ByteBuffer;)Lnet/minecraft/network/PacketByteBuf;intermediary method_52950Lnet/minecraft/class_2540;method_52950(ILjava/nio/ByteBuffer;)Lnet/minecraft/class_2540;official aLwj;a(ILjava/nio/ByteBuffer;)Lwj;
-
getBytes
- Specified by:
getBytesin classByteBuf- Throws:
IOException- Mappings:
Namespace Name Mixin selector named getBytesLnet/minecraft/network/PacketByteBuf;getBytes(ILjava/io/OutputStream;I)Lnet/minecraft/network/PacketByteBuf;intermediary method_52949Lnet/minecraft/class_2540;method_52949(ILjava/io/OutputStream;I)Lnet/minecraft/class_2540;official aLwj;a(ILjava/io/OutputStream;I)Lwj;
-
getBytes
- Specified by:
getBytesin classByteBuf- Throws:
IOException- Mappings:
Namespace Name Mixin selector named getBytesLnet/minecraft/network/PacketByteBuf;getBytes(ILjava/nio/channels/GatheringByteChannel;I)Iintermediary getBytesLnet/minecraft/class_2540;getBytes(ILjava/nio/channels/GatheringByteChannel;I)Iofficial getBytesLwj;getBytes(ILjava/nio/channels/GatheringByteChannel;I)I
-
getBytes
- Specified by:
getBytesin classByteBuf- Throws:
IOException- Mappings:
Namespace Name Mixin selector named getBytesLnet/minecraft/network/PacketByteBuf;getBytes(ILjava/nio/channels/FileChannel;JI)Iintermediary getBytesLnet/minecraft/class_2540;getBytes(ILjava/nio/channels/FileChannel;JI)Iofficial getBytesLwj;getBytes(ILjava/nio/channels/FileChannel;JI)I
-
getCharSequence
- Specified by:
getCharSequencein classByteBuf- Mappings:
Namespace Name Mixin selector named getCharSequenceLnet/minecraft/network/PacketByteBuf;getCharSequence(IILjava/nio/charset/Charset;)Ljava/lang/CharSequence;intermediary getCharSequenceLnet/minecraft/class_2540;getCharSequence(IILjava/nio/charset/Charset;)Ljava/lang/CharSequence;official getCharSequenceLwj;getCharSequence(IILjava/nio/charset/Charset;)Ljava/lang/CharSequence;
-
setBoolean
- Specified by:
setBooleanin classByteBuf- Mappings:
Namespace Name Mixin selector named setBooleanLnet/minecraft/network/PacketByteBuf;setBoolean(IZ)Lnet/minecraft/network/PacketByteBuf;intermediary method_52951Lnet/minecraft/class_2540;method_52951(IZ)Lnet/minecraft/class_2540;official aLwj;a(IZ)Lwj;
-
setByte
-
setShort
- Specified by:
setShortin classByteBuf- Mappings:
Namespace Name Mixin selector named setShortLnet/minecraft/network/PacketByteBuf;setShort(II)Lnet/minecraft/network/PacketByteBuf;intermediary method_52981Lnet/minecraft/class_2540;method_52981(II)Lnet/minecraft/class_2540;official cLwj;c(II)Lwj;
-
setShortLE
- Specified by:
setShortLEin classByteBuf- Mappings:
Namespace Name Mixin selector named setShortLELnet/minecraft/network/PacketByteBuf;setShortLE(II)Lnet/minecraft/network/PacketByteBuf;intermediary method_52984Lnet/minecraft/class_2540;method_52984(II)Lnet/minecraft/class_2540;official dLwj;d(II)Lwj;
-
setMedium
- Specified by:
setMediumin classByteBuf- Mappings:
Namespace Name Mixin selector named setMediumLnet/minecraft/network/PacketByteBuf;setMedium(II)Lnet/minecraft/network/PacketByteBuf;intermediary method_52985Lnet/minecraft/class_2540;method_52985(II)Lnet/minecraft/class_2540;official eLwj;e(II)Lwj;
-
setMediumLE
- Specified by:
setMediumLEin classByteBuf- Mappings:
Namespace Name Mixin selector named setMediumLELnet/minecraft/network/PacketByteBuf;setMediumLE(II)Lnet/minecraft/network/PacketByteBuf;intermediary method_52987Lnet/minecraft/class_2540;method_52987(II)Lnet/minecraft/class_2540;official fLwj;f(II)Lwj;
-
setInt
-
setIntLE
- Specified by:
setIntLEin classByteBuf- Mappings:
Namespace Name Mixin selector named setIntLELnet/minecraft/network/PacketByteBuf;setIntLE(II)Lnet/minecraft/network/PacketByteBuf;intermediary method_52991Lnet/minecraft/class_2540;method_52991(II)Lnet/minecraft/class_2540;official hLwj;h(II)Lwj;
-
setLong
-
setLongLE
- Specified by:
setLongLEin classByteBuf- Mappings:
Namespace Name Mixin selector named setLongLELnet/minecraft/network/PacketByteBuf;setLongLE(IJ)Lnet/minecraft/network/PacketByteBuf;intermediary method_52967Lnet/minecraft/class_2540;method_52967(IJ)Lnet/minecraft/class_2540;official bLwj;b(IJ)Lwj;
-
setChar
-
setFloat
- Specified by:
setFloatin classByteBuf- Mappings:
Namespace Name Mixin selector named setFloatLnet/minecraft/network/PacketByteBuf;setFloat(IF)Lnet/minecraft/network/PacketByteBuf;intermediary method_52943Lnet/minecraft/class_2540;method_52943(IF)Lnet/minecraft/class_2540;official aLwj;a(IF)Lwj;
-
setDouble
- Specified by:
setDoublein classByteBuf- Mappings:
Namespace Name Mixin selector named setDoubleLnet/minecraft/network/PacketByteBuf;setDouble(ID)Lnet/minecraft/network/PacketByteBuf;intermediary method_52942Lnet/minecraft/class_2540;method_52942(ID)Lnet/minecraft/class_2540;official aLwj;a(ID)Lwj;
-
setBytes
- Specified by:
setBytesin classByteBuf- Mappings:
Namespace Name Mixin selector named setBytesLnet/minecraft/network/PacketByteBuf;setBytes(ILio/netty/buffer/ByteBuf;)Lnet/minecraft/network/PacketByteBuf;intermediary method_52968Lnet/minecraft/class_2540;method_52968(ILio/netty/buffer/ByteBuf;)Lnet/minecraft/class_2540;official bLwj;b(ILio/netty/buffer/ByteBuf;)Lwj;
-
setBytes
- Specified by:
setBytesin classByteBuf- Mappings:
Namespace Name Mixin selector named setBytesLnet/minecraft/network/PacketByteBuf;setBytes(ILio/netty/buffer/ByteBuf;I)Lnet/minecraft/network/PacketByteBuf;intermediary method_52969Lnet/minecraft/class_2540;method_52969(ILio/netty/buffer/ByteBuf;I)Lnet/minecraft/class_2540;official bLwj;b(ILio/netty/buffer/ByteBuf;I)Lwj;
-
setBytes
- Specified by:
setBytesin classByteBuf- Mappings:
Namespace Name Mixin selector named setBytesLnet/minecraft/network/PacketByteBuf;setBytes(ILio/netty/buffer/ByteBuf;II)Lnet/minecraft/network/PacketByteBuf;intermediary method_52970Lnet/minecraft/class_2540;method_52970(ILio/netty/buffer/ByteBuf;II)Lnet/minecraft/class_2540;official bLwj;b(ILio/netty/buffer/ByteBuf;II)Lwj;
-
setBytes
- Specified by:
setBytesin classByteBuf- Mappings:
Namespace Name Mixin selector named setBytesLnet/minecraft/network/PacketByteBuf;setBytes(I[B)Lnet/minecraft/network/PacketByteBuf;intermediary method_52972Lnet/minecraft/class_2540;method_52972(I[B)Lnet/minecraft/class_2540;official bLwj;b(I[B)Lwj;
-
setBytes
- Specified by:
setBytesin classByteBuf- Mappings:
Namespace Name Mixin selector named setBytesLnet/minecraft/network/PacketByteBuf;setBytes(I[BII)Lnet/minecraft/network/PacketByteBuf;intermediary method_52973Lnet/minecraft/class_2540;method_52973(I[BII)Lnet/minecraft/class_2540;official bLwj;b(I[BII)Lwj;
-
setBytes
- Specified by:
setBytesin classByteBuf- Mappings:
Namespace Name Mixin selector named setBytesLnet/minecraft/network/PacketByteBuf;setBytes(ILjava/nio/ByteBuffer;)Lnet/minecraft/network/PacketByteBuf;intermediary method_52971Lnet/minecraft/class_2540;method_52971(ILjava/nio/ByteBuffer;)Lnet/minecraft/class_2540;official bLwj;b(ILjava/nio/ByteBuffer;)Lwj;
-
setBytes
- Specified by:
setBytesin classByteBuf- Throws:
IOException- Mappings:
Namespace Name Mixin selector named setBytesLnet/minecraft/network/PacketByteBuf;setBytes(ILjava/io/InputStream;I)Iintermediary setBytesLnet/minecraft/class_2540;setBytes(ILjava/io/InputStream;I)Iofficial setBytesLwj;setBytes(ILjava/io/InputStream;I)I
-
setBytes
- Specified by:
setBytesin classByteBuf- Throws:
IOException- Mappings:
Namespace Name Mixin selector named setBytesLnet/minecraft/network/PacketByteBuf;setBytes(ILjava/nio/channels/ScatteringByteChannel;I)Iintermediary setBytesLnet/minecraft/class_2540;setBytes(ILjava/nio/channels/ScatteringByteChannel;I)Iofficial setBytesLwj;setBytes(ILjava/nio/channels/ScatteringByteChannel;I)I
-
setBytes
- Specified by:
setBytesin classByteBuf- Throws:
IOException- Mappings:
Namespace Name Mixin selector named setBytesLnet/minecraft/network/PacketByteBuf;setBytes(ILjava/nio/channels/FileChannel;JI)Iintermediary setBytesLnet/minecraft/class_2540;setBytes(ILjava/nio/channels/FileChannel;JI)Iofficial setBytesLwj;setBytes(ILjava/nio/channels/FileChannel;JI)I
-
setZero
-
setCharSequence
- Specified by:
setCharSequencein classByteBuf- Mappings:
Namespace Name Mixin selector named setCharSequenceLnet/minecraft/network/PacketByteBuf;setCharSequence(ILjava/lang/CharSequence;Ljava/nio/charset/Charset;)Iintermediary setCharSequenceLnet/minecraft/class_2540;setCharSequence(ILjava/lang/CharSequence;Ljava/nio/charset/Charset;)Iofficial setCharSequenceLwj;setCharSequence(ILjava/lang/CharSequence;Ljava/nio/charset/Charset;)I
-
readBoolean
public boolean readBoolean()- Specified by:
readBooleanin classByteBuf
-
readByte
public byte readByte() -
readUnsignedByte
public short readUnsignedByte()- Specified by:
readUnsignedBytein classByteBuf
-
readShort
public short readShort() -
readShortLE
public short readShortLE()- Specified by:
readShortLEin classByteBuf
-
readUnsignedShort
public int readUnsignedShort()- Specified by:
readUnsignedShortin classByteBuf
-
readUnsignedShortLE
public int readUnsignedShortLE()- Specified by:
readUnsignedShortLEin classByteBuf
-
readMedium
public int readMedium()- Specified by:
readMediumin classByteBuf
-
readMediumLE
public int readMediumLE()- Specified by:
readMediumLEin classByteBuf
-
readUnsignedMedium
public int readUnsignedMedium()- Specified by:
readUnsignedMediumin classByteBuf
-
readUnsignedMediumLE
public int readUnsignedMediumLE()- Specified by:
readUnsignedMediumLEin classByteBuf
-
readInt
public int readInt() -
readIntLE
public int readIntLE() -
readUnsignedInt
public long readUnsignedInt()- Specified by:
readUnsignedIntin classByteBuf
-
readUnsignedIntLE
public long readUnsignedIntLE()- Specified by:
readUnsignedIntLEin classByteBuf
-
readLong
public long readLong() -
readLongLE
public long readLongLE()- Specified by:
readLongLEin classByteBuf
-
readChar
public char readChar() -
readFloat
public float readFloat() -
readDouble
public double readDouble()- Specified by:
readDoublein classByteBuf
-
readBytes
- Specified by:
readBytesin classByteBuf- Mappings:
Namespace Name Mixin selector named readBytesLnet/minecraft/network/PacketByteBuf;readBytes(I)Lio/netty/buffer/ByteBuf;intermediary readBytesLnet/minecraft/class_2540;readBytes(I)Lio/netty/buffer/ByteBuf;official readBytesLwj;readBytes(I)Lio/netty/buffer/ByteBuf;
-
readSlice
- Specified by:
readSlicein classByteBuf- Mappings:
Namespace Name Mixin selector named readSliceLnet/minecraft/network/PacketByteBuf;readSlice(I)Lio/netty/buffer/ByteBuf;intermediary readSliceLnet/minecraft/class_2540;readSlice(I)Lio/netty/buffer/ByteBuf;official readSliceLwj;readSlice(I)Lio/netty/buffer/ByteBuf;
-
readRetainedSlice
- Specified by:
readRetainedSlicein classByteBuf- Mappings:
Namespace Name Mixin selector named readRetainedSliceLnet/minecraft/network/PacketByteBuf;readRetainedSlice(I)Lio/netty/buffer/ByteBuf;intermediary readRetainedSliceLnet/minecraft/class_2540;readRetainedSlice(I)Lio/netty/buffer/ByteBuf;official readRetainedSliceLwj;readRetainedSlice(I)Lio/netty/buffer/ByteBuf;
-
readBytes
- Specified by:
readBytesin classByteBuf- Mappings:
Namespace Name Mixin selector named readBytesLnet/minecraft/network/PacketByteBuf;readBytes(Lio/netty/buffer/ByteBuf;)Lnet/minecraft/network/PacketByteBuf;intermediary method_52956Lnet/minecraft/class_2540;method_52956(Lio/netty/buffer/ByteBuf;)Lnet/minecraft/class_2540;official kLwj;k(Lio/netty/buffer/ByteBuf;)Lwj;
-
readBytes
- Specified by:
readBytesin classByteBuf- Mappings:
Namespace Name Mixin selector named readBytesLnet/minecraft/network/PacketByteBuf;readBytes(Lio/netty/buffer/ByteBuf;I)Lnet/minecraft/network/PacketByteBuf;intermediary method_52957Lnet/minecraft/class_2540;method_52957(Lio/netty/buffer/ByteBuf;I)Lnet/minecraft/class_2540;official cLwj;c(Lio/netty/buffer/ByteBuf;I)Lwj;
-
readBytes
- Specified by:
readBytesin classByteBuf- Mappings:
Namespace Name Mixin selector named readBytesLnet/minecraft/network/PacketByteBuf;readBytes(Lio/netty/buffer/ByteBuf;II)Lnet/minecraft/network/PacketByteBuf;intermediary method_52958Lnet/minecraft/class_2540;method_52958(Lio/netty/buffer/ByteBuf;II)Lnet/minecraft/class_2540;official aLwj;a(Lio/netty/buffer/ByteBuf;II)Lwj;
-
readBytes
- Specified by:
readBytesin classByteBuf- Mappings:
Namespace Name Mixin selector named readBytesLnet/minecraft/network/PacketByteBuf;readBytes([B)Lnet/minecraft/network/PacketByteBuf;intermediary method_52979Lnet/minecraft/class_2540;method_52979([B)Lnet/minecraft/class_2540;official bLwj;b([B)Lwj;
-
readBytes
- Specified by:
readBytesin classByteBuf- Mappings:
Namespace Name Mixin selector named readBytesLnet/minecraft/network/PacketByteBuf;readBytes([BII)Lnet/minecraft/network/PacketByteBuf;intermediary method_52965Lnet/minecraft/class_2540;method_52965([BII)Lnet/minecraft/class_2540;official aLwj;a([BII)Lwj;
-
readBytes
- Specified by:
readBytesin classByteBuf- Mappings:
Namespace Name Mixin selector named readBytesLnet/minecraft/network/PacketByteBuf;readBytes(Ljava/nio/ByteBuffer;)Lnet/minecraft/network/PacketByteBuf;intermediary method_52961Lnet/minecraft/class_2540;method_52961(Ljava/nio/ByteBuffer;)Lnet/minecraft/class_2540;official aLwj;a(Ljava/nio/ByteBuffer;)Lwj;
-
readBytes
- Specified by:
readBytesin classByteBuf- Throws:
IOException- Mappings:
Namespace Name Mixin selector named readBytesLnet/minecraft/network/PacketByteBuf;readBytes(Ljava/io/OutputStream;I)Lnet/minecraft/network/PacketByteBuf;intermediary method_52959Lnet/minecraft/class_2540;method_52959(Ljava/io/OutputStream;I)Lnet/minecraft/class_2540;official aLwj;a(Ljava/io/OutputStream;I)Lwj;
-
readBytes
- Specified by:
readBytesin classByteBuf- Throws:
IOException- Mappings:
Namespace Name Mixin selector named readBytesLnet/minecraft/network/PacketByteBuf;readBytes(Ljava/nio/channels/GatheringByteChannel;I)Iintermediary readBytesLnet/minecraft/class_2540;readBytes(Ljava/nio/channels/GatheringByteChannel;I)Iofficial readBytesLwj;readBytes(Ljava/nio/channels/GatheringByteChannel;I)I
-
readCharSequence
- Specified by:
readCharSequencein classByteBuf- Mappings:
Namespace Name Mixin selector named readCharSequenceLnet/minecraft/network/PacketByteBuf;readCharSequence(ILjava/nio/charset/Charset;)Ljava/lang/CharSequence;intermediary readCharSequenceLnet/minecraft/class_2540;readCharSequence(ILjava/nio/charset/Charset;)Ljava/lang/CharSequence;official readCharSequenceLwj;readCharSequence(ILjava/nio/charset/Charset;)Ljava/lang/CharSequence;
-
readBytes
- Specified by:
readBytesin classByteBuf- Throws:
IOException- Mappings:
Namespace Name Mixin selector named readBytesLnet/minecraft/network/PacketByteBuf;readBytes(Ljava/nio/channels/FileChannel;JI)Iintermediary readBytesLnet/minecraft/class_2540;readBytes(Ljava/nio/channels/FileChannel;JI)Iofficial readBytesLwj;readBytes(Ljava/nio/channels/FileChannel;JI)I
-
skipBytes
- Specified by:
skipBytesin classByteBuf- Mappings:
Namespace Name Mixin selector named skipBytesLnet/minecraft/network/PacketByteBuf;skipBytes(I)Lnet/minecraft/network/PacketByteBuf;intermediary method_52994Lnet/minecraft/class_2540;method_52994(I)Lnet/minecraft/class_2540;official kLwj;k(I)Lwj;
-
writeBoolean
- Specified by:
writeBooleanin classByteBuf- Mappings:
Namespace Name Mixin selector named writeBooleanLnet/minecraft/network/PacketByteBuf;writeBoolean(Z)Lnet/minecraft/network/PacketByteBuf;intermediary method_52964Lnet/minecraft/class_2540;method_52964(Z)Lnet/minecraft/class_2540;official aLwj;a(Z)Lwj;
-
writeByte
- Specified by:
writeBytein classByteBuf- Mappings:
Namespace Name Mixin selector named writeByteLnet/minecraft/network/PacketByteBuf;writeByte(I)Lnet/minecraft/network/PacketByteBuf;intermediary method_52997Lnet/minecraft/class_2540;method_52997(I)Lnet/minecraft/class_2540;official lLwj;l(I)Lwj;
-
writeShort
- Specified by:
writeShortin classByteBuf- Mappings:
Namespace Name Mixin selector named writeShortLnet/minecraft/network/PacketByteBuf;writeShort(I)Lnet/minecraft/network/PacketByteBuf;intermediary method_52998Lnet/minecraft/class_2540;method_52998(I)Lnet/minecraft/class_2540;official mLwj;m(I)Lwj;
-
writeShortLE
- Specified by:
writeShortLEin classByteBuf- Mappings:
Namespace Name Mixin selector named writeShortLELnet/minecraft/network/PacketByteBuf;writeShortLE(I)Lnet/minecraft/network/PacketByteBuf;intermediary method_52999Lnet/minecraft/class_2540;method_52999(I)Lnet/minecraft/class_2540;official nLwj;n(I)Lwj;
-
writeMedium
- Specified by:
writeMediumin classByteBuf- Mappings:
Namespace Name Mixin selector named writeMediumLnet/minecraft/network/PacketByteBuf;writeMedium(I)Lnet/minecraft/network/PacketByteBuf;intermediary method_53000Lnet/minecraft/class_2540;method_53000(I)Lnet/minecraft/class_2540;official oLwj;o(I)Lwj;
-
writeMediumLE
- Specified by:
writeMediumLEin classByteBuf- Mappings:
Namespace Name Mixin selector named writeMediumLELnet/minecraft/network/PacketByteBuf;writeMediumLE(I)Lnet/minecraft/network/PacketByteBuf;intermediary method_53001Lnet/minecraft/class_2540;method_53001(I)Lnet/minecraft/class_2540;official pLwj;p(I)Lwj;
-
writeInt
-
writeIntLE
- Specified by:
writeIntLEin classByteBuf- Mappings:
Namespace Name Mixin selector named writeIntLELnet/minecraft/network/PacketByteBuf;writeIntLE(I)Lnet/minecraft/network/PacketByteBuf;intermediary method_53003Lnet/minecraft/class_2540;method_53003(I)Lnet/minecraft/class_2540;official rLwj;r(I)Lwj;
-
writeLong
- Specified by:
writeLongin classByteBuf- Mappings:
Namespace Name Mixin selector named writeLongLnet/minecraft/network/PacketByteBuf;writeLong(J)Lnet/minecraft/network/PacketByteBuf;intermediary method_52974Lnet/minecraft/class_2540;method_52974(J)Lnet/minecraft/class_2540;official bLwj;b(J)Lwj;
-
writeLongLE
- Specified by:
writeLongLEin classByteBuf- Mappings:
Namespace Name Mixin selector named writeLongLELnet/minecraft/network/PacketByteBuf;writeLongLE(J)Lnet/minecraft/network/PacketByteBuf;intermediary method_52982Lnet/minecraft/class_2540;method_52982(J)Lnet/minecraft/class_2540;official cLwj;c(J)Lwj;
-
writeChar
- Specified by:
writeCharin classByteBuf- Mappings:
Namespace Name Mixin selector named writeCharLnet/minecraft/network/PacketByteBuf;writeChar(I)Lnet/minecraft/network/PacketByteBuf;intermediary method_53004Lnet/minecraft/class_2540;method_53004(I)Lnet/minecraft/class_2540;official sLwj;s(I)Lwj;
-
writeFloat
- Specified by:
writeFloatin classByteBuf- Mappings:
Namespace Name Mixin selector named writeFloatLnet/minecraft/network/PacketByteBuf;writeFloat(F)Lnet/minecraft/network/PacketByteBuf;intermediary method_52941Lnet/minecraft/class_2540;method_52941(F)Lnet/minecraft/class_2540;official aLwj;a(F)Lwj;
-
writeDouble
- Specified by:
writeDoublein classByteBuf- Mappings:
Namespace Name Mixin selector named writeDoubleLnet/minecraft/network/PacketByteBuf;writeDouble(D)Lnet/minecraft/network/PacketByteBuf;intermediary method_52940Lnet/minecraft/class_2540;method_52940(D)Lnet/minecraft/class_2540;official aLwj;a(D)Lwj;
-
writeBytes
- Specified by:
writeBytesin classByteBuf- Mappings:
Namespace Name Mixin selector named writeBytesLnet/minecraft/network/PacketByteBuf;writeBytes(Lio/netty/buffer/ByteBuf;)Lnet/minecraft/network/PacketByteBuf;intermediary method_52975Lnet/minecraft/class_2540;method_52975(Lio/netty/buffer/ByteBuf;)Lnet/minecraft/class_2540;official lLwj;l(Lio/netty/buffer/ByteBuf;)Lwj;
-
writeBytes
- Specified by:
writeBytesin classByteBuf- Mappings:
Namespace Name Mixin selector named writeBytesLnet/minecraft/network/PacketByteBuf;writeBytes(Lio/netty/buffer/ByteBuf;I)Lnet/minecraft/network/PacketByteBuf;intermediary method_52976Lnet/minecraft/class_2540;method_52976(Lio/netty/buffer/ByteBuf;I)Lnet/minecraft/class_2540;official dLwj;d(Lio/netty/buffer/ByteBuf;I)Lwj;
-
writeBytes
- Specified by:
writeBytesin classByteBuf- Mappings:
Namespace Name Mixin selector named writeBytesLnet/minecraft/network/PacketByteBuf;writeBytes(Lio/netty/buffer/ByteBuf;II)Lnet/minecraft/network/PacketByteBuf;intermediary method_52977Lnet/minecraft/class_2540;method_52977(Lio/netty/buffer/ByteBuf;II)Lnet/minecraft/class_2540;official bLwj;b(Lio/netty/buffer/ByteBuf;II)Lwj;
-
writeBytes
- Specified by:
writeBytesin classByteBuf- Mappings:
Namespace Name Mixin selector named writeBytesLnet/minecraft/network/PacketByteBuf;writeBytes([B)Lnet/minecraft/network/PacketByteBuf;intermediary method_52983Lnet/minecraft/class_2540;method_52983([B)Lnet/minecraft/class_2540;official cLwj;c([B)Lwj;
-
writeBytes
- Specified by:
writeBytesin classByteBuf- Mappings:
Namespace Name Mixin selector named writeBytesLnet/minecraft/network/PacketByteBuf;writeBytes([BII)Lnet/minecraft/network/PacketByteBuf;intermediary method_52980Lnet/minecraft/class_2540;method_52980([BII)Lnet/minecraft/class_2540;official bLwj;b([BII)Lwj;
-
writeBytes
- Specified by:
writeBytesin classByteBuf- Mappings:
Namespace Name Mixin selector named writeBytesLnet/minecraft/network/PacketByteBuf;writeBytes(Ljava/nio/ByteBuffer;)Lnet/minecraft/network/PacketByteBuf;intermediary method_52978Lnet/minecraft/class_2540;method_52978(Ljava/nio/ByteBuffer;)Lnet/minecraft/class_2540;official bLwj;b(Ljava/nio/ByteBuffer;)Lwj;
-
writeBytes
- Specified by:
writeBytesin classByteBuf- Throws:
IOException- Mappings:
Namespace Name Mixin selector named writeBytesLnet/minecraft/network/PacketByteBuf;writeBytes(Ljava/io/InputStream;I)Iintermediary writeBytesLnet/minecraft/class_2540;writeBytes(Ljava/io/InputStream;I)Iofficial writeBytesLwj;writeBytes(Ljava/io/InputStream;I)I
-
writeBytes
- Specified by:
writeBytesin classByteBuf- Throws:
IOException- Mappings:
Namespace Name Mixin selector named writeBytesLnet/minecraft/network/PacketByteBuf;writeBytes(Ljava/nio/channels/ScatteringByteChannel;I)Iintermediary writeBytesLnet/minecraft/class_2540;writeBytes(Ljava/nio/channels/ScatteringByteChannel;I)Iofficial writeBytesLwj;writeBytes(Ljava/nio/channels/ScatteringByteChannel;I)I
-
writeBytes
- Specified by:
writeBytesin classByteBuf- Throws:
IOException- Mappings:
Namespace Name Mixin selector named writeBytesLnet/minecraft/network/PacketByteBuf;writeBytes(Ljava/nio/channels/FileChannel;JI)Iintermediary writeBytesLnet/minecraft/class_2540;writeBytes(Ljava/nio/channels/FileChannel;JI)Iofficial writeBytesLwj;writeBytes(Ljava/nio/channels/FileChannel;JI)I
-
writeZero
- Specified by:
writeZeroin classByteBuf- Mappings:
Namespace Name Mixin selector named writeZeroLnet/minecraft/network/PacketByteBuf;writeZero(I)Lnet/minecraft/network/PacketByteBuf;intermediary method_53005Lnet/minecraft/class_2540;method_53005(I)Lnet/minecraft/class_2540;official tLwj;t(I)Lwj;
-
writeCharSequence
- Specified by:
writeCharSequencein classByteBuf- Mappings:
Namespace Name Mixin selector named writeCharSequenceLnet/minecraft/network/PacketByteBuf;writeCharSequence(Ljava/lang/CharSequence;Ljava/nio/charset/Charset;)Iintermediary writeCharSequenceLnet/minecraft/class_2540;writeCharSequence(Ljava/lang/CharSequence;Ljava/nio/charset/Charset;)Iofficial writeCharSequenceLwj;writeCharSequence(Ljava/lang/CharSequence;Ljava/nio/charset/Charset;)I
-
indexOf
public int indexOf(int from, int to, byte value) -
bytesBefore
public int bytesBefore(byte value) - Specified by:
bytesBeforein classByteBuf- Mappings:
Namespace Name Mixin selector named bytesBeforeLnet/minecraft/network/PacketByteBuf;bytesBefore(B)Iintermediary bytesBeforeLnet/minecraft/class_2540;bytesBefore(B)Iofficial bytesBeforeLwj;bytesBefore(B)I
-
bytesBefore
public int bytesBefore(int length, byte value) - Specified by:
bytesBeforein classByteBuf- Mappings:
Namespace Name Mixin selector named bytesBeforeLnet/minecraft/network/PacketByteBuf;bytesBefore(IB)Iintermediary bytesBeforeLnet/minecraft/class_2540;bytesBefore(IB)Iofficial bytesBeforeLwj;bytesBefore(IB)I
-
bytesBefore
public int bytesBefore(int index, int length, byte value) - Specified by:
bytesBeforein classByteBuf- Mappings:
Namespace Name Mixin selector named bytesBeforeLnet/minecraft/network/PacketByteBuf;bytesBefore(IIB)Iintermediary bytesBeforeLnet/minecraft/class_2540;bytesBefore(IIB)Iofficial bytesBeforeLwj;bytesBefore(IIB)I
-
forEachByte
- Specified by:
forEachBytein classByteBuf- Mappings:
Namespace Name Mixin selector named forEachByteLnet/minecraft/network/PacketByteBuf;forEachByte(Lio/netty/util/ByteProcessor;)Iintermediary forEachByteLnet/minecraft/class_2540;forEachByte(Lio/netty/util/ByteProcessor;)Iofficial forEachByteLwj;forEachByte(Lio/netty/util/ByteProcessor;)I
-
forEachByte
- Specified by:
forEachBytein classByteBuf- Mappings:
Namespace Name Mixin selector named forEachByteLnet/minecraft/network/PacketByteBuf;forEachByte(IILio/netty/util/ByteProcessor;)Iintermediary forEachByteLnet/minecraft/class_2540;forEachByte(IILio/netty/util/ByteProcessor;)Iofficial forEachByteLwj;forEachByte(IILio/netty/util/ByteProcessor;)I
-
forEachByteDesc
- Specified by:
forEachByteDescin classByteBuf- Mappings:
Namespace Name Mixin selector named forEachByteDescLnet/minecraft/network/PacketByteBuf;forEachByteDesc(Lio/netty/util/ByteProcessor;)Iintermediary forEachByteDescLnet/minecraft/class_2540;forEachByteDesc(Lio/netty/util/ByteProcessor;)Iofficial forEachByteDescLwj;forEachByteDesc(Lio/netty/util/ByteProcessor;)I
-
forEachByteDesc
- Specified by:
forEachByteDescin classByteBuf- Mappings:
Namespace Name Mixin selector named forEachByteDescLnet/minecraft/network/PacketByteBuf;forEachByteDesc(IILio/netty/util/ByteProcessor;)Iintermediary forEachByteDescLnet/minecraft/class_2540;forEachByteDesc(IILio/netty/util/ByteProcessor;)Iofficial forEachByteDescLwj;forEachByteDesc(IILio/netty/util/ByteProcessor;)I
-
copy
-
copy
-
slice
-
retainedSlice
- Specified by:
retainedSlicein classByteBuf
-
slice
-
retainedSlice
- Specified by:
retainedSlicein classByteBuf- Mappings:
Namespace Name Mixin selector named retainedSliceLnet/minecraft/network/PacketByteBuf;retainedSlice(II)Lio/netty/buffer/ByteBuf;intermediary retainedSliceLnet/minecraft/class_2540;retainedSlice(II)Lio/netty/buffer/ByteBuf;official retainedSliceLwj;retainedSlice(II)Lio/netty/buffer/ByteBuf;
-
duplicate
-
retainedDuplicate
- Specified by:
retainedDuplicatein classByteBuf
-
nioBufferCount
public int nioBufferCount()- Specified by:
nioBufferCountin classByteBuf
-
nioBuffer
-
nioBuffer
- Specified by:
nioBufferin classByteBuf- Mappings:
Namespace Name Mixin selector named nioBufferLnet/minecraft/network/PacketByteBuf;nioBuffer(II)Ljava/nio/ByteBuffer;intermediary nioBufferLnet/minecraft/class_2540;nioBuffer(II)Ljava/nio/ByteBuffer;official nioBufferLwj;nioBuffer(II)Ljava/nio/ByteBuffer;
-
internalNioBuffer
- Specified by:
internalNioBufferin classByteBuf- Mappings:
Namespace Name Mixin selector named internalNioBufferLnet/minecraft/network/PacketByteBuf;internalNioBuffer(II)Ljava/nio/ByteBuffer;intermediary internalNioBufferLnet/minecraft/class_2540;internalNioBuffer(II)Ljava/nio/ByteBuffer;official internalNioBufferLwj;internalNioBuffer(II)Ljava/nio/ByteBuffer;
-
nioBuffers
- Specified by:
nioBuffersin classByteBuf
-
nioBuffers
- Specified by:
nioBuffersin classByteBuf- Mappings:
Namespace Name Mixin selector named nioBuffersLnet/minecraft/network/PacketByteBuf;nioBuffers(II)[Ljava/nio/ByteBuffer;intermediary nioBuffersLnet/minecraft/class_2540;nioBuffers(II)[Ljava/nio/ByteBuffer;official nioBuffersLwj;nioBuffers(II)[Ljava/nio/ByteBuffer;
-
hasArray
public boolean hasArray() -
array
public byte[] array() -
arrayOffset
public int arrayOffset()- Specified by:
arrayOffsetin classByteBuf
-
hasMemoryAddress
public boolean hasMemoryAddress()- Specified by:
hasMemoryAddressin classByteBuf
-
memoryAddress
public long memoryAddress()- Specified by:
memoryAddressin classByteBuf
-
toString
- Specified by:
toStringin classByteBuf- Mappings:
Namespace Name Mixin selector named toStringLnet/minecraft/network/PacketByteBuf;toString(Ljava/nio/charset/Charset;)Ljava/lang/String;intermediary toStringLnet/minecraft/class_2540;toString(Ljava/nio/charset/Charset;)Ljava/lang/String;official toStringLwj;toString(Ljava/nio/charset/Charset;)Ljava/lang/String;
-
toString
- Specified by:
toStringin classByteBuf- Mappings:
Namespace Name Mixin selector named toStringLnet/minecraft/network/PacketByteBuf;toString(IILjava/nio/charset/Charset;)Ljava/lang/String;intermediary toStringLnet/minecraft/class_2540;toString(IILjava/nio/charset/Charset;)Ljava/lang/String;official toStringLwj;toString(IILjava/nio/charset/Charset;)Ljava/lang/String;
-
hashCode
public int hashCode() -
equals
-
compareTo
- Specified by:
compareToin interfaceComparable<ByteBuf>- Specified by:
compareToin classByteBuf- Mappings:
Namespace Name Mixin selector named compareToLnet/minecraft/network/PacketByteBuf;compareTo(Lio/netty/buffer/ByteBuf;)Iintermediary compareToLnet/minecraft/class_2540;compareTo(Lio/netty/buffer/ByteBuf;)Iofficial compareToLwj;compareTo(Lio/netty/buffer/ByteBuf;)I
-
toString
-
retain
- Specified by:
retainin interfaceReferenceCounted- Specified by:
retainin classByteBuf- Mappings:
Namespace Name Mixin selector named retainLnet/minecraft/network/PacketByteBuf;retain(I)Lnet/minecraft/network/PacketByteBuf;intermediary method_53007Lnet/minecraft/class_2540;method_53007(I)Lnet/minecraft/class_2540;official uLwj;u(I)Lwj;
-
retain
- Specified by:
retainin interfaceReferenceCounted- Specified by:
retainin classByteBuf- Mappings:
Namespace Name Mixin selector named retainLnet/minecraft/network/PacketByteBuf;retain()Lnet/minecraft/network/PacketByteBuf;intermediary method_52938Lnet/minecraft/class_2540;method_52938()Lnet/minecraft/class_2540;official FLwj;F()Lwj;
-
touch
- Specified by:
touchin interfaceReferenceCounted- Specified by:
touchin classByteBuf- Mappings:
Namespace Name Mixin selector named touchLnet/minecraft/network/PacketByteBuf;touch()Lnet/minecraft/network/PacketByteBuf;intermediary method_52939Lnet/minecraft/class_2540;method_52939()Lnet/minecraft/class_2540;official GLwj;G()Lwj;
-
touch
- Specified by:
touchin interfaceReferenceCounted- Specified by:
touchin classByteBuf- Mappings:
Namespace Name Mixin selector named touchLnet/minecraft/network/PacketByteBuf;touch(Ljava/lang/Object;)Lnet/minecraft/network/PacketByteBuf;intermediary method_52960Lnet/minecraft/class_2540;method_52960(Ljava/lang/Object;)Lnet/minecraft/class_2540;official aLwj;a(Ljava/lang/Object;)Lwj;
-
refCnt
public int refCnt() -
release
public boolean release() -
release
public boolean release(int decrement) - Mappings:
Namespace Name Mixin selector named releaseLnet/minecraft/network/PacketByteBuf;release(I)Zintermediary releaseLnet/minecraft/class_2540;release(I)Zofficial releaseLwj;release(I)Z
-