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
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 HiveDebugPayload.HiveInfoThe field for thehiveInforecord component.static final StreamCodec<FriendlyByteBuf, HiveDebugPayload> static final CustomPacketPayload.Type<HiveDebugPayload> -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateHiveDebugPayload(FriendlyByteBuf p_296486_) HiveDebugPayload(HiveDebugPayload.HiveInfo hiveInfo) Creates an instance of aHiveDebugPayloadrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.hiveInfo()Returns the value of thehiveInforecord component.final StringtoString()Returns a string representation of this record class.type()private voidwrite(FriendlyByteBuf p_294516_)
-
Field Details
-
hiveInfo
The field for thehiveInforecord component. -
STREAM_CODEC
-
TYPE
-
-
Constructor Details
-
HiveDebugPayload
-
HiveDebugPayload
Creates an instance of aHiveDebugPayloadrecord class.- Parameters:
hiveInfo- the value for thehiveInforecord 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). -
hiveInfo
Returns the value of thehiveInforecord component.- Returns:
- the value of the
hiveInforecord component
-