
db.sql.api.cmd.executor.method.havingMethod.IHavingMethods Maven / Gradle / Ivy
package db.sql.api.cmd.executor.method.havingMethod;
import db.sql.api.Getter;
import db.sql.api.cmd.GetterColumnField;
import db.sql.api.cmd.IColumnField;
import db.sql.api.cmd.basic.ICondition;
import db.sql.api.cmd.executor.ISubQuery;
import java.util.function.Function;
public interface IHavingMethods
extends IHavingAndMethod,
IHavingOrMethod,
IHavingSubQueryAndMethod,
IHavingSubQueryOrMethod {
default SELF having(ICondition condition) {
return this.havingAnd(condition);
}
default SELF having(ICondition condition, boolean when) {
return this.havingAnd(condition, when);
}
default SELF having(Getter column, Function f) {
return this.havingAnd(column, f);
}
default SELF having(boolean when, Getter column, Function f) {
return this.havingAnd(when, column, f);
}
default SELF having(Getter column, int storey, Function f) {
return this.havingAnd(column, storey, f);
}
default SELF having(boolean when, Getter column, int storey, Function f) {
return this.havingAnd(when, column, storey, f);
}
default SELF having(Function f, Getter... columns) {
return this.havingAnd(f, columns);
}
default SELF having(boolean when, Function f, Getter... columns) {
return this.havingAnd(when, f, columns);
}
default SELF having(Function f, int storey, Getter... columns) {
return this.havingAnd(f, storey, columns);
}
default SELF having(boolean when, Function f, int storey, Getter... columns) {
return this.havingAnd(when, f, storey, columns);
}
default SELF having(Function f, GetterColumnField... getterColumnFields) {
return this.havingAnd(f, getterColumnFields);
}
default SELF having(boolean when, Function f, GetterColumnField... getterColumnFields) {
return this.havingAnd(when, f, getterColumnFields);
}
default SELF having(ISubQuery subQuery, String columnName, Function f) {
return this.havingAnd(subQuery, columnName, f);
}
default SELF having(ISubQuery subQuery, boolean when, String columnName, Function f) {
return this.havingAnd(subQuery, when, columnName, f);
}
default SELF having(ISubQuery subQuery, Getter column, Function f) {
return this.havingAnd(subQuery, column, f);
}
default SELF having(ISubQuery subQuery, boolean when, Getter column, Function f) {
return this.havingAnd(subQuery, when, column, f);
}
default SELF having(ISubQuery subQuery, Function f, Getter... columns) {
return this.havingAnd(subQuery, f, columns);
}
default SELF having(ISubQuery subQuery, boolean when, Function f, Getter... columns) {
return this.havingAnd(subQuery, when, f, columns);
}
default SELF having(ISubQuery subQuery, Function f, IColumnField... columnFields) {
return this.havingAnd(subQuery, f, columnFields);
}
default SELF havingOr(ISubQuery subQuery, boolean when, Function f, IColumnField... columnFields) {
return this.havingAnd(subQuery, when, f, columnFields);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy