Record Class HiveDebugPayload
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.common.custom.HiveDebugPayload
- All Implemented Interfaces:
CustomPacketPayload
public record HiveDebugPayload(HiveDebugPayload.HiveInfo hiveInfo)
extends Record
implements CustomPacketPayload
-
Nested Class Summary
-
Field Summary
Modifier and TypeFieldDescriptionprivate final HiveDebugPayload.HiveInfo
The field for thehiveInfo
record component.static final ResourceLocation
-
Constructor Summary
ConstructorDescriptionHiveDebugPayload
(FriendlyByteBuf p_299613_) HiveDebugPayload
(HiveDebugPayload.HiveInfo hiveInfo) Creates an instance of aHiveDebugPayload
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.hiveInfo()
Returns the value of thehiveInfo
record component.id()
final String
toString()
Returns a string representation of this record class.void
write
(FriendlyByteBuf p_297901_)
-
Field Details
-
hiveInfo
The field for thehiveInfo
record component. -
ID
-
-
Constructor Details
-
HiveDebugPayload
-
HiveDebugPayload
Creates an instance of aHiveDebugPayload
record class.- Parameters:
hiveInfo
- the value for thehiveInfo
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)
. -
hiveInfo
Returns the value of thehiveInfo
record component.- Returns:
- the value of the
hiveInfo
record component
-