
jodd.db.oom.ColumnData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jodd-db Show documentation
Show all versions of jodd-db Show documentation
Jodd DB is efficient and thin database facade; DbOom is convenient database object mapper.
// Copyright (c) 2003-2012, Jodd Team (jodd.org). All Rights Reserved.
package jodd.db.oom;
/**
* Column data.
*/
public class ColumnData {
private final String tableName;
private final String columnName;
public ColumnData(String tableName) {
this.tableName = tableName;
this.columnName = null;
}
public ColumnData(String tableName, String columnName) {
this.tableName = tableName;
this.columnName = columnName;
}
/**
* Returns table name for this column.
*/
public String getTableName() {
return tableName;
}
/**
* Returns column name for this column.
*/
public String getColumnName() {
return columnName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy