Record Class FabricSplitPacketPayload
java.lang.Object
java.lang.Record
net.fabricmc.fabric.impl.networking.splitter.FabricSplitPacketPayload
- All Implemented Interfaces:
net.minecraft.network.protocol.common.custom.CustomPacketPayload
public record FabricSplitPacketPayload(io.netty.buffer.ByteBuf byteBuf)
extends Record
implements net.minecraft.network.protocol.common.custom.CustomPacketPayload
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.network.protocol.common.custom.CustomPacketPayload
net.minecraft.network.protocol.common.custom.CustomPacketPayload.FallbackProvider<B>, net.minecraft.network.protocol.common.custom.CustomPacketPayload.Type<T>, net.minecraft.network.protocol.common.custom.CustomPacketPayload.TypeAndCodec<B,T> -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final net.minecraft.network.codec.StreamCodec<io.netty.buffer.ByteBuf, FabricSplitPacketPayload> static final net.minecraft.network.protocol.common.custom.CustomPacketPayload.Type<FabricSplitPacketPayload> -
Constructor Summary
ConstructorsConstructorDescriptionFabricSplitPacketPayload(io.netty.buffer.ByteBuf byteBuf) Creates an instance of aFabricSplitPacketPayloadrecord class. -
Method Summary
Modifier and TypeMethodDescriptionio.netty.buffer.ByteBufbyteBuf()Returns the value of thebyteBufrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.net.minecraft.network.protocol.common.custom.CustomPacketPayload.Type<? extends net.minecraft.network.protocol.common.custom.CustomPacketPayload> type()Methods inherited from interface net.minecraft.network.protocol.common.custom.CustomPacketPayload
toVanillaClientbound, toVanillaServerbound
-
Field Details
-
TYPE
public static final net.minecraft.network.protocol.common.custom.CustomPacketPayload.Type<FabricSplitPacketPayload> TYPE -
CODEC
public static final net.minecraft.network.codec.StreamCodec<io.netty.buffer.ByteBuf, FabricSplitPacketPayload> CODEC
-
-
Constructor Details
-
FabricSplitPacketPayload
public FabricSplitPacketPayload(io.netty.buffer.ByteBuf byteBuf) Creates an instance of aFabricSplitPacketPayloadrecord class.- Parameters:
byteBuf- the value for thebyteBufrecord component
-
-
Method Details
-
type
public net.minecraft.network.protocol.common.custom.CustomPacketPayload.Type<? extends net.minecraft.network.protocol.common.custom.CustomPacketPayload> type()- Specified by:
typein interfacenet.minecraft.network.protocol.common.custom.CustomPacketPayload
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
byteBuf
public io.netty.buffer.ByteBuf byteBuf()Returns the value of thebyteBufrecord component.- Returns:
- the value of the
byteBufrecord component
-