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