public static enum CircuitBreakerMetricBean.Result extends Enum<CircuitBreakerMetricBean.Result>
Enum Constant and Description |
---|
FAIL |
PASS |
PASS_EXCEPTION |
SKIPPED_EXCEPTION |
Modifier and Type | Method and Description |
---|---|
static CircuitBreakerMetricBean.Result |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CircuitBreakerMetricBean.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CircuitBreakerMetricBean.Result PASS
public static final CircuitBreakerMetricBean.Result PASS_EXCEPTION
public static final CircuitBreakerMetricBean.Result SKIPPED_EXCEPTION
public static final CircuitBreakerMetricBean.Result FAIL
public static CircuitBreakerMetricBean.Result[] values()
for (CircuitBreakerMetricBean.Result c : CircuitBreakerMetricBean.Result.values()) System.out.println(c);
public static CircuitBreakerMetricBean.Result 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 © 2016 – 2022 Eclipse Foundation. All rights reserved.
Use is subject to license terms.