Record Class MessageSignature

java.lang.Object
java.lang.Record
net.minecraft.network.chat.MessageSignature

public record MessageSignature(byte[] bytes) extends Record
  • Field Details

    • bytes

      private final byte[] bytes
      The field for the bytes record component.
    • CODEC

      public static final com.mojang.serialization.Codec<MessageSignature> CODEC
    • BYTES

      public static final int BYTES
      See Also:
  • Constructor Details

    • MessageSignature

      public MessageSignature(byte[] bytes)
      Creates an instance of a MessageSignature record class.
      Parameters:
      bytes - the value for the bytes record component
  • Method Details

    • read

      public static MessageSignature read(FriendlyByteBuf pBuffer)
    • write

      public static void write(FriendlyByteBuf pBuffer, MessageSignature pSignature)
    • verify

      public boolean verify(SignatureValidator pValidator, SignatureUpdater pUpdater)
    • asByteBuffer

      public ByteBuffer asByteBuffer()
    • equals

      public boolean equals(Object pOther)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      pOther - the object with which to compare
      Returns:
      true if this object is the same as the pOther argument; false otherwise.
    • hashCode

      public 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
    • toString

      public 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
    • pack

      public MessageSignature.Packed pack(MessageSignatureCache pSignatureCache)
    • bytes

      public byte[] bytes()
      Returns the value of the bytes record component.
      Returns:
      the value of the bytes record component