@BetaApi public static enum FlowController.LimitExceededBehavior extends Enum<FlowController.LimitExceededBehavior>
| Enum Constant and Description |
|---|
Block |
Ignore |
ThrowException |
| Modifier and Type | Method and Description |
|---|---|
static FlowController.LimitExceededBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlowController.LimitExceededBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlowController.LimitExceededBehavior ThrowException
public static final FlowController.LimitExceededBehavior Block
public static final FlowController.LimitExceededBehavior Ignore
public static FlowController.LimitExceededBehavior[] values()
for (FlowController.LimitExceededBehavior c : FlowController.LimitExceededBehavior.values()) System.out.println(c);
public static FlowController.LimitExceededBehavior 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