![JAR search and dependency download from the Maven repository](/logo.png)
studio.raptor.sqlparser.fast.table.Table Maven / Gradle / Ivy
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