org.dbtools.schema.schemafile.SchemaEntity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dbtools-gen Show documentation
Show all versions of dbtools-gen Show documentation
DBTools ORM Class Generator.
package org.dbtools.schema.schemafile;
import java.util.List;
public abstract class SchemaEntity {
public abstract SchemaEntityType getType();
public abstract String getName();
public abstract String getClassName();
public abstract boolean isEnumerationTable();
public abstract boolean isReadonly();
public abstract List extends SchemaField> getFields();
}