Package net.minecraft.client.gui.hud
Record Class PlayerListHud.ScoreDisplayEntry
java.lang.Object
java.lang.Record
net.minecraft.client.gui.hud.PlayerListHud.ScoreDisplayEntry
- Record Components:
name
-score
-formattedScore
-scoreWidth
-
- Enclosing class:
PlayerListHud
@Environment(CLIENT)
private static record PlayerListHud.ScoreDisplayEntry(Text name, int score, @Nullable Text formattedScore, int scoreWidth)
extends Record
- Mappings:
Namespace Name named net/minecraft/client/gui/hud/PlayerListHud$ScoreDisplayEntry
intermediary net/minecraft/class_355$class_9018
official fih$b
named name
intermediary comp_2134
official a
named score
intermediary comp_2135
official b
named formattedScore
intermediary comp_2136
official c
named scoreWidth
intermediary comp_2137
official d
-
Field Summary
Modifier and TypeFieldDescriptionThe field for theformattedScore
record component.private final Text
The field for thename
record component.private final int
The field for thescore
record component.private final int
The field for thescoreWidth
record component. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.Returns the value of theformattedScore
record component.final int
hashCode()
Returns a hash code value for this object.name()
Returns the value of thename
record component.int
score()
Returns the value of thescore
record component.int
Returns the value of thescoreWidth
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
name
The field for thename
record component. -
score
private final int scoreThe field for thescore
record component. -
formattedScore
The field for theformattedScore
record component. -
scoreWidth
private final int scoreWidthThe field for thescoreWidth
record component.
-
-
Constructor Details
-
ScoreDisplayEntry
-
-
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
name
Returns the value of thename
record component.- Returns:
- the value of the
name
record component
-
score
public int score()Returns the value of thescore
record component.- Returns:
- the value of the
score
record component
-
formattedScore
Returns the value of theformattedScore
record component.- Returns:
- the value of the
formattedScore
record component
-
scoreWidth
public int scoreWidth()Returns the value of thescoreWidth
record component.- Returns:
- the value of the
scoreWidth
record component
-