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