public static enum CircuitBreakerState.CircuitState extends Enum<CircuitBreakerState.CircuitState>
Modifier and Type | Method and Description |
---|---|
static CircuitBreakerState.CircuitState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CircuitBreakerState.CircuitState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CircuitBreakerState.CircuitState OPEN
public static final CircuitBreakerState.CircuitState CLOSED
public static final CircuitBreakerState.CircuitState HALF_OPEN
public static CircuitBreakerState.CircuitState[] values()
for (CircuitBreakerState.CircuitState c : CircuitBreakerState.CircuitState.values()) System.out.println(c);
public static CircuitBreakerState.CircuitState valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2019. All rights reserved.