FirebaseRemoteConfigException.Code

public enum FirebaseRemoteConfigException.Code


Summary

Enum Values

CONFIG_UPDATE_MESSAGE_INVALID

A config update stream message from the real-time RC backend is unparsable.

CONFIG_UPDATE_NOT_FETCHED

Unable to fetch the latest config.

CONFIG_UPDATE_STREAM_ERROR

Unable to make a connection to the real-time RC backend.

CONFIG_UPDATE_UNAVAILABLE

The real-time RC backend is unavailable.

UNKNOWN

Unknown code value.

Public methods

int
static FirebaseRemoteConfigException.Code

Returns the enum constant of this type with the specified name.

static FirebaseRemoteConfigException.Code[]

Returns an array containing the constants of this enum type, in the order they're declared.

Enum Values

CONFIG_UPDATE_MESSAGE_INVALID

FirebaseRemoteConfigException.Code FirebaseRemoteConfigException.Code.CONFIG_UPDATE_MESSAGE_INVALID

A config update stream message from the real-time RC backend is unparsable.

CONFIG_UPDATE_NOT_FETCHED

FirebaseRemoteConfigException.Code FirebaseRemoteConfigException.Code.CONFIG_UPDATE_NOT_FETCHED

Unable to fetch the latest config.

CONFIG_UPDATE_STREAM_ERROR

FirebaseRemoteConfigException.Code FirebaseRemoteConfigException.Code.CONFIG_UPDATE_STREAM_ERROR

Unable to make a connection to the real-time RC backend.

CONFIG_UPDATE_UNAVAILABLE

FirebaseRemoteConfigException.Code FirebaseRemoteConfigException.Code.CONFIG_UPDATE_UNAVAILABLE

The real-time RC backend is unavailable.

Public methods

value

public int value()

valueOf

public static FirebaseRemoteConfigException.Code valueOf(String name)

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Returns
FirebaseRemoteConfigException.Code

the enum constant with the specified name

Throws
java.lang.IllegalArgumentException java.lang.IllegalArgumentException

if this enum type has no constant with the specified name

values

public static FirebaseRemoteConfigException.Code[] values()

Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.

Returns
FirebaseRemoteConfigException.Code[]

an array containing the constants of this enum type, in the order they're declared