Enum Class SystemState

java.lang.Object
java.lang.Enum<SystemState>
net.bluemind.system.api.SystemState
All Implemented Interfaces:
Serializable, Comparable<SystemState>, Constable

public enum SystemState extends Enum<SystemState>
  • Enum Constant Details

    • CORE_STATE_STARTING

      public static final SystemState CORE_STATE_STARTING
    • CORE_STATE_RUNNING

      public static final SystemState CORE_STATE_RUNNING
    • CORE_STATE_MAINTENANCE

      public static final SystemState CORE_STATE_MAINTENANCE
    • CORE_STATE_DEMOTED

      public static final SystemState CORE_STATE_DEMOTED
    • CORE_STATE_NOT_INSTALLED

      public static final SystemState CORE_STATE_NOT_INSTALLED
    • CORE_STATE_UPGRADE

      public static final SystemState CORE_STATE_UPGRADE
    • CORE_STATE_CLONING

      public static final SystemState CORE_STATE_CLONING
    • CORE_STATE_STOPPING

      public static final SystemState CORE_STATE_STOPPING
    • CORE_STATE_UNKNOWN

      public static final SystemState CORE_STATE_UNKNOWN
  • Field Details

  • Method Details

    • values

      public static SystemState[] 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 SystemState 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
    • operation

      public String operation()
    • fromOperation

      public static SystemState fromOperation(String op)