Enum Class DBCommandPriority

java.lang.Object
java.lang.Enum<DBCommandPriority>
marauroa.server.db.command.DBCommandPriority
All Implemented Interfaces:
Serializable, Comparable<DBCommandPriority>, Constable

public enum DBCommandPriority extends Enum<DBCommandPriority>
Priority of this command
  • Enum Constant Details

    • CRITICAL

      public static final DBCommandPriority CRITICAL
      the command has to be executed before the next player may login
    • LOW

      public static final DBCommandPriority LOW
      the command deals with data not relevant to logins
    • LOWEST

      public static final DBCommandPriority LOWEST
      the command deals with data that is not relevant to game play
  • Method Details

    • values

      public static DBCommandPriority[] 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 DBCommandPriority 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
    • getPriorityValue

      public int getPriorityValue()
      gets the priority value to be used in comparisons
      Returns:
      priority value