Record Class ChangeEnabledPayload
java.lang.Object
java.lang.Record
net.neoforged.testframework.impl.packet.ChangeEnabledPayload
- All Implemented Interfaces:
CustomPacketPayload
public record ChangeEnabledPayload(MutableTestFramework framework, String testId, boolean enabled)
extends Record
implements CustomPacketPayload
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.network.protocol.common.custom.CustomPacketPayload
CustomPacketPayload.FallbackProvider<B extends FriendlyByteBuf>, CustomPacketPayload.Type<T extends CustomPacketPayload>, CustomPacketPayload.TypeAndCodec<B extends FriendlyByteBuf,T extends CustomPacketPayload> -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final booleanThe field for theenabledrecord component.private final MutableTestFrameworkThe field for theframeworkrecord component.static final CustomPacketPayload.Type<ChangeEnabledPayload> private final StringThe field for thetestIdrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionChangeEnabledPayload(MutableTestFramework framework, String testId, boolean enabled) Creates an instance of aChangeEnabledPayloadrecord class. -
Method Summary
Modifier and TypeMethodDescriptionstatic ChangeEnabledPayloaddecode(MutableTestFramework framework, FriendlyByteBuf buf) booleanenabled()Returns the value of theenabledrecord component.final booleanIndicates whether some other object is "equal to" this one.Returns the value of theframeworkrecord component.voidhandle(IPayloadContext context) final inthashCode()Returns a hash code value for this object.testId()Returns the value of thetestIdrecord component.final StringtoString()Returns a string representation of this record class.CustomPacketPayload.Type<? extends CustomPacketPayload> type()voidwrite(FriendlyByteBuf buf)
-
Field Details
-
framework
The field for theframeworkrecord component. -
testId
The field for thetestIdrecord component. -
enabled
private final boolean enabledThe field for theenabledrecord component. -
ID
-
-
Constructor Details
-
ChangeEnabledPayload
Creates an instance of aChangeEnabledPayloadrecord class.- Parameters:
framework- the value for theframeworkrecord componenttestId- the value for thetestIdrecord componentenabled- the value for theenabledrecord component
-
-
Method Details
-
handle
-
decode
-
write
-
type
- Specified by:
typein interfaceCustomPacketPayload
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
framework
Returns the value of theframeworkrecord component.- Returns:
- the value of the
frameworkrecord component
-
testId
Returns the value of thetestIdrecord component.- Returns:
- the value of the
testIdrecord component
-
enabled
public boolean enabled()Returns the value of theenabledrecord component.- Returns:
- the value of the
enabledrecord component
-