Package org.apache.gravitino
Interface SchemaChange
- All Known Implementing Classes:
SchemaChange.RemoveProperty
,SchemaChange.SetProperty
NamespaceChange class to set the property and value pairs for the namespace.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
SchemaChange class to remove a property from the schema.static final class
SchemaChange class to set the property and value pairs for the schema. -
Method Summary
Static MethodsModifier and TypeMethodDescriptionstatic SchemaChange
removeProperty
(String property) SchemaChange class to remove a property from the schema.static SchemaChange
setProperty
(String property, String value) SchemaChange class to set the property and value pairs for the schema.
-
Method Details
-
setProperty
SchemaChange class to set the property and value pairs for the schema.- Parameters:
property
- The property name to set.value
- The value to set the property to.- Returns:
- The SchemaChange object.
-
removeProperty
SchemaChange class to remove a property from the schema.- Parameters:
property
- The property name to remove.- Returns:
- The SchemaChange object.
-