All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.scalar.db.sql.metadata.IndexMetadata Maven / Gradle / Ivy

There is a newer version: 3.14.0
Show newest version
package com.scalar.db.sql.metadata;

/** Metadata for a index. */
public interface IndexMetadata {

  /**
   * Returns the namespace name of the table.
   *
   * @return the namespace name of the table
   */
  String getNamespaceName();

  /**
   * Returns the table name of the index.
   *
   * @return the table name of the index
   */
  String getTableName();

  /**
   * Returns the column name of the index.
   *
   * @return the column name of the index
   */
  String getColumnName();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy