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

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

package db.sql.api.cmd.struct;

import db.sql.api.Cmd;
import db.sql.api.cmd.JoinMode;

public interface IJoin extends Cmd {

    TABLE getMainTable();

    TABLE getSecondTable();

    JoinMode getMode();

    ON getOn();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy