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

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

There is a newer version: 1.7.6-RC2
Show newest version
package db.sql.api.cmd.executor.method.selectMethod;


import db.sql.api.Cmd;

import java.util.List;

public interface ISelectCmdMethod {

    SELF select(COLUMN column);

    default SELF select(COLUMN... columns) {
        for (COLUMN column : columns) {
            this.select(column);
        }
        return (SELF) this;
    }


    default SELF select(List columns) {
        for (COLUMN column : columns) {
            this.select(column);
        }
        return (SELF) this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy