public static enum ParticipatingThrottler.Result extends Enum<ParticipatingThrottler.Result>
| Enum Constant and Description |
|---|
ACCEPTRequest accepted. |
DROPRequest dropped (too many requests). |
REJECTRequest rejected (retry later). |
| Modifier and Type | Method and Description |
|---|---|
static ParticipatingThrottler.Result | valueOf(String name)Returns the enum constant of this type with the specified name. |
static ParticipatingThrottler.Result[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. |
public static final ParticipatingThrottler.Result ACCEPT
public static final ParticipatingThrottler.Result DROP
public static final ParticipatingThrottler.Result REJECT
public static ParticipatingThrottler.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 nullpublic static ParticipatingThrottler.Result[] values()
for (ParticipatingThrottler.Result c : ParticipatingThrottler.Result.values()) System.out.println(c);