liquibase.structure.core.Relation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-core Show documentation
Show all versions of liquibase-core Show documentation
Liquibase is a tool for managing and executing database changes.
package liquibase.structure.core;
import liquibase.structure.AbstractDatabaseObject;
import liquibase.structure.DatabaseObject;
import liquibase.util.StringUtil;
import java.util.ArrayList;
import java.util.List;
/**
* A container of columns. Usually a table or view.
*/
public abstract class Relation extends AbstractDatabaseObject {
private String name;
protected Relation() {
setAttribute("columns", new ArrayList());
setAttribute("uniqueConstraints", new ArrayList());
setAttribute("indexes", new ArrayList());
}
@Override
public String getName() {
return name;
}
@Override
public Relation setName(String name) {
setAttribute("name", name);
this.name = name;
return this;
}
public List getIndexes() {
return getAttribute("indexes", List.class);
}
public List getUniqueConstraints() {
return getAttribute("uniqueConstraints", List.class);
}
@Override
public DatabaseObject[] getContainingObjects() {
return new DatabaseObject[]{
getSchema()
};
}
public String getRemarks() {
return getAttribute("remarks", String.class);
}
public Relation setRemarks(String remarks) {
setAttribute("remarks", remarks);
return this;
}
public List getColumns() {
return getAttribute("columns", List.class);
}
public Relation addColumn(Column column) {
this.getColumns().add(column);
return this;
}
/**
* Returns the column object for the given columnName. If the column does not exist in this table,
* return null.
*/
public Column getColumn(String columnName) {
for (Column column : getColumns()) {
if (column.getName().equalsIgnoreCase(columnName)) {
return column;
}
}
return null;
}
/**
* @return Returns the schema.
*/
@Override
public Schema getSchema() {
return getAttribute("schema", Schema.class);
}
/**
* @param schema The schema to set.
*/
public Relation setSchema(Schema schema) {
setAttribute("schema", schema);
return this;
}
public Relation setSchema(String catalog, String schema) {
return setSchema(new Schema(catalog, schema));
}
public int compareTo(Object o) {
Relation that = (Relation) o;
int returnValue = 0;
if ((this.getSchema() != null) && (that.getSchema() != null)) {
returnValue = this.getSchema().compareTo(that.getSchema());
}
if (returnValue == 0) {
returnValue = this.getName().compareToIgnoreCase(((Relation) o).getName());
}
return returnValue;
}
}