Package net.minecraft.world.level.chunk
Record Class PalettedContainerRO.PackedData<T>
java.lang.Object
java.lang.Record
net.minecraft.world.level.chunk.PalettedContainerRO.PackedData<T>
- Enclosing interface:
PalettedContainerRO<T>
public static record PalettedContainerRO.PackedData<T>(List<T> paletteEntries, Optional<LongStream> storage, int bitsPerEntry)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final intThe field for thebitsPerEntryrecord component.The field for thepaletteEntriesrecord component.private final Optional<LongStream> The field for thestoragerecord component.static final int -
Constructor Summary
ConstructorsConstructorDescriptionPackedData(List<T> p_238381_, Optional<LongStream> p_238382_) PackedData(List<T> paletteEntries, Optional<LongStream> storage, int bitsPerEntry) Creates an instance of aPackedDatarecord class. -
Method Summary
Modifier and TypeMethodDescriptionintReturns the value of thebitsPerEntryrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thepaletteEntriesrecord component.storage()Returns the value of thestoragerecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
paletteEntries
The field for thepaletteEntriesrecord component. -
storage
The field for thestoragerecord component. -
bitsPerEntry
private final int bitsPerEntryThe field for thebitsPerEntryrecord component. -
UNKNOWN_BITS_PER_ENTRY
public static final int UNKNOWN_BITS_PER_ENTRY- See Also:
-
-
Constructor Details
-
PackedData
-
PackedData
Creates an instance of aPackedDatarecord class.- Parameters:
paletteEntries- the value for thepaletteEntriesrecord componentstorage- the value for thestoragerecord componentbitsPerEntry- the value for thebitsPerEntryrecord component
-
-
Method Details
-
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 '=='. -
paletteEntries
Returns the value of thepaletteEntriesrecord component.- Returns:
- the value of the
paletteEntriesrecord component
-
storage
Returns the value of thestoragerecord component.- Returns:
- the value of the
storagerecord component
-
bitsPerEntry
public int bitsPerEntry()Returns the value of thebitsPerEntryrecord component.- Returns:
- the value of the
bitsPerEntryrecord component
-