java.lang.Object | |
↳ | com.urbanairship.push.TagGroupsEditor |
Interface used for modifying tag groups.
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
protected final Map<String, Set<String>> | tagsToAdd | ||||||||||
protected final Map<String, Set<String>> | tagsToRemove |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
TagGroupsEditor |
addTag(String tagGroup, String tag)
Add a tag to the tag group.
| ||||||||||
TagGroupsEditor |
addTags(String tagGroup, Set<String> tags)
Add a set of tags to the tag group.
| ||||||||||
void |
apply()
Apply the tag group changes.
| ||||||||||
TagGroupsEditor |
removeTag(String tagGroup, String tag)
Remove a tag from the tag group.
| ||||||||||
TagGroupsEditor |
removeTags(String tagGroup, Set<String> tags)
Remove a set of tags from the tag group.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Add a tag to the tag group.
tagGroup | The tag group string. |
---|---|
tag | The tag string. |
Add a set of tags to the tag group.
tagGroup | The tag group string. |
---|---|
tags | The tags set. |
Apply the tag group changes.
Remove a tag from the tag group.
tagGroup | The tag group string. |
---|---|
tag | The tag string. |
Remove a set of tags from the tag group.
tagGroup | The tag group string. |
---|---|
tags | The tags set. |