Enum ServiceState
- java.lang.Object
-
- java.lang.Enum<ServiceState>
-
- com.couchbase.client.core.service.ServiceState
-
- All Implemented Interfaces:
Serializable,Comparable<ServiceState>
public enum ServiceState extends Enum<ServiceState>
Holds all states aServicecan be in.- Since:
- 2.0.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONNECTEDThisServicehas all endpoints connected.CONNECTINGThisServicehas all endpoints connecting.DEGRADEDThisServicehas at least one endpoint connected.DISCONNECTEDThisServiceis disconnected (has endpoints and all are disconnected)DISCONNECTINGThisServicehas all endpoints disconnecting.IDLEThisServiceis idle (no endpoints attached at all)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ServiceStatevalueOf(String name)Returns the enum constant of this type with the specified name.static ServiceState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IDLE
public static final ServiceState IDLE
ThisServiceis idle (no endpoints attached at all)
-
DISCONNECTED
public static final ServiceState DISCONNECTED
ThisServiceis disconnected (has endpoints and all are disconnected)
-
CONNECTING
public static final ServiceState CONNECTING
ThisServicehas all endpoints connecting.
-
CONNECTED
public static final ServiceState CONNECTED
ThisServicehas all endpoints connected.
-
DISCONNECTING
public static final ServiceState DISCONNECTING
ThisServicehas all endpoints disconnecting.
-
DEGRADED
public static final ServiceState DEGRADED
ThisServicehas at least one endpoint connected.
-
-
Method Detail
-
values
public static ServiceState[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ServiceState c : ServiceState.values()) System.out.println(c);
- 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 nameNullPointerException- if the argument is null
-
-