FirebaseRemoteConfigException.Code

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 functions

Int
java-static FirebaseRemoteConfigException.Code!
valueOf(name: String!)

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

java-static Array<FirebaseRemoteConfigException.Code!>!

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

Enum Values

CONFIG_UPDATE_MESSAGE_INVALID

val FirebaseRemoteConfigException.Code.CONFIG_UPDATE_MESSAGE_INVALIDFirebaseRemoteConfigException.Code

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

CONFIG_UPDATE_NOT_FETCHED

val FirebaseRemoteConfigException.Code.CONFIG_UPDATE_NOT_FETCHEDFirebaseRemoteConfigException.Code

Unable to fetch the latest config.

CONFIG_UPDATE_STREAM_ERROR

val FirebaseRemoteConfigException.Code.CONFIG_UPDATE_STREAM_ERRORFirebaseRemoteConfigException.Code

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

CONFIG_UPDATE_UNAVAILABLE

val FirebaseRemoteConfigException.Code.CONFIG_UPDATE_UNAVAILABLEFirebaseRemoteConfigException.Code

The real-time RC backend is unavailable.

Public functions

value

fun value(): Int

valueOf

java-static fun valueOf(name: String!): FirebaseRemoteConfigException.Code!

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

java-static fun values(): Array<FirebaseRemoteConfigException.Code!>!

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
Array<FirebaseRemoteConfigException.Code!>!

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