Record Class ResourcePackSendS2CPacket
java.lang.Object
java.lang.Record
net.minecraft.network.packet.s2c.common.ResourcePackSendS2CPacket
- Record Components:
- id-
- url-
- hash-
- required-
- prompt-
- All Implemented Interfaces:
- Packet<ClientCommonPacketListener>
public record ResourcePackSendS2CPacket(UUID id, String url, String hash, boolean required, Optional<Text> prompt)
extends Record
implements Packet<ClientCommonPacketListener>
- Mappings:
- Namespace - Name - named - net/minecraft/network/packet/s2c/common/ResourcePackSendS2CPacket- intermediary - net/minecraft/class_2720- official - zj- named - id- intermediary - comp_2158- official - c- named - url- intermediary - comp_2159- official - d- named - hash- intermediary - comp_2160- official - e- named - required- intermediary - comp_2161- official - f- named - prompt- intermediary - comp_2162- official - g
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final PacketCodec<ByteBuf, ResourcePackSendS2CPacket> private final StringThe field for thehashrecord component.private final UUIDThe field for theidrecord component.static final intThe field for thepromptrecord component.private final booleanThe field for therequiredrecord component.private final StringThe field for theurlrecord component.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidapply(ClientCommonPacketListener clientCommonPacketListener) final booleanIndicates whether some other object is "equal to" this one.hash()Returns the value of thehashrecord component.final inthashCode()Returns a hash code value for this object.id()Returns the value of theidrecord component.prompt()Returns the value of thepromptrecord component.booleanrequired()Returns the value of therequiredrecord component.final StringtoString()Returns a string representation of this record class.url()Returns the value of theurlrecord component.Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.network.packet.PacketisWritingErrorSkippable, transitionsNetworkState
- 
Field Details- 
idThe field for theidrecord component.
- 
urlThe field for theurlrecord component.
- 
hashThe field for thehashrecord component.
- 
requiredprivate final boolean requiredThe field for therequiredrecord component.
- 
promptThe field for thepromptrecord component.
- 
MAX_HASH_LENGTHpublic static final int MAX_HASH_LENGTH- See Also:
- Mappings:
- Namespace - Name - Mixin selector - named - MAX_HASH_LENGTH- Lnet/minecraft/network/packet/s2c/common/ResourcePackSendS2CPacket;MAX_HASH_LENGTH:I- intermediary - field_33340- Lnet/minecraft/class_2720;field_33340:I- official - a- Lzj;a:I
 
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/network/packet/s2c/common/ResourcePackSendS2CPacket;CODEC:Lnet/minecraft/network/codec/PacketCodec;- intermediary - field_48626- Lnet/minecraft/class_2720;field_48626:Lnet/minecraft/class_9139;- official - b- Lzj;b:Lyn;
 
 
- 
- 
Constructor Details- 
ResourcePackSendS2CPacket
 
- 
- 
Method Details- 
getPacketType- Specified by:
- getPacketTypein interface- Packet<ClientCommonPacketListener>
- Mappings:
- Namespace - Name - Mixin selector - named - getPacketType- Lnet/minecraft/network/packet/Packet;getPacketType()Lnet/minecraft/network/packet/PacketType;- intermediary - method_65080- Lnet/minecraft/class_2596;method_65080()Lnet/minecraft/class_9145;- official - a- Lyw;a()Lyy;
 
- 
apply- Specified by:
- applyin interface- Packet<ClientCommonPacketListener>
- Mappings:
- Namespace - Name - Mixin selector - named - apply- Lnet/minecraft/network/packet/s2c/common/ResourcePackSendS2CPacket;apply(Lnet/minecraft/network/listener/ClientCommonPacketListener;)V- intermediary - method_11774- Lnet/minecraft/class_2720;method_11774(Lnet/minecraft/class_8705;)V- official - a- Lzj;a(Lzc;)V
 
- 
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='.
- 
idReturns the value of theidrecord component.- Returns:
- the value of the idrecord component
 
- 
urlReturns the value of theurlrecord component.- Returns:
- the value of the urlrecord component
 
- 
hashReturns the value of thehashrecord component.- Returns:
- the value of the hashrecord component
 
- 
requiredpublic boolean required()Returns the value of therequiredrecord component.- Returns:
- the value of the requiredrecord component
 
- 
promptReturns the value of thepromptrecord component.- Returns:
- the value of the promptrecord component
 
 
-