Package net.minecraft.world.chunk
Record Class PalettedContainer.DataProvider<T>
java.lang.Object
java.lang.Record
net.minecraft.world.chunk.PalettedContainer.DataProvider<T>
- Record Components:
factory
- the palette factorybits
- 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 deq$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 Summary
Modifier and TypeFieldDescriptionprivate final int
The field for thebits
record component.private final Palette.Factory
The field for thefactory
record component. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
bits()
Returns the value of thebits
record component.createData
(IndexedIterable<T> idList, PaletteResizeListener<T> listener, int size) final boolean
Indicates whether some other object is "equal to" this one.factory()
Returns the value of thefactory
record component.final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
Constructor Details
-
DataProvider
DataProvider(Palette.Factory factory, int int2)
-
-
Method Details
-
createData
public PalettedContainer.Data<T> createData(IndexedIterable<T> idList, PaletteResizeListener<T> listener, int size) - Mappings:
Namespace Name Mixin selector official a
Ldeq$a;a(Lhj;Ldep;I)Ldeq$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
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. -
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. -
equals
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 withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
factory
Returns the value of thefactory
record component.- Returns:
- the value of the
factory
record component
-
bits
public int bits()Returns the value of thebits
record component.- Returns:
- the value of the
bits
record component
-