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

studio.raptor.sqlparser.fast.table.Table Maven / Gradle / Ivy

There is a newer version: 3.0.3
Show newest version
package studio.raptor.sqlparser.fast.table;

/**
 * This is the base class for most tables.
 * A table contains a list of columns and a list of rows.
 */
public class Table {

  private String tableName;
  private String schema;
  private String alias;

  public Table(String name, String alias, String schema) {
    this.tableName = name;
    this.schema = schema;
    this.alias = alias;
  }

  public String getAlias() {
    return alias;
  }

  public void setAlias(String alias) {
    this.alias = alias;
  }

  public String getTableName() {
    return tableName;
  }

  public String getSchema() {
    return schema;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy