Package net.minecraft.world.chunk
Record Class ReadableContainer.Serialized<T>
java.lang.Object
java.lang.Record
net.minecraft.world.chunk.ReadableContainer.Serialized<T>
- Record Components:
- paletteEntries- the palette
- storage- the data of the container
- Enclosing interface:
- ReadableContainer<T>
public static record ReadableContainer.Serialized<T>(List<T> paletteEntries, Optional<LongStream> storage)
extends Record
The storage form of the paletted container in the codec. The 
palette is the entries
 in the palette, but the interpretation of data depends on the palette
 provider specified for the codec.- See Also:
- Mappings:
- Namespace - Name - named - net/minecraft/world/chunk/ReadableContainer$Serialized- intermediary - net/minecraft/class_7522$class_6562- official - dzm$a- named - paletteEntries- intermediary - comp_75- official - a- named - storage- intermediary - comp_76- official - b
- 
Field SummaryFieldsModifier and TypeFieldDescriptionThe field for thepaletteEntriesrecord component.private final Optional<LongStream> The field for thestoragerecord component.
- 
Constructor SummaryConstructors
- 
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- 
Serialized
 
- 
- 
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
 
 
-