Package net.minecraft.world.chunk
Record Class PalettedContainer.Data<T>
java.lang.Object
java.lang.Record
net.minecraft.world.chunk.PalettedContainer.Data<T>
- Record Components:
configuration- the data provider that derives the palette and storage of this datastorage- the datapalette- the palette for the storage
- Enclosing class:
- PalettedContainer<T>
private static record PalettedContainer.Data<T>(PalettedContainer.DataProvider<T> configuration, PaletteStorage storage, Palette<T> palette)
extends Record
Runtime representation of data in a paletted container.
- Mappings:
Namespace Name official cqi$cintermediary net/minecraft/class_2841$class_6561named net/minecraft/world/chunk/PalettedContainer$Dataofficial aintermediary comp_74named configurationofficial bintermediary comp_118named storageofficial cintermediary comp_119named palette
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final PalettedContainer.DataProvider<T>The field for theconfigurationrecord component.The field for thepaletterecord component.private final PaletteStorageThe field for thestoragerecord component. -
Constructor Summary
ConstructorsConstructorDescriptionData(PalettedContainer.DataProvider<T> configuration, PaletteStorage storage, Palette<T> palette) Creates an instance of aDatarecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theconfigurationrecord component.final booleanIndicates whether some other object is "equal to" this one.intReturns the size of this data, in bytes, when written to a packet.final inthashCode()Returns a hash code value for this object.voidimportFrom(Palette<T> palette, PaletteStorage storage) Imports the data from the otherstoragewith the otherpalette.palette()Returns the value of thepaletterecord component.voidSets an entry to the storage's given index.storage()Returns the value of thestoragerecord component.final StringtoString()Returns a string representation of this record class.voidwritePacket(PacketByteBuf buf)
-
Field Details
-
configuration
The field for theconfigurationrecord component. -
storage
The field for thestoragerecord component. -
palette
The field for thepaletterecord component.
-
-
Constructor Details
-
Data
Data(PalettedContainer.DataProvider<T> configuration, PaletteStorage storage, Palette<T> palette) Creates an instance of aDatarecord class.- Parameters:
configuration- the value for theconfigurationrecord componentstorage- the value for thestoragerecord componentpalette- the value for thepaletterecord component
-
-
Method Details
-
importFrom
Imports the data from the otherstoragewith the otherpalette.- Parameters:
palette- the other palettestorage- the other storage- Mappings:
Namespace Name Mixin selector official aLcqi$c;a(Lcqg;Lahr;)Vintermediary method_38308Lnet/minecraft/class_2841$class_6561;method_38308(Lnet/minecraft/class_2837;Lnet/minecraft/class_6490;)Vnamed importFromLnet/minecraft/world/chunk/PalettedContainer$Data;importFrom(Lnet/minecraft/world/chunk/Palette;Lnet/minecraft/util/collection/PaletteStorage;)V
-
set
Sets an entry to the storage's given index.- Parameters:
index- the index in the storagevalue- the entry to set- Mappings:
Namespace Name Mixin selector official aLcqi$c;a(ILjava/lang/Object;)Vintermediary method_38307Lnet/minecraft/class_2841$class_6561;method_38307(ILjava/lang/Object;)Vnamed setLnet/minecraft/world/chunk/PalettedContainer$Data;set(ILjava/lang/Object;)V
-
getPacketSize
public int getPacketSize()Returns the size of this data, in bytes, when written to a packet.- Returns:
- the size of this data, in bytes, when written to a packet
- See Also:
- Mappings:
Namespace Name Mixin selector official aLcqi$c;a()Iintermediary method_38306Lnet/minecraft/class_2841$class_6561;method_38306()Inamed getPacketSizeLnet/minecraft/world/chunk/PalettedContainer$Data;getPacketSize()I
-
writePacket
- Mappings:
Namespace Name Mixin selector official aLcqi$c;a(Lph;)Vintermediary method_38309Lnet/minecraft/class_2841$class_6561;method_38309(Lnet/minecraft/class_2540;)Vnamed writePacketLnet/minecraft/world/chunk/PalettedContainer$Data;writePacket(Lnet/minecraft/network/PacketByteBuf;)V
-
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. All components in this record class are compared withObjects::equals(Object,Object). -
configuration
Returns the value of theconfigurationrecord component.- Returns:
- the value of the
configurationrecord component
-
storage
Returns the value of thestoragerecord component.- Returns:
- the value of the
storagerecord component
-
palette
Returns the value of thepaletterecord component.- Returns:
- the value of the
paletterecord component
-