Package net.minecraft.client.render
Record Class ChunkRenderingDataPreparer.Events
java.lang.Object
java.lang.Record
net.minecraft.client.render.ChunkRenderingDataPreparer.Events
- Record Components:
- chunksWhichReceivedNeighbors-
- sectionsToPropagateFrom-
- Enclosing class:
- ChunkRenderingDataPreparer
@Environment(CLIENT)
private static record ChunkRenderingDataPreparer.Events(LongSet chunksWhichReceivedNeighbors, BlockingQueue<ChunkBuilder.BuiltChunk> sectionsToPropagateFrom)
extends Record
- Mappings:
- Namespace - Name - named - net/minecraft/client/render/ChunkRenderingDataPreparer$Events- intermediary - net/minecraft/class_8679$class_8680- official - gmo$a- named - chunksWhichReceivedNeighbors- intermediary - comp_1618- official - a- named - sectionsToPropagateFrom- intermediary - comp_1619- official - b
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final LongSetThe field for thechunksWhichReceivedNeighborsrecord component.private final BlockingQueue<ChunkBuilder.BuiltChunk> The field for thesectionsToPropagateFromrecord component.
- 
Constructor SummaryConstructorsModifierConstructorDescription(package private)Events()privateEvents(LongSet longSet, BlockingQueue<ChunkBuilder.BuiltChunk> blockingQueue) 
- 
Method SummaryModifier and TypeMethodDescriptionReturns the value of thechunksWhichReceivedNeighborsrecord 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 thesectionsToPropagateFromrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
chunksWhichReceivedNeighborsThe field for thechunksWhichReceivedNeighborsrecord component.
- 
sectionsToPropagateFromThe field for thesectionsToPropagateFromrecord component.
 
- 
- 
Constructor Details- 
EventsEvents()
- 
Events
 
- 
- 
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).
- 
chunksWhichReceivedNeighborsReturns the value of thechunksWhichReceivedNeighborsrecord component.- Returns:
- the value of the chunksWhichReceivedNeighborsrecord component
 
- 
sectionsToPropagateFromReturns the value of thesectionsToPropagateFromrecord component.- Returns:
- the value of the sectionsToPropagateFromrecord component
 
 
-