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
-
Field Summary
Modifier and TypeFieldDescriptionprivate final BrainDebugPayload.BrainDump
The field for thebrainDump
record component.static final ResourceLocation
-
Constructor Summary
ConstructorDescriptionBrainDebugPayload
(FriendlyByteBuf p_295683_) BrainDebugPayload
(BrainDebugPayload.BrainDump brainDump) Creates an instance of aBrainDebugPayload
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thebrainDump
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.id()
final String
toString()
Returns a string representation of this record class.void
write
(FriendlyByteBuf p_294240_)
-
Field Details
-
brainDump
The field for thebrainDump
record component. -
ID
-
-
Constructor Details
-
BrainDebugPayload
-
BrainDebugPayload
Creates an instance of aBrainDebugPayload
record class.- Parameters:
brainDump
- the value for thebrainDump
record component
-
-
Method Details
-
write
- Specified by:
write
in interfaceCustomPacketPayload
-
id
- Specified by:
id
in 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 thebrainDump
record component.- Returns:
- the value of the
brainDump
record component
-