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
FieldsModifier and TypeFieldDescriptionprivate final HiveDebugPayload.HiveInfoThe field for theinforecord component.private final longThe field for thelastSeenrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionHiveDebugInfo(HiveDebugPayload.HiveInfo info, long lastSeen) Creates an instance of aHiveDebugInforecord 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.info()Returns the value of theinforecord component.longlastSeen()Returns the value of thelastSeenrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
info
The field for theinforecord component. -
lastSeen
private final long lastSeenThe field for thelastSeenrecord component.
-
-
Constructor Details
-
HiveDebugInfo
HiveDebugInfo(HiveDebugPayload.HiveInfo info, long lastSeen) Creates an instance of aHiveDebugInforecord class.- Parameters:
info- the value for theinforecord componentlastSeen- the value for thelastSeenrecord 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 theinforecord component.- Returns:
- the value of the
inforecord component
-
lastSeen
public long lastSeen()Returns the value of thelastSeenrecord component.- Returns:
- the value of the
lastSeenrecord component
-