Enum Class EnvironmentStatus

java.lang.Object
java.lang.Enum<EnvironmentStatus>
oracle.pg.rdbms.EnvironmentStatus
All Implemented Interfaces:
Serializable, Comparable<EnvironmentStatus>, Constable

public enum EnvironmentStatus extends Enum<EnvironmentStatus>
The ADB Graph environment status.
  • Enum Constant Details

    • ATTACHING

      public static final EnvironmentStatus ATTACHING
      Currently being attached to an environment.
    • ATTACHED

      public static final EnvironmentStatus ATTACHED
      Currently attached to an environment.
    • RESTARTING

      public static final EnvironmentStatus RESTARTING
      Currently being restarting the previously attached environment.
    • DETACHING

      public static final EnvironmentStatus DETACHING
      In the process of detaching from an environment.
    • DETACHED

      public static final EnvironmentStatus DETACHED
      Currently not attached to an environment.
  • Method Details

    • values

      public static EnvironmentStatus[] 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 EnvironmentStatus 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