Record Class HiveDebugPayload.HiveInfo
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.common.custom.HiveDebugPayload.HiveInfo
- Enclosing class:
- HiveDebugPayload
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final StringThe field for thehiveTyperecord component.private final intThe field for thehoneyLevelrecord component.private final intThe field for theoccupantCountrecord component.private final BlockPosThe field for theposrecord component.private final booleanThe field for thesedatedrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionCreates an instance of aHiveInforecord class.HiveInfo(FriendlyByteBuf p_295182_) 
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.hiveType()Returns the value of thehiveTyperecord component.intReturns the value of thehoneyLevelrecord component.intReturns the value of theoccupantCountrecord component.pos()Returns the value of theposrecord component.booleansedated()Returns the value of thesedatedrecord component.final StringtoString()Returns a string representation of this record class.voidwrite(FriendlyByteBuf p_295315_) 
- 
Field Details- 
posThe field for theposrecord component.
- 
hiveTypeThe field for thehiveTyperecord component.
- 
occupantCountprivate final int occupantCountThe field for theoccupantCountrecord component.
- 
honeyLevelprivate final int honeyLevelThe field for thehoneyLevelrecord component.
- 
sedatedprivate final boolean sedatedThe field for thesedatedrecord component.
 
- 
- 
Constructor Details- 
HiveInfo
- 
HiveInfoCreates an instance of aHiveInforecord class.- Parameters:
- pos- the value for the- posrecord component
- hiveType- the value for the- hiveTyperecord component
- occupantCount- the value for the- occupantCountrecord component
- honeyLevel- the value for the- honeyLevelrecord component
- sedated- the value for the- sedatedrecord component
 
 
- 
- 
Method Details- 
write
- 
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='.
- 
posReturns the value of theposrecord component.- Returns:
- the value of the posrecord component
 
- 
hiveTypeReturns the value of thehiveTyperecord component.- Returns:
- the value of the hiveTyperecord component
 
- 
occupantCountpublic int occupantCount()Returns the value of theoccupantCountrecord component.- Returns:
- the value of the occupantCountrecord component
 
- 
honeyLevelpublic int honeyLevel()Returns the value of thehoneyLevelrecord component.- Returns:
- the value of the honeyLevelrecord component
 
- 
sedatedpublic boolean sedated()Returns the value of thesedatedrecord component.- Returns:
- the value of the sedatedrecord component
 
 
-