@Evolving public interface ModelVersionChange
Modifier and Type | Interface and Description |
---|---|
static class |
ModelVersionChange.RemoveProperty
A ModelVersionChange to remove a property from a model version.
|
static class |
ModelVersionChange.SetProperty
A ModelVersionChange to set a property of a model version.
|
static class |
ModelVersionChange.UpdateComment
A ModelVersionChange to update the model version comment.
|
static class |
ModelVersionChange.UpdateUri
A ModelVersionChange to update the uri of a model version.
|
Modifier and Type | Method and Description |
---|---|
static ModelVersionChange |
removeProperty(java.lang.String property)
Create a ModelVersionChange for removing a property from a model version.
|
static ModelVersionChange |
setProperty(java.lang.String property,
java.lang.String value)
Create a ModelVersionChange for setting a property of a model version.
|
static ModelVersionChange |
updateComment(java.lang.String newComment)
Create a ModelVersionChange for updating the comment of a model version.
|
static ModelVersionChange |
updateUri(java.lang.String newUri)
Create a ModelVersionChange for updating the uri of a model version.
|
static ModelVersionChange updateComment(java.lang.String newComment)
newComment
- new comment to be set for the model versionstatic ModelVersionChange setProperty(java.lang.String property, java.lang.String value)
property
- name of the property to be setvalue
- value to be set for the propertystatic ModelVersionChange removeProperty(java.lang.String property)
property
- The name of the property to be removed.static ModelVersionChange updateUri(java.lang.String newUri)
newUri
- The new uri to be set for the model version.