Record Class PlayerTabOverlay.ScoreDisplayEntry

java.lang.Object
java.lang.Record
net.minecraft.client.gui.components.PlayerTabOverlay.ScoreDisplayEntry
Enclosing class:
PlayerTabOverlay

static record PlayerTabOverlay.ScoreDisplayEntry(Component name, int score, @Nullable Component formattedScore, int scoreWidth) extends Record
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final Component
    The field for the formattedScore record component.
    private final Component
    The field for the name record component.
    private final int
    The field for the score record component.
    private final int
    The field for the scoreWidth record component.
  • Constructor Summary

    Constructors
    Constructor
    Description
    ScoreDisplayEntry(Component name, int score, Component formattedScore, int scoreWidth)
    Creates an instance of a ScoreDisplayEntry record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    final boolean
    Indicates whether some other object is "equal to" this one.
    Returns the value of the formattedScore record component.
    final int
    Returns a hash code value for this object.
    Returns the value of the name record component.
    int
    Returns the value of the score record component.
    int
    Returns the value of the scoreWidth record component.
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • name

      private final Component name
      The field for the name record component.
    • score

      private final int score
      The field for the score record component.
    • formattedScore

      @Nullable private final Component formattedScore
      The field for the formattedScore record component.
    • scoreWidth

      private final int scoreWidth
      The field for the scoreWidth record component.
  • Constructor Details

    • ScoreDisplayEntry

      ScoreDisplayEntry(Component name, int score, @Nullable Component formattedScore, int scoreWidth)
      Creates an instance of a ScoreDisplayEntry record class.
      Parameters:
      name - the value for the name record component
      score - the value for the score record component
      formattedScore - the value for the formattedScore record component
      scoreWidth - the value for the scoreWidth record component
  • Method Details

    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • name

      public Component name()
      Returns the value of the name record component.
      Returns:
      the value of the name record component
    • score

      public int score()
      Returns the value of the score record component.
      Returns:
      the value of the score record component
    • formattedScore

      @Nullable public Component formattedScore()
      Returns the value of the formattedScore record component.
      Returns:
      the value of the formattedScore record component
    • scoreWidth

      public int scoreWidth()
      Returns the value of the scoreWidth record component.
      Returns:
      the value of the scoreWidth record component