Record Class HiveDebugPayload.HiveInfo
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.common.custom.HiveDebugPayload.HiveInfo
- Enclosing class:
HiveDebugPayload
-
Field Summary
Modifier and TypeFieldDescriptionprivate final String
The field for thehiveType
record component.private final int
The field for thehoneyLevel
record component.private final int
The field for theoccupantCount
record component.private final BlockPos
The field for thepos
record component.private final boolean
The field for thesedated
record component. -
Constructor Summary
ConstructorDescriptionCreates an instance of aHiveInfo
record class.HiveInfo
(FriendlyByteBuf p_299719_) -
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.hiveType()
Returns the value of thehiveType
record component.int
Returns the value of thehoneyLevel
record component.int
Returns the value of theoccupantCount
record component.pos()
Returns the value of thepos
record component.boolean
sedated()
Returns the value of thesedated
record component.final String
toString()
Returns a string representation of this record class.void
write
(FriendlyByteBuf p_301145_)
-
Field Details
-
pos
The field for thepos
record component. -
hiveType
The field for thehiveType
record component. -
occupantCount
private final int occupantCountThe field for theoccupantCount
record component. -
honeyLevel
private final int honeyLevelThe field for thehoneyLevel
record component. -
sedated
private final boolean sedatedThe field for thesedated
record component.
-
-
Constructor Details
-
HiveInfo
-
HiveInfo
Creates an instance of aHiveInfo
record class.- Parameters:
pos
- the value for thepos
record componenthiveType
- the value for thehiveType
record componentoccupantCount
- the value for theoccupantCount
record componenthoneyLevel
- the value for thehoneyLevel
record componentsedated
- the value for thesedated
record component
-
-
Method Details
-
write
-
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
pos
Returns the value of thepos
record component.- Returns:
- the value of the
pos
record component
-
hiveType
Returns the value of thehiveType
record component.- Returns:
- the value of the
hiveType
record component
-
occupantCount
public int occupantCount()Returns the value of theoccupantCount
record component.- Returns:
- the value of the
occupantCount
record component
-
honeyLevel
public int honeyLevel()Returns the value of thehoneyLevel
record component.- Returns:
- the value of the
honeyLevel
record component
-
sedated
public boolean sedated()Returns the value of thesedated
record component.- Returns:
- the value of the
sedated
record component
-