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 SummaryFieldsModifier and TypeFieldDescriptionprivate final HiveDebugPayload.HiveInfoThe field for theinforecord component.private final longThe field for thelastSeenrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionHiveDebugInfo(HiveDebugPayload.HiveInfo info, long lastSeen) Creates an instance of aHiveDebugInforecord 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.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- 
infoThe field for theinforecord component.
- 
lastSeenprivate final long lastSeenThe field for thelastSeenrecord component.
 
- 
- 
Constructor Details- 
HiveDebugInfoHiveDebugInfo(HiveDebugPayload.HiveInfo info, long lastSeen) Creates an instance of aHiveDebugInforecord class.- Parameters:
- info- the value for the- inforecord component
- lastSeen- the value for the- lastSeenrecord component
 
 
- 
- 
Method Details- 
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 '=='.
- 
infoReturns the value of theinforecord component.- Returns:
- the value of the inforecord component
 
- 
lastSeenpublic long lastSeen()Returns the value of thelastSeenrecord component.- Returns:
- the value of the lastSeenrecord component
 
 
-