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

db.sql.api.cmd.executor.method.condition.IExistsMethod Maven / Gradle / Ivy

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


import db.sql.api.cmd.executor.IQuery;

public interface IExistsMethod {

    default RV exists(IQuery query) {
        return this.exists(true, query);
    }

    RV exists(boolean when, IQuery query);

    default RV notExists(IQuery query) {
        return this.notExists(true, query);
    }

    RV notExists(boolean when, IQuery query);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy