Interface SchemaChange

All Known Implementing Classes:
SchemaChange.RemoveProperty, SchemaChange.SetProperty

@Evolving public interface SchemaChange
NamespaceChange class to set the property and value pairs for the namespace.
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static 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 Methods
    Modifier and Type
    Method
    Description
    SchemaChange class to remove a property from the schema.
    setProperty(String property, String value)
    SchemaChange class to set the property and value pairs for the schema.
  • Method Details

    • setProperty

      static SchemaChange setProperty(String property, String value)
      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

      static SchemaChange removeProperty(String property)
      SchemaChange class to remove a property from the schema.
      Parameters:
      property - The property name to remove.
      Returns:
      The SchemaChange object.