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

db.sql.api.cmd.executor.method.selectMethod.ISelectGetterMethod Maven / Gradle / Ivy

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


import db.sql.api.Getter;

public interface ISelectGetterMethod {

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

     SELF select(Getter column, int storey);

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy