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 SummaryNested Classes
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final HiveDebugPayload.HiveInfoThe field for thehiveInforecord component.static final ResourceLocation
- 
Constructor SummaryConstructorsConstructorDescriptionHiveDebugPayload(FriendlyByteBuf p_299613_) HiveDebugPayload(HiveDebugPayload.HiveInfo hiveInfo) Creates an instance of aHiveDebugPayloadrecord class.
- 
Method SummaryModifier 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.id()final StringtoString()Returns a string representation of this record class.voidwrite(FriendlyByteBuf p_297901_) 
- 
Field Details- 
hiveInfoThe field for thehiveInforecord component.
- 
ID
 
- 
- 
Constructor Details- 
HiveDebugPayload
- 
HiveDebugPayloadCreates an instance of aHiveDebugPayloadrecord class.- Parameters:
- hiveInfo- the value for the- hiveInforecord component
 
 
- 
- 
Method Details- 
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. All components in this record class are compared withObjects::equals(Object,Object).
- 
hiveInfoReturns the value of thehiveInforecord component.- Returns:
- the value of the hiveInforecord component
 
 
-