
db.sql.api.cmd.executor.method.selectMethod.ISelectMultiGetterMethod Maven / Gradle / Ivy
package db.sql.api.cmd.executor.method.selectMethod;
import db.sql.api.Getter;
public interface ISelectMultiGetterMethod {
default SELF select(Getter... columns) {
return this.select(1, columns);
}
SELF select(int storey, Getter... columns);
default SELF select(boolean when, Getter... columns) {
if (!when) {
return (SELF) this;
}
return this.select(1, columns);
}
default SELF select(boolean when, int storey, Getter... columns) {
if (!when) {
return (SELF) this;
}
return this.select(storey, columns);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy