public enum AccountTypeId extends java.lang.Enum<AccountTypeId>
| Enum Constant and Description |
|---|
Firm |
FirmClient |
Regular |
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static AccountTypeId |
valueOf(int intValue) |
static AccountTypeId |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccountTypeId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccountTypeId Regular
public static final AccountTypeId Firm
public static final AccountTypeId FirmClient
public static AccountTypeId[] values()
for (AccountTypeId c : AccountTypeId.values()) System.out.println(c);
public static AccountTypeId 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 AccountTypeId valueOf(int intValue)
public int getValue()