de.ec.sql.Condition 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 class Condition extends Conditionable implements QueryPart {
@Override
public String string(final QueryOptions options) {
return "(" + super.string(options) + ")";
}
}