Enum Class BlockScore.State

java.lang.Object
java.lang.Enum<BlockScore.State>
us.talabrek.ultimateskyblock.api.model.BlockScore.State
All Implemented Interfaces:
Serializable, Comparable<BlockScore.State>, Constable
Enclosing interface:
BlockScore

public static enum BlockScore.State extends Enum<BlockScore.State>
The possible states of a BlockScore.
NORMAL
No special restrictions, each block added to the island will increase the score.
DIMINISHING
The upper limit has been reached, so additional blocks will only contribute a fraction to the score.
LIMIT
The hard-limit has been reached, so additional blocks will have no effect on the score.
Since:
v2.1.2
  • Enum Constant Details

  • Method Details

    • values

      public static BlockScore.State[] 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 BlockScore.State 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
    • getColor

      public org.bukkit.ChatColor getColor()
      Returns the chat-color associated with this state.
      Returns:
      the chat-color associated with this state.
      Since:
      v2.1.2