![JAR search and dependency download from the Maven repository](/logo.png)
de.ec.sql.Table Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sqlbuilder Show documentation
Show all versions of sqlbuilder Show documentation
Java builder to create SQL statements
package de.ec.sql;
import java.util.function.Supplier;
@FunctionalInterface
public interface Table extends Supplier {
default String tableName() {
return get();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy