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 official fro$a
intermediary net/minecraft/class_5739$class_5740
named net/minecraft/client/render/debug/GameEventDebugRenderer$Entry
official a
intermediary comp_678
named startingMs
official b
intermediary comp_679
named event
official c
intermediary comp_680
named pos
-
Field Summary
Modifier and TypeFieldDescriptionprivate final RegistryKey<GameEvent>
The field for theevent
record component.private final Vec3d
The field for thepos
record component.private final long
The field for thestartingMs
record component. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.event()
Returns the value of theevent
record component.boolean
final int
hashCode()
Returns a hash code value for this object.pos()
Returns the value of thepos
record component.long
Returns the value of thestartingMs
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
startingMs
private final long startingMsThe field for thestartingMs
record component. -
event
The field for theevent
record component. -
pos
The field for thepos
record component.
-
-
Constructor Details
-
Entry
Entry(long startingMs, RegistryKey<GameEvent> registryKey, Vec3d pos) - Mappings:
Namespace Name Mixin selector official <init>
Lfro$a;<init>(JLaev;Lehn;)V
intermediary <init>
Lnet/minecraft/class_5739$class_5740;<init>(JLnet/minecraft/class_5321;Lnet/minecraft/class_243;)V
named <init>
Lnet/minecraft/client/render/debug/GameEventDebugRenderer$Entry;<init>(JLnet/minecraft/registry/RegistryKey;Lnet/minecraft/util/math/Vec3d;)V
-
-
Method Details
-
hasExpired
public boolean hasExpired()- Mappings:
Namespace Name Mixin selector official a
Lfro$a;a()Z
intermediary method_33093
Lnet/minecraft/class_5739$class_5740;method_33093()Z
named hasExpired
Lnet/minecraft/client/render/debug/GameEventDebugRenderer$Entry;hasExpired()Z
-
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 '=='. -
startingMs
public long startingMs()Returns the value of thestartingMs
record component.- Returns:
- the value of the
startingMs
record component
-
event
Returns the value of theevent
record component.- Returns:
- the value of the
event
record component
-
pos
Returns the value of thepos
record component.- Returns:
- the value of the
pos
record component
-