public static enum ParticipatingThrottler.Result extends Enum<ParticipatingThrottler.Result>
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 REJECT
public static final ParticipatingThrottler.Result DROP
public static ParticipatingThrottler.Result[] values()
for (ParticipatingThrottler.Result c : ParticipatingThrottler.Result.values()) System.out.println(c);
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 null