Enum Class DisplaySlot

java.lang.Object
java.lang.Enum<DisplaySlot>
org.bukkit.scoreboard.DisplaySlot
All Implemented Interfaces:
Serializable, Comparable<DisplaySlot>, Constable

public enum DisplaySlot extends Enum<DisplaySlot>
Locations for displaying objectives to the player
  • Enum Constant Details

    • BELOW_NAME

      public static final DisplaySlot BELOW_NAME
    • PLAYER_LIST

      public static final DisplaySlot PLAYER_LIST
  • Field Details

  • Method Details

    • values

      public static DisplaySlot[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static DisplaySlot valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getId

      @NotNull public @NotNull String getId()
      Get the string id of this display slot.
      Returns:
      the string id
    • toString

      public String toString()
      Overrides:
      toString in class Enum<DisplaySlot>