public final enum

RemoteConfigErrorCode

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.google.firebase.remoteconfig.RemoteConfigErrorCode

Class Overview

Error codes that can be raised by the Remote Config APIs.

Summary

Enum Values
RemoteConfigErrorCode  ALREADY_EXISTS  The resource that a client tried to create already exists. 
RemoteConfigErrorCode  FAILED_PRECONDITION  Request cannot be executed in the current system state, such as deleting a non-empty directory. 
RemoteConfigErrorCode  INTERNAL  Internal server error. 
RemoteConfigErrorCode  INVALID_ARGUMENT  One or more arguments specified in the request were invalid. 
RemoteConfigErrorCode  UNAUTHENTICATED  User is not authenticated. 
RemoteConfigErrorCode  VALIDATION_ERROR  Failed to validate Remote Config data. 
RemoteConfigErrorCode  VERSION_MISMATCH  The current version specified in an update request did not match the actual version in the database. 
Public Methods
static RemoteConfigErrorCode valueOf(String name)
final static RemoteConfigErrorCode[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final RemoteConfigErrorCode ALREADY_EXISTS

The resource that a client tried to create already exists.

public static final RemoteConfigErrorCode FAILED_PRECONDITION

Request cannot be executed in the current system state, such as deleting a non-empty directory.

public static final RemoteConfigErrorCode INTERNAL

Internal server error.

public static final RemoteConfigErrorCode INVALID_ARGUMENT

One or more arguments specified in the request were invalid.

public static final RemoteConfigErrorCode UNAUTHENTICATED

User is not authenticated.

public static final RemoteConfigErrorCode VALIDATION_ERROR

Failed to validate Remote Config data.

public static final RemoteConfigErrorCode VERSION_MISMATCH

The current version specified in an update request did not match the actual version in the database.

Public Methods

public static RemoteConfigErrorCode valueOf (String name)

public static final RemoteConfigErrorCode[] values ()