Record Class PalettedContainer.DataProvider<T>

java.lang.Object
java.lang.Record
net.minecraft.world.chunk.PalettedContainer.DataProvider<T>
Record Components:
factory - the palette factory
bits - the number of bits each element use
Enclosing class:
PalettedContainer<T>

private static record PalettedContainer.DataProvider<T>(Palette.Factory factory, int bits) extends Record
A palette data provider constructs an empty data for a paletted container given a palette provider and a desired entry size in bits.
Mappings:
Namespace Name
official dbh$a
intermediary net/minecraft/class_2841$class_6560
named net/minecraft/world/chunk/PalettedContainer$DataProvider
official a
intermediary comp_72
named factory
official b
intermediary comp_73
named bits
  • Field Details

    • factory

      private final Palette.Factory factory
      The field for the factory record component.
    • bits

      private final int bits
      The field for the bits record component.
  • Constructor Details

  • Method Details

    • createData

      public PalettedContainer.Data<T> createData(IndexedIterable<T> idList, PaletteResizeListener<T> listener, int size)
      Mappings:
      Namespace Name Mixin selector
      official a Ldbh$a;a(Lhe;Ldbg;I)Ldbh$c;
      intermediary method_38305 Lnet/minecraft/class_2841$class_6560;method_38305(Lnet/minecraft/class_2359;Lnet/minecraft/class_2835;I)Lnet/minecraft/class_2841$class_6561;
      named createData Lnet/minecraft/world/chunk/PalettedContainer$DataProvider;createData(Lnet/minecraft/util/collection/IndexedIterable;Lnet/minecraft/world/chunk/PaletteResizeListener;I)Lnet/minecraft/world/chunk/PalettedContainer$Data;
    • 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.
    • factory

      public Palette.Factory factory()
      Returns the value of the factory record component.
      Returns:
      the value of the factory record component
    • bits

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