Enum Class Instance.Status

java.lang.Object
java.lang.Enum<Instance.Status>
org.jclouds.openstack.trove.v1.domain.Instance.Status
All Implemented Interfaces:
Serializable, Comparable<Instance.Status>, java.lang.constant.Constable
Enclosing class:
Instance

public static enum Instance.Status extends Enum<Instance.Status>
Lists possible Instance status.
  • Enum Constant Details

    • BUILD

      public static final Instance.Status BUILD
      The database instance is being provisioned.
    • REBOOT

      public static final Instance.Status REBOOT
      The database instance is rebooting.
    • ACTIVE

      public static final Instance.Status ACTIVE
      The database instance is online and available to take requests.
    • BLOCKED

      public static final Instance.Status BLOCKED
      The database instance is unresponsive at the moment.
    • RESIZE

      public static final Instance.Status RESIZE
      The database instance is being resized at the moment.
    • SHUTDOWN

      public static final Instance.Status SHUTDOWN
      The database instance is terminating services. Also, SHUTDOWN is returned if for any reason the instance is shut down but not the actual server.
    • UNRECOGNIZED

      public static final Instance.Status UNRECOGNIZED
      Unrecognized status response.
  • Method Details

    • values

      public static Instance.Status[] 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 Instance.Status 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
    • value

      public String value()
    • toString

      public String toString()
      Overrides:
      toString in class Enum<Instance.Status>
    • fromValue

      public static Instance.Status fromValue(String status)