public enum RateLimitConditionMatchingStrategy extends Enum<RateLimitConditionMatchingStrategy>
| Enum Constant and Description |
|---|
ALL
All rate limits should be evaluated
|
FIRST
Only the first matching rate limit will be evaluated
|
| Modifier and Type | Method and Description |
|---|---|
static RateLimitConditionMatchingStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RateLimitConditionMatchingStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RateLimitConditionMatchingStrategy ALL
public static final RateLimitConditionMatchingStrategy FIRST
public static RateLimitConditionMatchingStrategy[] values()
for (RateLimitConditionMatchingStrategy c : RateLimitConditionMatchingStrategy.values()) System.out.println(c);
public static RateLimitConditionMatchingStrategy 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 © 2017 Pivotal Software, Inc.. All rights reserved.