
db.sql.api.cmd.executor.method.groupByMethod.IGroupBySubQueryGetterFunMethod Maven / Gradle / Ivy
package db.sql.api.cmd.executor.method.groupByMethod;
import db.sql.api.Cmd;
import db.sql.api.Getter;
import db.sql.api.cmd.executor.ISubQuery;
import java.util.function.Function;
public interface IGroupBySubQueryGetterFunMethod {
SELF groupByWithFun(ISubQuery subQuery, Getter column, Function f);
default SELF groupByWithFun(boolean when, ISubQuery subQuery, Getter column, Function f) {
if (!when) {
return (SELF) this;
}
return this.groupByWithFun(subQuery, column, f);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy