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