public enum FirebaseResponse extends Enum<FirebaseResponse>
| Enum Constant and Description |
|---|
INVALID_PROVIDER_APP_ID |
INVALID_PROVIDER_APP_KEY |
LOGIN_CANCELLED |
MISC_PROVIDER_ERROR |
MISSING_PROVIDER_APP_ID |
MISSING_PROVIDER_APP_KEY |
PROVIDER_NOT_ENABLED |
WRONG_CREDENTIALS |
| Modifier and Type | Method and Description |
|---|---|
static FirebaseResponse |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FirebaseResponse[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FirebaseResponse WRONG_CREDENTIALS
public static final FirebaseResponse PROVIDER_NOT_ENABLED
public static final FirebaseResponse LOGIN_CANCELLED
public static final FirebaseResponse MISC_PROVIDER_ERROR
public static final FirebaseResponse INVALID_PROVIDER_APP_ID
public static final FirebaseResponse INVALID_PROVIDER_APP_KEY
public static final FirebaseResponse MISSING_PROVIDER_APP_ID
public static final FirebaseResponse MISSING_PROVIDER_APP_KEY
public static FirebaseResponse[] values()
for (FirebaseResponse c : FirebaseResponse.values()) System.out.println(c);
public static FirebaseResponse 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