org.noorm.jdbc.IEnum Maven / Gradle / Ivy
package org.noorm.jdbc;
/**
* @author Ulf Pietruschka / [email protected]
* Date: 30.11.11
* Time: 13:32
*/
public interface IEnum {
/**
* The database name of this Enum. Can either be a table or a view.
* @return the database name
*/
String getTableName();
/**
* The name of the database column used to give the particular enum its display name.
* @return the database name
*/
String getDisplayColumnName();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy