| java.lang.Object | |
| ↳ | com.google.firebase.remoteconfig.ParameterValue |
Known Direct Subclasses
|
Represents a Remote Config parameter value that can be used in a Template.
| Nested Classes | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| class | ParameterValue.Explicit | Represents an explicit Remote Config parameter value with a value that the parameter is set to. | |||||||||
| class | ParameterValue.InAppDefault | Represents an in app default parameter value. | |||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| ParameterValue() | |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| static ParameterValue.InAppDefault |
inAppDefault()
Creates a new
ParameterValue.InAppDefault instance. | ||||||||||
| static ParameterValue.Explicit |
of(String value)
Creates a new
ParameterValue.Explicit instance with the given value. | ||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
Creates a new ParameterValue.InAppDefault instance.
ParameterValue.InAppDefault instance.
Creates a new ParameterValue.Explicit instance with the given value.
| value | The value of the ParameterValue.Explicit. |
|---|
ParameterValue.Explicit instance.