| java.lang.Object | |
| ↳ | com.google.firebase.remoteconfig.ParameterGroup |
Represents a Remote Config parameter group that can be included in a Template.
Grouping parameters is only for management purposes and does not affect client-side
fetching of parameter values.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|
ParameterGroup()
Creates a new
ParameterGroup. | |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| boolean | equals(Object o) | ||||||||||
| String |
getDescription()
Gets the description of the parameter group.
| ||||||||||
| Map<String, Parameter> |
getParameters()
Gets the map of parameters that belong to this group.
| ||||||||||
| int | hashCode() | ||||||||||
| ParameterGroup |
setDescription(String description)
Sets the description of the parameter group.
| ||||||||||
| ParameterGroup |
setParameters(Map<String, Parameter> parameters)
Sets the map of parameters that belong to this group.
| ||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
Gets the description of the parameter group.
Gets the map of parameters that belong to this group.
Sets the description of the parameter group. Should not be over 256 characters and may contain any Unicode characters.
| description | The description of the parameter group. |
|---|
ParameterGroup.
Sets the map of parameters that belong to this group.
A parameter only appears once per Remote Config template. An ungrouped parameter appears at the top level, whereas a parameter organized within a group appears within its group's map of parameters.
| parameters | A non-null map of parameter keys to their optional default values and optional conditional values. |
|---|
ParameterGroup instance.