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
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final MutableTestFrameworkThe field for theframeworkrecord component.static final ResourceLocationprivate final Test.StatusThe field for thestatusrecord component.private final StringThe field for thetestIdrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionChangeStatusPayload(MutableTestFramework framework, String testId, Test.Status status) Creates an instance of aChangeStatusPayloadrecord class.
- 
Method SummaryModifier 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(PlayPayloadContext context) final inthashCode()Returns a hash code value for this object.id()status()Returns the value of thestatusrecord component.testId()Returns the value of thetestIdrecord component.final StringtoString()Returns a string representation of this record class.voidwrite(FriendlyByteBuf buf) 
- 
Field Details- 
frameworkThe field for theframeworkrecord component.
- 
testIdThe field for thetestIdrecord component.
- 
statusThe field for thestatusrecord component.
- 
ID
 
- 
- 
Constructor Details- 
ChangeStatusPayloadCreates an instance of aChangeStatusPayloadrecord class.- Parameters:
- framework- the value for the- frameworkrecord component
- testId- the value for the- testIdrecord component
- status- the value for the- statusrecord component
 
 
- 
- 
Method Details- 
write- Specified by:
- writein interface- CustomPacketPayload
 
- 
id- Specified by:
- idin interface- CustomPacketPayload
 
- 
handle
- 
decode
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
frameworkReturns the value of theframeworkrecord component.- Returns:
- the value of the frameworkrecord component
 
- 
testIdReturns the value of thetestIdrecord component.- Returns:
- the value of the testIdrecord component
 
- 
statusReturns the value of thestatusrecord component.- Returns:
- the value of the statusrecord component
 
 
-