Record Class GameEventDebugRenderer.Entry
java.lang.Object
java.lang.Record
net.minecraft.client.render.debug.GameEventDebugRenderer.Entry
- Record Components:
- startingMs-
- event-
- pos-
- Enclosing class:
- GameEventDebugRenderer
@Environment(CLIENT)
private static record GameEventDebugRenderer.Entry(long startingMs, RegistryKey<GameEvent> event, Vec3d pos)
extends Record
- Mappings:
- Namespace - Name - named - net/minecraft/client/render/debug/GameEventDebugRenderer$Entry- intermediary - net/minecraft/class_5739$class_5740- official - gqb$a- named - startingMs- intermediary - comp_678- official - a- named - event- intermediary - comp_679- official - b- named - pos- intermediary - comp_680- official - c
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final RegistryKey<GameEvent> The field for theeventrecord component.private final Vec3dThe field for theposrecord component.private final longThe field for thestartingMsrecord component.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.event()Returns the value of theeventrecord component.booleanfinal inthashCode()Returns a hash code value for this object.pos()Returns the value of theposrecord component.longReturns the value of thestartingMsrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
startingMsprivate final long startingMsThe field for thestartingMsrecord component.
- 
eventThe field for theeventrecord component.
- 
posThe field for theposrecord component.
 
- 
- 
Constructor Details- 
EntryEntry(long startingMs, RegistryKey<GameEvent> registryKey, Vec3d pos) - Mappings:
- Namespace - Name - Mixin selector - named - <init>- Lnet/minecraft/client/render/debug/GameEventDebugRenderer$Entry;<init>(JLnet/minecraft/registry/RegistryKey;Lnet/minecraft/util/math/Vec3d;)V- intermediary - <init>- Lnet/minecraft/class_5739$class_5740;<init>(JLnet/minecraft/class_5321;Lnet/minecraft/class_243;)V- official - <init>- Lgqb$a;<init>(JLaku;Lfbb;)V
 
 
- 
- 
Method Details- 
hasExpiredpublic boolean hasExpired()- Mappings:
- Namespace - Name - Mixin selector - named - hasExpired- Lnet/minecraft/client/render/debug/GameEventDebugRenderer$Entry;hasExpired()Z- intermediary - method_33093- Lnet/minecraft/class_5739$class_5740;method_33093()Z- official - a- Lgqb$a;a()Z
 
- 
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 '=='.
- 
startingMspublic long startingMs()Returns the value of thestartingMsrecord component.- Returns:
- the value of the startingMsrecord component
 
- 
eventReturns the value of theeventrecord component.- Returns:
- the value of the eventrecord component
 
- 
posReturns the value of theposrecord component.- Returns:
- the value of the posrecord component
 
 
-