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

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

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


import db.sql.api.Getter;
import db.sql.api.cmd.executor.ISubQuery;

public interface ISelectSubQueryMultiGetterMethod {

     SELF select(ISubQuery subQuery, Getter... columns);

    default  SELF select(boolean when, ISubQuery subQuery, Getter... columns) {
        if (!when) {
            return (SELF) this;
        }
        return this.select(subQuery, columns);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy