public static enum AccountInfo.AccountType extends Enum<AccountInfo.AccountType>
Enum Constant and Description |
---|
INTERACTIVE
An interactive user account within the system.
|
NON_INTERACTIVE
A system account within the system.
|
Modifier and Type | Method and Description |
---|---|
static AccountInfo.AccountType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccountInfo.AccountType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccountInfo.AccountType INTERACTIVE
public static final AccountInfo.AccountType NON_INTERACTIVE
public static AccountInfo.AccountType[] values()
for (AccountInfo.AccountType c : AccountInfo.AccountType.values()) System.out.println(c);
public static AccountInfo.AccountType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright (c) 2020, SAS Institute Inc., Cary, NC, USA