public enum RateExceededErrorReason extends Enum<RateExceededErrorReason>
Java class for RateExceededError.Reason.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="RateExceededError.Reason">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="RATE_EXCEEDED"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
RATE_EXCEEDED
Rate exceeded.
|
| Modifier and Type | Method and Description |
|---|---|
static RateExceededErrorReason |
fromValue(String v) |
String |
value() |
static RateExceededErrorReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RateExceededErrorReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RateExceededErrorReason RATE_EXCEEDED
public static RateExceededErrorReason[] values()
for (RateExceededErrorReason c : RateExceededErrorReason.values()) System.out.println(c);
public static RateExceededErrorReason 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 nullpublic String value()
public static RateExceededErrorReason fromValue(String v)
Copyright © 2023. All rights reserved.