Record Class ReadableContainer.Serialized<T>

java.lang.Object
java.lang.Record
net.minecraft.world.chunk.ReadableContainer.Serialized<T>
Record Components:
paletteEntries - the palette
storage - the data of the container
bitsPerEntry -
Enclosing interface:
ReadableContainer<T>

public static record ReadableContainer.Serialized<T>(List<T> paletteEntries, Optional<LongStream> storage, int bitsPerEntry) extends Record
The storage form of the paletted container in the codec. The palette is the entries in the palette, but the interpretation of data depends on the palette provider specified for the codec.
See Also:
Mappings:
Namespace Name
named net/minecraft/world/chunk/ReadableContainer$Serialized
intermediary net/minecraft/class_7522$class_6562
official emf$a
named paletteEntries
intermediary comp_75
official b
named storage
intermediary comp_76
official c
named bitsPerEntry
intermediary comp_4791
official d
  • Field Details

    • paletteEntries

      private final List<T> paletteEntries
      The field for the paletteEntries record component.
    • storage

      private final Optional<LongStream> storage
      The field for the storage record component.
    • bitsPerEntry

      private final int bitsPerEntry
      The field for the bitsPerEntry record component.
    • MISSING_BITS_PER_ENTRY

      public static final int MISSING_BITS_PER_ENTRY
      See Also:
      Mappings:
      Namespace Name Mixin selector
      named MISSING_BITS_PER_ENTRY Lnet/minecraft/world/chunk/ReadableContainer$Serialized;MISSING_BITS_PER_ENTRY:I
      intermediary field_62540 Lnet/minecraft/class_7522$class_6562;field_62540:I
      official a Lemf$a;a:I
  • Constructor Details

    • Serialized

      public Serialized(List<T> paletteEntries, Optional<LongStream> storage)
      Mappings:
      Namespace Name Mixin selector
      named <init> Lnet/minecraft/world/chunk/ReadableContainer$Serialized;<init>(Ljava/util/List;Ljava/util/Optional;)V
      intermediary <init> Lnet/minecraft/class_7522$class_6562;<init>(Ljava/util/List;Ljava/util/Optional;)V
      official <init> Lemf$a;<init>(Ljava/util/List;Ljava/util/Optional;)V
    • Serialized

      public Serialized(List<T> list, Optional<LongStream> optional, int int2)
  • 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. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      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.
    • paletteEntries

      public List<T> paletteEntries()
      Returns the value of the paletteEntries record component.
      Returns:
      the value of the paletteEntries record component
    • storage

      public Optional<LongStream> storage()
      Returns the value of the storage record component.
      Returns:
      the value of the storage record component
    • bitsPerEntry

      public int bitsPerEntry()
      Returns the value of the bitsPerEntry record component.
      Returns:
      the value of the bitsPerEntry record component