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
FieldsModifier and TypeFieldDescriptionprivate static final RegistryOps<Tag>private final RegistryAccess.FrozenThe field for theregistryHolderrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionClientboundRegistryDataPacket(RegistryAccess.Frozen registryHolder) Creates an instance of aClientboundRegistryDataPacketrecord class.ClientboundRegistryDataPacket(FriendlyByteBuf p_300340_) -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.voidhandle(ClientConfigurationPacketListener p_298179_) final inthashCode()Returns a hash code value for this object.Returns the value of theregistryHolderrecord component.final StringtoString()Returns a string representation of this record class.voidwrite(FriendlyByteBuf p_297355_) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.network.protocol.Packet
isSkippable, nextProtocol
-
Field Details
-
registryHolder
The field for theregistryHolderrecord component. -
BUILTIN_CONTEXT_OPS
-
-
Constructor Details
-
ClientboundRegistryDataPacket
-
ClientboundRegistryDataPacket
Creates an instance of aClientboundRegistryDataPacketrecord class.- Parameters:
registryHolder- the value for theregistryHolderrecord component
-
-
Method Details
-
write
- Specified by:
writein interfacePacket<ClientConfigurationPacketListener>
-
handle
- Specified by:
handlein 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 theregistryHolderrecord component.- Returns:
- the value of the
registryHolderrecord component
-