@Evolving public interface TagChange
| Modifier and Type | Interface and Description |
|---|---|
static class |
TagChange.RemoveProperty
A tag change to remove a property from the tag.
|
static class |
TagChange.RenameTag
A tag change to rename the tag.
|
static class |
TagChange.SetProperty
A tag change to set the property and value for the tag.
|
static class |
TagChange.UpdateTagComment
A tag change to update the tag comment.
|
| Modifier and Type | Method and Description |
|---|---|
static TagChange |
removeProperty(java.lang.String property)
Creates a new tag change to remove a property from the tag.
|
static TagChange |
rename(java.lang.String newName)
Creates a new tag change to rename the tag.
|
static TagChange |
setProperty(java.lang.String property,
java.lang.String value)
Creates a new tag change to set the property and value for the tag.
|
static TagChange |
updateComment(java.lang.String newComment)
Creates a new tag change to update the tag comment.
|
static TagChange rename(java.lang.String newName)
newName - The new name of the tag.static TagChange updateComment(java.lang.String newComment)
newComment - The new comment for the tag.static TagChange setProperty(java.lang.String property, java.lang.String value)
property - The property name to set.value - The value to set the property to.static TagChange removeProperty(java.lang.String property)
property - The property name to remove.