public enum AccountStatusId extends java.lang.Enum<AccountStatusId>
Enum Constant and Description |
---|
Active
This account is active and in use.
|
Inactive
This account is not currently active.
|
New
The account is new and is currently in the onboarding process.
|
Test
This account is flagged as a test account and may be temporary.
|
Modifier and Type | Method and Description |
---|---|
static AccountStatusId |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccountStatusId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccountStatusId Inactive
public static final AccountStatusId Active
public static final AccountStatusId Test
public static final AccountStatusId New
public static AccountStatusId[] values()
for (AccountStatusId c : AccountStatusId.values()) System.out.println(c);
public static AccountStatusId 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 null