public enum AccountStatusId extends java.lang.Enum<AccountStatusId>
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static AccountStatusId |
valueOf(int intValue) |
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 nullpublic static AccountStatusId valueOf(int intValue)
public int getValue()