Record Class BeeDebugRenderer.HiveDebugInfo
java.lang.Object
java.lang.Record
net.minecraft.client.renderer.debug.BeeDebugRenderer.HiveDebugInfo
- Enclosing class:
- BeeDebugRenderer
static record BeeDebugRenderer.HiveDebugInfo(HiveDebugPayload.HiveInfo info, long lastSeen)
extends Record
-
Field Summary
Modifier and TypeFieldDescriptionprivate final HiveDebugPayload.HiveInfo
The field for theinfo
record component.private final long
The field for thelastSeen
record component. -
Constructor Summary
ConstructorDescriptionHiveDebugInfo
(HiveDebugPayload.HiveInfo info, long lastSeen) Creates an instance of aHiveDebugInfo
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.info()
Returns the value of theinfo
record component.long
lastSeen()
Returns the value of thelastSeen
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
info
The field for theinfo
record component. -
lastSeen
private final long lastSeenThe field for thelastSeen
record component.
-
-
Constructor Details
-
HiveDebugInfo
HiveDebugInfo(HiveDebugPayload.HiveInfo info, long lastSeen) Creates an instance of aHiveDebugInfo
record class.- Parameters:
info
- the value for theinfo
record componentlastSeen
- the value for thelastSeen
record component
-
-
Method Details
-
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 '=='. -
info
Returns the value of theinfo
record component.- Returns:
- the value of the
info
record component
-
lastSeen
public long lastSeen()Returns the value of thelastSeen
record component.- Returns:
- the value of the
lastSeen
record component
-