Record Class BrainDebugPayload
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.common.custom.BrainDebugPayload
- All Implemented Interfaces:
CustomPacketPayload
public record BrainDebugPayload(BrainDebugPayload.BrainDump brainDump)
extends Record
implements CustomPacketPayload
-
Nested Class Summary
Nested ClassesNested 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 BrainDebugPayload.BrainDumpThe field for thebrainDumprecord component.static final StreamCodec<FriendlyByteBuf, BrainDebugPayload> static final CustomPacketPayload.Type<BrainDebugPayload> -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateBrainDebugPayload(FriendlyByteBuf p_295683_) BrainDebugPayload(BrainDebugPayload.BrainDump brainDump) Creates an instance of aBrainDebugPayloadrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thebrainDumprecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.type()private voidwrite(FriendlyByteBuf p_294240_)
-
Field Details
-
brainDump
The field for thebrainDumprecord component. -
STREAM_CODEC
-
TYPE
-
-
Constructor Details
-
BrainDebugPayload
-
BrainDebugPayload
Creates an instance of aBrainDebugPayloadrecord class.- Parameters:
brainDump- the value for thebrainDumprecord component
-
-
Method Details
-
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. All components in this record class are compared withObjects::equals(Object,Object). -
brainDump
Returns the value of thebrainDumprecord component.- Returns:
- the value of the
brainDumprecord component
-