Record Class ClientboundResourcePackPushPacket

java.lang.Object
java.lang.Record
net.minecraft.network.protocol.common.ClientboundResourcePackPushPacket
All Implemented Interfaces:
Packet<ClientCommonPacketListener>

public record ClientboundResourcePackPushPacket(UUID id, String url, String hash, boolean required, @Nullable Component prompt) extends Record implements Packet<ClientCommonPacketListener>
  • Field Details

    • id

      private final UUID id
      The field for the id record component.
    • url

      private final String url
      The field for the url record component.
    • hash

      private final String hash
      The field for the hash record component.
    • required

      private final boolean required
      The field for the required record component.
    • prompt

      @Nullable private final Component prompt
      The field for the prompt record component.
    • MAX_HASH_LENGTH

      public static final int MAX_HASH_LENGTH
      See Also:
  • Constructor Details

    • ClientboundResourcePackPushPacket

      public ClientboundResourcePackPushPacket(UUID id, String url, String hash, boolean required, @Nullable Component prompt)
      Creates an instance of a ClientboundResourcePackPushPacket record class.
      Parameters:
      id - the value for the id record component
      url - the value for the url record component
      hash - the value for the hash record component
      required - the value for the required record component
      prompt - the value for the prompt record component
    • ClientboundResourcePackPushPacket

      public ClientboundResourcePackPushPacket(FriendlyByteBuf p_310933_)
  • Method Details

    • write

      public void write(FriendlyByteBuf p_310067_)
      Specified by:
      write in interface Packet<ClientCommonPacketListener>
    • handle

      public void handle(ClientCommonPacketListener p_312649_)
      Specified by:
      handle in interface Packet<ClientCommonPacketListener>
    • toString

      public final String toString()
      Returns 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • id

      public UUID id()
      Returns the value of the id record component.
      Returns:
      the value of the id record component
    • url

      public String url()
      Returns the value of the url record component.
      Returns:
      the value of the url record component
    • hash

      public String hash()
      Returns the value of the hash record component.
      Returns:
      the value of the hash record component
    • required

      public boolean required()
      Returns the value of the required record component.
      Returns:
      the value of the required record component
    • prompt

      @Nullable public Component prompt()
      Returns the value of the prompt record component.
      Returns:
      the value of the prompt record component