Record Class BeeDebugRenderer.Hive
java.lang.Object
java.lang.Record
net.minecraft.client.render.debug.BeeDebugRenderer.Hive
- Record Components:
- info-
- lastSeen-
- Enclosing class:
- BeeDebugRenderer
@Environment(CLIENT)
private static record BeeDebugRenderer.Hive(DebugHiveCustomPayload.HiveInfo info, long lastSeen)
extends Record
- Mappings:
- Namespace - Name - named - net/minecraft/client/render/debug/BeeDebugRenderer$Hive- intermediary - net/minecraft/class_4703$class_8682- official - gpt$a- named - info- intermediary - comp_1622- official - a- named - lastSeen- intermediary - comp_1623- official - b
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final DebugHiveCustomPayload.HiveInfoThe field for theinforecord component.private final longThe field for thelastSeenrecord component.
- 
Constructor SummaryConstructors
- 
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
- 
Constructor Details- 
HiveHive(DebugHiveCustomPayload.HiveInfo hiveInfo, long long2) 
 
- 
- 
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
 
 
-