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)
extends Record
- 
Field SummaryFieldsModifier and TypeFieldDescriptionThe field for thepaletteEntriesrecord component.private final Optional<LongStream>The field for thestoragerecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionPackedData(List<T> paletteEntries, Optional<LongStream> storage) Creates an instance of aPackedDatarecord class.
- 
Method SummaryModifier and TypeMethodDescriptionfinal 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- 
paletteEntriesThe field for thepaletteEntriesrecord component.
- 
storageThe field for thestoragerecord component.
 
- 
- 
Constructor Details- 
PackedDataCreates an instance of aPackedDatarecord class.- Parameters:
- paletteEntries- the value for the- paletteEntriesrecord component
- storage- the value for the- storagerecord component
 
 
- 
- 
Method Details- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
paletteEntriesReturns the value of thepaletteEntriesrecord component.- Returns:
- the value of the paletteEntriesrecord component
 
- 
storageReturns the value of thestoragerecord component.- Returns:
- the value of the storagerecord component
 
 
-