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 p_249837_)
    • write

      public static void write(FriendlyByteBuf p_250642_, MessageSignature p_249714_)
    • verify

      public boolean verify(SignatureValidator p_250998_, SignatureUpdater p_249843_)
    • asByteBuffer

      public ByteBuffer asByteBuffer()
    • equals

      public boolean equals(Object p_237166_)
      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:
      p_237166_ - the object with which to compare
      Returns:
      true if this object is the same as the p_237166_ 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

    • bytes

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