Package net.minecraft.client.telemetry
Record Class TelemetryEventInstance
java.lang.Object
java.lang.Record
net.minecraft.client.telemetry.TelemetryEventInstance
public record TelemetryEventInstance(TelemetryEventType type, TelemetryPropertyMap properties)
extends Record
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<TelemetryEventInstance>
private final TelemetryPropertyMap
The field for theproperties
record component.private final TelemetryEventType
The field for thetype
record component. -
Constructor Summary
ConstructorDescriptionTelemetryEventInstance
(TelemetryEventType type, TelemetryPropertyMap properties) Creates an instance of aTelemetryEventInstance
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.com.mojang.authlib.minecraft.TelemetryEvent
export
(com.mojang.authlib.minecraft.TelemetrySession p_261645_) final int
hashCode()
Returns a hash code value for this object.Returns the value of theproperties
record component.final String
toString()
Returns a string representation of this record class.type()
Returns the value of thetype
record component.
-
Field Details
-
type
The field for thetype
record component. -
properties
The field for theproperties
record component. -
CODEC
-
-
Constructor Details
-
TelemetryEventInstance
Creates an instance of aTelemetryEventInstance
record class.- Parameters:
type
- the value for thetype
record componentproperties
- the value for theproperties
record component
-
-
Method Details
-
export
public com.mojang.authlib.minecraft.TelemetryEvent export(com.mojang.authlib.minecraft.TelemetrySession p_261645_) -
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
type
Returns the value of thetype
record component.- Returns:
- the value of the
type
record component
-
properties
Returns the value of theproperties
record component.- Returns:
- the value of the
properties
record component
-