Record Class ClientboundUpdateEnabledFeaturesPacket
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.configuration.ClientboundUpdateEnabledFeaturesPacket
- All Implemented Interfaces:
- Packet<ClientConfigurationPacketListener>
public record ClientboundUpdateEnabledFeaturesPacket(Set<ResourceLocation> features)
extends Record
implements Packet<ClientConfigurationPacketListener>
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final Set<ResourceLocation> The field for thefeaturesrecord component.static final StreamCodec<FriendlyByteBuf, ClientboundUpdateEnabledFeaturesPacket> 
- 
Constructor SummaryConstructorsModifierConstructorDescriptionCreates an instance of aClientboundUpdateEnabledFeaturesPacketrecord class.private
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.features()Returns the value of thefeaturesrecord component.voidhandle(ClientConfigurationPacketListener p_294170_) final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.type()private voidwrite(FriendlyByteBuf p_294891_) Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.network.protocol.PacketisSkippable, isTerminal
- 
Field Details- 
featuresThe field for thefeaturesrecord component.
- 
STREAM_CODECpublic static final StreamCodec<FriendlyByteBuf,ClientboundUpdateEnabledFeaturesPacket> STREAM_CODEC
 
- 
- 
Constructor Details- 
ClientboundUpdateEnabledFeaturesPacket
- 
ClientboundUpdateEnabledFeaturesPacketCreates an instance of aClientboundUpdateEnabledFeaturesPacketrecord class.- Parameters:
- features- the value for the- featuresrecord component
 
 
- 
- 
Method Details- 
write
- 
type- Specified by:
- typein 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).
- 
featuresReturns the value of thefeaturesrecord component.- Returns:
- the value of the featuresrecord component
 
 
-