Package net.minecraft.server
Record Class SampleSubscriptionTracker.PlayerSubscriptionData
java.lang.Object
java.lang.Record
net.minecraft.server.SampleSubscriptionTracker.PlayerSubscriptionData
- Record Components:
player
-sampleType
-
- Enclosing class:
SampleSubscriptionTracker
private static record SampleSubscriptionTracker.PlayerSubscriptionData(ServerPlayerEntity player, DebugSampleType sampleType)
extends Record
- Mappings:
Namespace Name named net/minecraft/server/SampleSubscriptionTracker$PlayerSubscriptionData
intermediary net/minecraft/class_9188$class_9189
official blv$a
named player
intermediary comp_2288
official a
named sampleType
intermediary comp_2289
official b
-
Field Summary
Modifier and TypeFieldDescriptionprivate final ServerPlayerEntity
The field for theplayer
record component.private final DebugSampleType
The field for thesampleType
record component. -
Constructor Summary
ConstructorDescriptionPlayerSubscriptionData
(ServerPlayerEntity serverPlayerEntity, DebugSampleType debugSampleType) -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.player()
Returns the value of theplayer
record component.Returns the value of thesampleType
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
player
The field for theplayer
record component. -
sampleType
The field for thesampleType
record component.
-
-
Constructor Details
-
PlayerSubscriptionData
PlayerSubscriptionData(ServerPlayerEntity serverPlayerEntity, DebugSampleType debugSampleType)
-
-
Method Details
-
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)
. -
player
Returns the value of theplayer
record component.- Returns:
- the value of the
player
record component
-
sampleType
Returns the value of thesampleType
record component.- Returns:
- the value of the
sampleType
record component
-