@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum TaxRegistrationStatus extends Enum<TaxRegistrationStatus>
| Enum Constant and Description |
|---|
Deleted |
Pending |
Rejected |
Verified |
| Modifier and Type | Method and Description |
|---|---|
static TaxRegistrationStatus |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static TaxRegistrationStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaxRegistrationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaxRegistrationStatus Verified
public static final TaxRegistrationStatus Pending
public static final TaxRegistrationStatus Deleted
public static final TaxRegistrationStatus Rejected
public static TaxRegistrationStatus[] values()
for (TaxRegistrationStatus c : TaxRegistrationStatus.values()) System.out.println(c);
public static TaxRegistrationStatus 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 toString()
toString in class Enum<TaxRegistrationStatus>public static TaxRegistrationStatus fromValue(String value)
value - real valueIllegalArgumentException - If the specified value does not map to one of the known values in this enum.