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 Summary
FieldsModifier and TypeFieldDescriptionprivate final Set<ResourceLocation> The field for thefeaturesrecord component.static final StreamCodec<FriendlyByteBuf, ClientboundUpdateEnabledFeaturesPacket> -
Constructor Summary
ConstructorsModifierConstructorDescriptionCreates an instance of aClientboundUpdateEnabledFeaturesPacketrecord class.private -
Method Summary
Modifier 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.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.network.protocol.Packet
isSkippable, isTerminal
-
Field Details
-
features
The field for thefeaturesrecord component. -
STREAM_CODEC
public static final StreamCodec<FriendlyByteBuf,ClientboundUpdateEnabledFeaturesPacket> STREAM_CODEC
-
-
Constructor Details
-
ClientboundUpdateEnabledFeaturesPacket
-
ClientboundUpdateEnabledFeaturesPacket
Creates an instance of aClientboundUpdateEnabledFeaturesPacketrecord class.- Parameters:
features- the value for thefeaturesrecord component
-
-
Method Details
-
write
-
type
- Specified by:
typein 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). -
features
Returns the value of thefeaturesrecord component.- Returns:
- the value of the
featuresrecord component
-