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

db.sql.api.cmd.struct.IJoin Maven / Gradle / Ivy

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

import db.sql.api.Cmd;
import db.sql.api.cmd.JoinMode;
import db.sql.api.cmd.basic.IDataset;
import db.sql.api.cmd.basic.ITable;
import db.sql.api.cmd.basic.ITableField;
import db.sql.api.cmd.struct.conditionChain.IConditionChain;

public interface IJoin
        , ON extends IOn
        , TABLE extends ITable
        , TABLE_FIELD extends ITableField
        , COLUMN extends Cmd
        , V
        , CONDITION_CHAIN extends IConditionChain
        > extends Cmd {

    IDataset getMainTable();

    IDataset getSecondTable();

    JoinMode getMode();

    ON getOn();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy