Record Class CheckFeatureFlags
java.lang.Object
java.lang.Record
net.neoforged.neoforge.network.configuration.CheckFeatureFlags
- All Implemented Interfaces:
ConfigurationTask
@Internal
public record CheckFeatureFlags(ServerConfigurationPacketListener listener)
extends Record
implements ConfigurationTask
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.server.network.ConfigurationTask
ConfigurationTask.Type
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final ServerConfigurationPacketListener
The field for thelistener
record component.private static final org.slf4j.Logger
private static Set
<ResourceLocation> static final ConfigurationTask.Type
-
Constructor Summary
ConstructorsConstructorDescriptionCreates an instance of aCheckFeatureFlags
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.private static Set
<ResourceLocation> static void
handleClientboundPayload
(FeatureFlagDataPayload payload, IPayloadContext context) static void
handleServerboundPayload
(FeatureFlagAcknowledgePayload payload, IPayloadContext context) static boolean
final int
hashCode()
Returns a hash code value for this object.listener()
Returns the value of thelistener
record component.void
final String
toString()
Returns a string representation of this record class.type()
-
Field Details
-
listener
The field for thelistener
record component. -
TYPE
-
LOGGER
private static final org.slf4j.Logger LOGGER -
moddedFlags
-
-
Constructor Details
-
CheckFeatureFlags
Creates an instance of aCheckFeatureFlags
record class.- Parameters:
listener
- the value for thelistener
record component
-
-
Method Details
-
start
- Specified by:
start
in interfaceConfigurationTask
-
handleClientboundPayload
public static void handleClientboundPayload(FeatureFlagDataPayload payload, IPayloadContext context) -
handleServerboundPayload
public static void handleServerboundPayload(FeatureFlagAcknowledgePayload payload, IPayloadContext context) -
handleVanillaServerConnection
-
getModdedFeatureFlags
-
type
- Specified by:
type
in interfaceConfigurationTask
-
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)
. -
listener
Returns the value of thelistener
record component.- Returns:
- the value of the
listener
record component
-