public interface

RemoteSettings

com.appbrain.RemoteSettings

Class Overview

ServerValues is a collection of values that can be sent back by AppBrain's servers to your Android app.

Summary

Public Methods
abstract String get(String key)
Return a value that was fetched from the server, if present.
abstract String get(String key, String defaultValue)
Return a value that was fetched from the server, or a default value if none was present.

Public Methods

public abstract String get (String key)

Return a value that was fetched from the server, if present.

Parameters
key The name of the value.
Returns
  • The value that was set on the server, or null if there was none.

public abstract String get (String key, String defaultValue)

Return a value that was fetched from the server, or a default value if none was present.

Parameters
key The name of the value.
Returns
  • The value that was set on the server, or the default value if there was none.