Package org.apache.gravitino
Class CatalogChange.RemoveProperty
java.lang.Object
org.apache.gravitino.CatalogChange.RemoveProperty
- All Implemented Interfaces:
CatalogChange
- Enclosing interface:
- CatalogChange
A catalog change to remove a property from the catalog.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.gravitino.CatalogChange
CatalogChange.RemoveProperty, CatalogChange.RenameCatalog, CatalogChange.SetProperty, CatalogChange.UpdateCatalogComment
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Compares this RemoveProperty instance with another object for equality.Retrieves the name of the property to be removed from the catalog.int
hashCode()
Generates a hash code for this RemoveProperty instance.toString()
Provides a string representation of the RemoveProperty instance.
-
Method Details
-
getProperty
Retrieves the name of the property to be removed from the catalog.- Returns:
- The name of the property for removal.
-
equals
Compares this RemoveProperty instance with another object for equality. Two instances are considered equal if they target the same property for removal from the catalog. -
hashCode
public int hashCode()Generates a hash code for this RemoveProperty instance. The hash code is based on the property name that is to be removed from the catalog. -
toString
Provides a string representation of the RemoveProperty instance. This string format includes the class name followed by the property name to be removed.
-