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
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final booleanThe field for theenabledrecord component.private final MutableTestFrameworkThe field for theframeworkrecord component.static final ResourceLocationprivate final StringThe field for thetestIdrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionChangeEnabledPayload(MutableTestFramework framework, String testId, boolean enabled) Creates an instance of aChangeEnabledPayloadrecord class.
- 
Method SummaryModifier 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(PlayPayloadContext context) final inthashCode()Returns a hash code value for this object.id()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.
- 
enabledprivate final boolean enabledThe field for theenabledrecord component.
- 
ID
 
- 
- 
Constructor Details- 
ChangeEnabledPayloadCreates an instance of aChangeEnabledPayloadrecord class.- Parameters:
- framework- the value for the- frameworkrecord component
- testId- the value for the- testIdrecord component
- enabled- the value for the- enabledrecord component
 
 
- 
- 
Method Details- 
handle
- 
decode
- 
write- Specified by:
- writein interface- CustomPacketPayload
 
- 
id- Specified by:
- idin interface- CustomPacketPayload
 
- 
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='.
- 
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
 
- 
enabledpublic boolean enabled()Returns the value of theenabledrecord component.- Returns:
- the value of the enabledrecord component
 
 
-