public class

KeysAndValues

extends Object
java.lang.Object
   ↳ com.google.firebase.remoteconfig.KeysAndValues

Class Overview

Represents data stored in context passed to server-side Remote Config.

Summary

Nested Classes
class KeysAndValues.Builder Builder class for KeysAndValues using which values will be assigned to private variables. 
Public Methods
boolean containsKey(String key)
Checks whether a key is present in the context.
String get(String key)
Gets the value of the data stored in context.
[Expand]
Inherited Methods
From class java.lang.Object

Public Methods

public boolean containsKey (String key)

Checks whether a key is present in the context.

Parameters
key The key for data stored in context.
Returns
  • Boolean representing whether the key passed is present in context.

public String get (String key)

Gets the value of the data stored in context.

Parameters
key The key for data stored in context.
Returns
  • Value assigned to the key in context.