public enum AccountStatusId extends java.lang.Enum<AccountStatusId>
Enum Constant and Description |
---|
Active
No comment data provided
|
Inactive
No comment data provided
|
New
No comment data provided
|
Test
No comment data provided
|
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