Class TagChange.SetProperty

java.lang.Object
org.apache.gravitino.tag.TagChange.SetProperty
All Implemented Interfaces:
TagChange
Enclosing interface:
TagChange

public static final class TagChange.SetProperty extends Object implements TagChange
A tag change to set the property and value for the tag.
  • Method Details

    • getProperty

      public String getProperty()
      Get the property name to set.
      Returns:
      The property name to set.
    • getValue

      public String getValue()
      Get the value to set the property to.
      Returns:
      The value to set the property to.
    • equals

      public boolean equals(Object o)
      Compare the SetProperty instance with another object for equality. Two instances are considered equal if they designate the same property and value.
      Overrides:
      equals in class Object
      Parameters:
      o - The object to compare with this instance.
      Returns:
      True if the object is equal to this instance, false otherwise.
    • hashCode

      public int hashCode()
      Generates a hash code for the SetProperty instance.
      Overrides:
      hashCode in class Object
      Returns:
      The hash code for the SetProperty instance.
    • toString

      public String toString()
      Get the string representation of the SetProperty instance.
      Overrides:
      toString in class Object
      Returns:
      The string representation of the SetProperty instance.