Record Class SnbtProvider.CompressedData

java.lang.Object
java.lang.Record
net.minecraft.data.SnbtProvider.CompressedData
Record Components:
name -
bytes -
snbtContent -
sha1 -
Enclosing class:
SnbtProvider

private static record SnbtProvider.CompressedData(String name, byte[] bytes, @Nullable String snbtContent, HashCode sha1) extends Record
Mappings:
Namespace Name
official mf$c
intermediary net/minecraft/class_2463$class_4511
named net/minecraft/data/SnbtProvider$CompressedData
official a
intermediary comp_780
named name
official b
intermediary comp_781
named bytes
official c
intermediary comp_782
named snbtContent
official d
intermediary comp_783
named sha1
  • Field Details

    • name

      private final String name
      The field for the name record component.
    • bytes

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

      @Nullable private final @Nullable String snbtContent
      The field for the snbtContent record component.
    • sha1

      private final HashCode sha1
      The field for the sha1 record component.
  • Constructor Details

    • CompressedData

      CompressedData(String name, byte[] bytes, @Nullable @Nullable String snbtContent, HashCode hashCode)
      Mappings:
      Namespace Name Mixin selector
      official <init> Lmf$c;<init>(Ljava/lang/String;[BLjava/lang/String;Lcom/google/common/hash/HashCode;)V
      intermediary <init> Lnet/minecraft/class_2463$class_4511;<init>(Ljava/lang/String;[BLjava/lang/String;Lcom/google/common/hash/HashCode;)V
      named <init> Lnet/minecraft/data/SnbtProvider$CompressedData;<init>(Ljava/lang/String;[BLjava/lang/String;Lcom/google/common/hash/HashCode;)V
  • Method Details

    • 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 object)
      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:
      object - the object with which to compare
      Returns:
      true if this object is the same as the object argument; false otherwise.
    • name

      public String name()
      Returns the value of the name record component.
      Returns:
      the value of the name record component
    • bytes

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

      @Nullable public @Nullable String snbtContent()
      Returns the value of the snbtContent record component.
      Returns:
      the value of the snbtContent record component
    • sha1

      public HashCode sha1()
      Returns the value of the sha1 record component.
      Returns:
      the value of the sha1 record component