org.teamapps.pojo.template.SchemaInterface.txt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of universal-db Show documentation
Show all versions of universal-db Show documentation
Ultra fast TeamApps database
package {package};
import org.teamapps.universaldb.schema.*;
public class {type} implements SchemaInfoProvider {
public static Schema create() {
return new {type}().getSchema();
}
public Schema getSchema() {
return Schema.parse(getSchemaDefinition());
}
public String getSchemaDefinition() {
return {schema}
}
}