KeysAndValues

public class KeysAndValues extends Object

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

Nested Class Summary

class KeysAndValues.Builder Builder class for KeysAndValues using which values will be assigned to private variables. 

Public Method Summary

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.

Inherited Method Summary

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.