FeatureFlagDataStore

An underlying store of raw, primitive feature flag values.

Inheritors

Functions

Link copied to clipboard
abstract fun getBoolean(key: String, default: Boolean): Boolean

Get the Boolean value associated with key if present. Otherwise, return default.

Link copied to clipboard
abstract fun getDouble(key: String, default: Double): Double

Get the Double value associated with key if present. Otherwise, return default.

Link copied to clipboard
abstract fun getLong(key: String, default: Long): Long

Get the Long value associated with key if present. Otherwise, return default.

Link copied to clipboard
abstract fun getString(key: String, default: String): String

Get the String value associated with key if present. Otherwise, return default.