Record Class ClientboundUpdateEnabledFeaturesPacket
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.configuration.ClientboundUpdateEnabledFeaturesPacket
- All Implemented Interfaces:
Packet<ClientConfigurationPacketListener>
public record ClientboundUpdateEnabledFeaturesPacket(Set<Identifier> features)
extends Record
implements Packet<ClientConfigurationPacketListener>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Set<Identifier> The field for thefeaturesrecord component.static final StreamCodec<FriendlyByteBuf, ClientboundUpdateEnabledFeaturesPacket> -
Constructor Summary
ConstructorsModifierConstructorDescriptionClientboundUpdateEnabledFeaturesPacket(Set<Identifier> features) Creates 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 listener) Passes this Packet on to the PacketListener for processing.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.type()private voidwrite(FriendlyByteBuf output) Methods inherited from interface 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
Description copied from interface:PacketPasses this Packet on to the PacketListener for processing.- Specified by:
handlein interfacePacket<ClientConfigurationPacketListener>
-
toString
-
hashCode
-
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
-