Record Class AuxiliaryLightDataPayload
java.lang.Object
java.lang.Record
net.neoforged.neoforge.network.payload.AuxiliaryLightDataPayload
- All Implemented Interfaces:
CustomPacketPayload
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.network.protocol.common.custom.CustomPacketPayload
CustomPacketPayload.FallbackProvider<B extends FriendlyByteBuf>, CustomPacketPayload.Type<T extends CustomPacketPayload>, CustomPacketPayload.TypeAndCodec<B extends FriendlyByteBuf,
T extends CustomPacketPayload> -
Field Summary
Modifier and TypeFieldDescriptionThe field for theentries
record component.private final ChunkPos
The field for thepos
record component.static final StreamCodec
<RegistryFriendlyByteBuf, AuxiliaryLightDataPayload> static final CustomPacketPayload.Type
<AuxiliaryLightDataPayload> -
Constructor Summary
ConstructorDescriptionAuxiliaryLightDataPayload
(ChunkPos pos, Map<BlockPos, Byte> entries) Creates an instance of aAuxiliaryLightDataPayload
record class. -
Method Summary
Modifier and TypeMethodDescriptionentries()
Returns the value of theentries
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.pos()
Returns the value of thepos
record component.final String
toString()
Returns a string representation of this record class.type()
-
Field Details
-
pos
The field for thepos
record component. -
entries
The field for theentries
record component. -
TYPE
-
STREAM_CODEC
-
-
Constructor Details
-
AuxiliaryLightDataPayload
Creates an instance of aAuxiliaryLightDataPayload
record class.- Parameters:
pos
- the value for thepos
record componententries
- the value for theentries
record component
-
-
Method Details
-
type
- Specified by:
type
in interfaceCustomPacketPayload
-
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
pos
Returns the value of thepos
record component.- Returns:
- the value of the
pos
record component
-
entries
Returns the value of theentries
record component.- Returns:
- the value of the
entries
record component
-