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> paletteEntries, Optional<LongStream> storage) 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
-
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
-
hashCode
-
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 thecomparemethod from their corresponding wrapper classes. -
paletteEntries
-
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
-