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 SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<TelemetryEventInstance>private final TelemetryPropertyMapThe field for thepropertiesrecord component.private final TelemetryEventTypeThe field for thetyperecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionTelemetryEventInstance(TelemetryEventType type, TelemetryPropertyMap properties) Creates an instance of aTelemetryEventInstancerecord class.
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.com.mojang.authlib.minecraft.TelemetryEventexport(com.mojang.authlib.minecraft.TelemetrySession p_261645_) final inthashCode()Returns a hash code value for this object.Returns the value of thepropertiesrecord component.final StringtoString()Returns a string representation of this record class.type()Returns the value of thetyperecord component.
- 
Field Details- 
typeThe field for thetyperecord component.
- 
propertiesThe field for thepropertiesrecord component.
- 
CODEC
 
- 
- 
Constructor Details- 
TelemetryEventInstanceCreates an instance of aTelemetryEventInstancerecord class.- Parameters:
- type- the value for the- typerecord component
- properties- the value for the- propertiesrecord component
 
 
- 
- 
Method Details- 
exportpublic com.mojang.authlib.minecraft.TelemetryEvent export(com.mojang.authlib.minecraft.TelemetrySession p_261645_) 
- 
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. All components in this record class are compared withObjects::equals(Object,Object).
- 
typeReturns the value of thetyperecord component.- Returns:
- the value of the typerecord component
 
- 
propertiesReturns the value of thepropertiesrecord component.- Returns:
- the value of the propertiesrecord component
 
 
-