public enum GoogleAuthType extends Enum<GoogleAuthType>
| Modifier and Type | Method and Description |
|---|---|
static GoogleAuthType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GoogleAuthType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GoogleAuthType AUTH_CODE
public static final GoogleAuthType ID_TOKEN
public static GoogleAuthType[] values()
for (GoogleAuthType c : GoogleAuthType.values()) System.out.println(c);
public static GoogleAuthType 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 null