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 SummaryFieldsModifier and TypeFieldDescriptionprivate static final RegistryOps<Tag>private final RegistryAccess.FrozenThe field for theregistryHolderrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionClientboundRegistryDataPacket(RegistryAccess.Frozen registryHolder) Creates an instance of aClientboundRegistryDataPacketrecord class.ClientboundRegistryDataPacket(FriendlyByteBuf p_295827_) 
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.voidhandle(ClientConfigurationPacketListener p_296114_) 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_294322_) Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.network.protocol.PacketisSkippable, nextProtocol
- 
Field Details- 
registryHolderThe field for theregistryHolderrecord component.
- 
BUILTIN_CONTEXT_OPS
 
- 
- 
Constructor Details- 
ClientboundRegistryDataPacket
- 
ClientboundRegistryDataPacketCreates an instance of aClientboundRegistryDataPacketrecord class.- Parameters:
- registryHolder- the value for the- registryHolderrecord component
 
 
- 
- 
Method Details- 
write- Specified by:
- writein interface- Packet<ClientConfigurationPacketListener>
 
- 
handle- Specified by:
- handlein interface- Packet<ClientConfigurationPacketListener>
 
- 
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).
- 
registryHolderReturns the value of theregistryHolderrecord component.- Returns:
- the value of the registryHolderrecord component
 
 
-