Enum ServiceState

java.lang.Object
java.lang.Enum<ServiceState>
com.couchbase.client.core.service.ServiceState
All Implemented Interfaces:
Serializable, Comparable<ServiceState>, java.lang.constant.Constable

public enum ServiceState extends Enum<ServiceState>
Holds all states a Service can be in.
Since:
2.0.0
  • Enum Constant Details

    • IDLE

      public static final ServiceState IDLE
      This Service is idle (no endpoints attached at all)
    • DISCONNECTED

      public static final ServiceState DISCONNECTED
      This Service is disconnected (has endpoints and all are disconnected)
    • CONNECTING

      public static final ServiceState CONNECTING
      This Service has all endpoints connecting.
    • CONNECTED

      public static final ServiceState CONNECTED
      This Service has all endpoints connected.
    • DISCONNECTING

      public static final ServiceState DISCONNECTING
      This Service has all endpoints disconnecting.
    • DEGRADED

      public static final ServiceState DEGRADED
      This Service has at least one endpoint connected.
  • Method Details

    • values

      public static ServiceState[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static ServiceState valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null