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
official emq
intermediary net/minecraft/class_9011
named net/minecraft/scoreboard/ScoreboardEntry
official a
intermediary comp_2127
named owner
official b
intermediary comp_2128
named value
official c
intermediary comp_2129
named display
official d
intermediary comp_2130
named numberFormatOverride
  • Field Details

  • Constructor Details

  • Method Details

    • hidden

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

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

      public MutableText formatted(NumberFormat format)
      Mappings:
      Namespace Name Mixin selector
      official a Lemq;a(Lwv;)Lvt;
      intermediary method_55386 Lnet/minecraft/class_9011;method_55386(Lnet/minecraft/class_9022;)Lnet/minecraft/class_5250;
      named formatted Lnet/minecraft/scoreboard/ScoreboardEntry;formatted(Lnet/minecraft/scoreboard/number/NumberFormat;)Lnet/minecraft/text/MutableText;
    • 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 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

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

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

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

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