Record Class ChangeStatusPayload
java.lang.Object
java.lang.Record
net.neoforged.testframework.impl.packet.ChangeStatusPayload
- All Implemented Interfaces:
CustomPacketPayload
public record ChangeStatusPayload(MutableTestFramework framework, String testId, Test.Status status)
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 MutableTestFrameworkThe field for theframeworkrecord component.static final CustomPacketPayload.Type<ChangeStatusPayload> private final Test.StatusThe field for thestatusrecord component.private final StringThe field for thetestIdrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionChangeStatusPayload(MutableTestFramework framework, String testId, Test.Status status) Creates an instance of aChangeStatusPayloadrecord class. -
Method Summary
Modifier and TypeMethodDescriptionstatic ChangeStatusPayloaddecode(MutableTestFramework framework, FriendlyByteBuf buf) 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.status()Returns the value of thestatusrecord component.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. -
status
The field for thestatusrecord component. -
ID
-
-
Constructor Details
-
ChangeStatusPayload
Creates an instance of aChangeStatusPayloadrecord class.- Parameters:
framework- the value for theframeworkrecord componenttestId- the value for thetestIdrecord componentstatus- the value for thestatusrecord component
-
-
Method Details
-
write
-
type
- Specified by:
typein interfaceCustomPacketPayload
-
handle
-
decode
-
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). -
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
-
status
Returns the value of thestatusrecord component.- Returns:
- the value of the
statusrecord component
-