public enum RateLimiterError extends Enum<RateLimiterError> implements org.mule.runtime.extension.api.error.ErrorTypeDefinition<RateLimiterError>
| Enum Constant and Description |
|---|
INVALID_NUMBER |
MISSING_ATTRIBUTES |
OVERFLOW |
RETRIES_EXHAUSTED |
UNEXPECTED_ATTRIBUTES_TYPE |
| Modifier and Type | Method and Description |
|---|---|
static RateLimiterError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RateLimiterError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RateLimiterError OVERFLOW
public static final RateLimiterError INVALID_NUMBER
public static final RateLimiterError MISSING_ATTRIBUTES
public static final RateLimiterError UNEXPECTED_ATTRIBUTES_TYPE
public static final RateLimiterError RETRIES_EXHAUSTED
public static RateLimiterError[] values()
for (RateLimiterError c : RateLimiterError.values()) System.out.println(c);
public static RateLimiterError 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.