All Downloads are FREE. Search and download functionalities are using the official Maven repository.

db.sql.api.cmd.executor.method.groupByMethod.IGroupByGetterMethod Maven / Gradle / Ivy

package db.sql.api.cmd.executor.method.groupByMethod;


import db.sql.api.Getter;

public interface IGroupByGetterMethod {

    default  SELF groupBy(Getter column) {
        return this.groupBy(column, 1);
    }

     SELF groupBy(Getter column, int storey);

    default  SELF groupBy(boolean when, Getter column) {
        if (!when) {
            return (SELF) this;
        }
        return this.groupBy(column, 1);
    }

    default  SELF groupBy(boolean when, Getter column, int storey) {
        if (!when) {
            return (SELF) this;
        }
        return this.groupBy(column, storey);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy