| Enum Constant and Description |
|---|
CIRCUIT_OPEN |
MAX_CONCURRENCY_LEVEL_EXCEEDED |
RATE_LIMIT_EXCEEDED |
| Modifier and Type | Method and Description |
|---|---|
static Rejected |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Rejected[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Rejected CIRCUIT_OPEN
public static final Rejected MAX_CONCURRENCY_LEVEL_EXCEEDED
public static final Rejected RATE_LIMIT_EXCEEDED
public static Rejected[] values()
for (Rejected c : Rejected.values()) System.out.println(c);
public static Rejected 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 nullCopyright © 2014 Tim Brooks. All Rights Reserved.