public static enum CircuitBreakerEvent.Type extends java.lang.Enum<CircuitBreakerEvent.Type>
| Enum Constant and Description |
|---|
ERROR
A CircuitBreakerEvent which informs that an error has been recorded
|
IGNORED_ERROR
A CircuitBreakerEvent which informs that an error has been ignored
|
NOT_PERMITTED
A CircuitBreakerEvent which informs that a call was not permitted because the CircuitBreaker state is OPEN
|
STATE_TRANSITION
A CircuitBreakerEvent which informs the state of the CircuitBreaker has been changed
|
SUCCESS
A CircuitBreakerEvent which informs that a success has been recorded
|
| Modifier and Type | Method and Description |
|---|---|
static CircuitBreakerEvent.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CircuitBreakerEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CircuitBreakerEvent.Type ERROR
public static final CircuitBreakerEvent.Type IGNORED_ERROR
public static final CircuitBreakerEvent.Type SUCCESS
public static final CircuitBreakerEvent.Type NOT_PERMITTED
public static final CircuitBreakerEvent.Type STATE_TRANSITION
public static CircuitBreakerEvent.Type[] values()
for (CircuitBreakerEvent.Type c : CircuitBreakerEvent.Type.values()) System.out.println(c);
public static CircuitBreakerEvent.Type valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null