All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dbtools.schema.schemafile.SchemaEntity Maven / Gradle / Ivy

There is a newer version: 11.0.0
Show newest version
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 getFields();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy