public static enum FirebaseRuntimeException.ErrorCode extends java.lang.Enum<FirebaseRuntimeException.ErrorCode>
| Enum Constant and Description |
|---|
AccessViolation |
AuthenticationExpired |
EventStreamListenerAlreadyActive |
EventStreamListenerNotActive |
EventStreamRequestFailed |
ResponseDeserializationFailure |
UnsupportedStatusCode |
| Modifier and Type | Method and Description |
|---|---|
static FirebaseRuntimeException.ErrorCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FirebaseRuntimeException.ErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FirebaseRuntimeException.ErrorCode AccessViolation
public static final FirebaseRuntimeException.ErrorCode AuthenticationExpired
public static final FirebaseRuntimeException.ErrorCode ResponseDeserializationFailure
public static final FirebaseRuntimeException.ErrorCode UnsupportedStatusCode
public static final FirebaseRuntimeException.ErrorCode EventStreamListenerAlreadyActive
public static final FirebaseRuntimeException.ErrorCode EventStreamListenerNotActive
public static final FirebaseRuntimeException.ErrorCode EventStreamRequestFailed
public static FirebaseRuntimeException.ErrorCode[] values()
for (FirebaseRuntimeException.ErrorCode c : FirebaseRuntimeException.ErrorCode.values()) System.out.println(c);
public static FirebaseRuntimeException.ErrorCode 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 null