public enum AccountType extends Enum<AccountType> implements IDataTransferModel
Enum Constant and Description |
---|
ADMIN |
NORMAL |
PRINCIPAL_INVESTIGATOR |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static AccountType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccountType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccountType ADMIN
public static final AccountType PRINCIPAL_INVESTIGATOR
public static final AccountType NORMAL
public static AccountType[] values()
for (AccountType c : AccountType.values()) System.out.println(c);
public static 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 nullpublic String toString()
toString
in class Enum<AccountType>
Copyright © 2017. All rights reserved.