public static enum RateLimiter.Operation extends Enum<RateLimiter.Operation>
| Enum Constant and Description |
|---|
RESOURCE_OWNER_LOGIN |
| Modifier and Type | Method and Description |
|---|---|
static RateLimiter.Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RateLimiter.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RateLimiter.Operation RESOURCE_OWNER_LOGIN
public static RateLimiter.Operation[] values()
for (RateLimiter.Operation c : RateLimiter.Operation.values()) System.out.println(c);
public static RateLimiter.Operation 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 © 2023 MuleSoft, Inc.. All rights reserved.