de.ec.sql.QueryPart 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;
public interface QueryPart {
default String string() {
return string(QueryOptions.DEFAULT_OPTIONS);
}
String string(QueryOptions options);
}