Record Class ScoreboardEntry

java.lang.Object
java.lang.Record
net.minecraft.scoreboard.ScoreboardEntry
Record Components:
owner -
value -
display -
numberFormatOverride -

public record ScoreboardEntry(String owner, int value, @Nullable Text display, @Nullable NumberFormat numberFormatOverride) extends Record
Mappings:
Namespace Name
named net/minecraft/scoreboard/ScoreboardEntry
intermediary net/minecraft/class_9011
official fbz
named owner
intermediary comp_2127
official a
named value
intermediary comp_2128
official b
named display
intermediary comp_2129
official c
named numberFormatOverride
intermediary comp_2130
official d
  • Field Details Link icon

  • Constructor Details Link icon

  • Method Details Link icon

    • hidden Link icon

      public boolean hidden()
      Mappings:
      Namespace Name Mixin selector
      named hidden Lnet/minecraft/scoreboard/ScoreboardEntry;hidden()Z
      intermediary method_55385 Lnet/minecraft/class_9011;method_55385()Z
      official a Lfbz;a()Z
    • name Link icon

      public Text name()
      Mappings:
      Namespace Name Mixin selector
      named name Lnet/minecraft/scoreboard/ScoreboardEntry;name()Lnet/minecraft/text/Text;
      intermediary method_55387 Lnet/minecraft/class_9011;method_55387()Lnet/minecraft/class_2561;
      official b Lfbz;b()Lwp;
    • formatted Link icon

      public MutableText formatted(NumberFormat format)
      Mappings:
      Namespace Name Mixin selector
      named formatted Lnet/minecraft/scoreboard/ScoreboardEntry;formatted(Lnet/minecraft/scoreboard/number/NumberFormat;)Lnet/minecraft/text/MutableText;
      intermediary method_55386 Lnet/minecraft/class_9011;method_55386(Lnet/minecraft/class_9022;)Lnet/minecraft/class_5250;
      official a Lfbz;a(Lyf;)Lxd;
    • toString Link icon

      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 Link icon

      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 Link icon

      public final boolean equals(Object object)
      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:
      object - the object with which to compare
      Returns:
      true if this object is the same as the object argument; false otherwise.
    • owner Link icon

      public String owner()
      Returns the value of the owner record component.
      Returns:
      the value of the owner record component
    • value Link icon

      public int value()
      Returns the value of the value record component.
      Returns:
      the value of the value record component
    • display Link icon

      @Nullable public @Nullable Text display()
      Returns the value of the display record component.
      Returns:
      the value of the display record component
    • numberFormatOverride Link icon

      @Nullable public @Nullable NumberFormat numberFormatOverride()
      Returns the value of the numberFormatOverride record component.
      Returns:
      the value of the numberFormatOverride record component