Record Class ServerboundCustomPayloadPacket
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.common.ServerboundCustomPayloadPacket
- All Implemented Interfaces:
- Packet<ServerCommonPacketListener>,- ICustomPacket<ServerboundCustomPayloadPacket>
public record ServerboundCustomPayloadPacket(CustomPacketPayload payload)
extends Record
implements Packet<ServerCommonPacketListener>, ICustomPacket<ServerboundCustomPayloadPacket>
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate static final Map<ResourceLocation,FriendlyByteBuf.Reader<? extends CustomPacketPayload>> private static final intprivate final CustomPacketPayloadThe field for thepayloadrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionServerboundCustomPayloadPacket(FriendlyByteBuf p_298896_) Creates an instance of aServerboundCustomPayloadPacketrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.intgetIndex()@Nullable FriendlyByteBufReturns a unsafe reference to this packet's internal data.getName()voidhandle(ServerCommonPacketListener p_297991_) final inthashCode()Returns a hash code value for this object.payload()Returns the value of thepayloadrecord component.private static CustomPacketPayloadreadPayload(ResourceLocation p_301116_, FriendlyByteBuf p_298967_) private static DiscardedPayloadreadUnknownPayload(ResourceLocation p_300234_, FriendlyByteBuf p_299925_) final StringtoString()Returns a string representation of this record class.voidwrite(FriendlyByteBuf p_299043_) Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraftforge.network.ICustomPacketgetDirection, getThisMethods inherited from interface net.minecraft.network.protocol.PacketisSkippable, nextProtocol
- 
Field Details- 
payloadThe field for thepayloadrecord component.
- 
MAX_PAYLOAD_SIZEprivate static final int MAX_PAYLOAD_SIZE- See Also:
 
- 
KNOWN_TYPESprivate static final Map<ResourceLocation,FriendlyByteBuf.Reader<? extends CustomPacketPayload>> KNOWN_TYPES
 
- 
- 
Constructor Details- 
ServerboundCustomPayloadPacket
- 
ServerboundCustomPayloadPacketCreates an instance of aServerboundCustomPayloadPacketrecord class.- Parameters:
- payload- the value for the- payloadrecord component
 
 
- 
- 
Method Details- 
readPayloadprivate static CustomPacketPayload readPayload(ResourceLocation p_301116_, FriendlyByteBuf p_298967_) 
- 
readUnknownPayloadprivate static DiscardedPayload readUnknownPayload(ResourceLocation p_300234_, FriendlyByteBuf p_299925_) 
- 
write- Specified by:
- writein interface- Packet<ServerCommonPacketListener>
 
- 
handle- Specified by:
- handlein interface- Packet<ServerCommonPacketListener>
 
- 
getInternalDataDescription copied from interface:ICustomPacketReturns a unsafe reference to this packet's internal data. Any modifications to this buffer will be reflected in the main buffer.- Specified by:
- getInternalDatain interface- ICustomPacket<ServerboundCustomPayloadPacket>
 
- 
getName- Specified by:
- getNamein interface- ICustomPacket<ServerboundCustomPayloadPacket>
 
- 
getIndexpublic int getIndex()- Specified by:
- getIndexin interface- ICustomPacket<ServerboundCustomPayloadPacket>
 
- 
toStringReturns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
- 
hashCodepublic final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
- 
equalsIndicates 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).
- 
payloadReturns the value of thepayloadrecord component.- Returns:
- the value of the payloadrecord component
 
 
-