Record Class ClientboundRegistryDataPacket
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.configuration.ClientboundRegistryDataPacket
- All Implemented Interfaces:
Packet<ClientConfigurationPacketListener>
public record ClientboundRegistryDataPacket(RegistryAccess.Frozen registryHolder)
extends Record
implements Packet<ClientConfigurationPacketListener>
-
Field Summary
Modifier and TypeFieldDescriptionprivate static final RegistryOps<Tag>
private final RegistryAccess.Frozen
The field for theregistryHolder
record component. -
Constructor Summary
ConstructorDescriptionClientboundRegistryDataPacket
(RegistryAccess.Frozen registryHolder) Creates an instance of aClientboundRegistryDataPacket
record class.ClientboundRegistryDataPacket
(FriendlyByteBuf p_300340_) -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.void
handle
(ClientConfigurationPacketListener p_298179_) final int
hashCode()
Returns a hash code value for this object.Returns the value of theregistryHolder
record component.final String
toString()
Returns a string representation of this record class.void
write
(FriendlyByteBuf p_297355_) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.network.protocol.Packet
isSkippable, nextProtocol
-
Field Details
-
registryHolder
The field for theregistryHolder
record component. -
BUILTIN_CONTEXT_OPS
-
-
Constructor Details
-
ClientboundRegistryDataPacket
-
ClientboundRegistryDataPacket
Creates an instance of aClientboundRegistryDataPacket
record class.- Parameters:
registryHolder
- the value for theregistryHolder
record component
-
-
Method Details
-
write
- Specified by:
write
in interfacePacket<ClientConfigurationPacketListener>
-
handle
- Specified by:
handle
in interfacePacket<ClientConfigurationPacketListener>
-
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)
. -
registryHolder
Returns the value of theregistryHolder
record component.- Returns:
- the value of the
registryHolder
record component
-