public enum AccountStatus extends java.lang.Enum<AccountStatus> implements APIName
Enum Constant and Description |
---|
ACCOUNT_UPDATED
The account information is being updated.
|
ACTIVE
The account is active for trading.
|
APPROVAL_PENDING
The final account approval is pending.
|
ONBOARDING
The account is onboarding.
|
REJECTED
The account application has been rejected.
|
SUBMISSION_FAILED
The account application submission failed for some reason.
|
SUBMITTED
The account application has been submitted for review.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getAPIName()
Gets the API name.
|
static AccountStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccountStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccountStatus ONBOARDING
public static final AccountStatus SUBMISSION_FAILED
public static final AccountStatus SUBMITTED
public static final AccountStatus ACCOUNT_UPDATED
public static final AccountStatus APPROVAL_PENDING
public static final AccountStatus ACTIVE
public static final AccountStatus REJECTED
public static AccountStatus[] values()
for (AccountStatus c : AccountStatus.values()) System.out.println(c);
public static AccountStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getAPIName()
APIName
getAPIName
in interface APIName