db.sql.api.cmd.executor.method.condition.INotInMethod Maven / Gradle / Ivy
package db.sql.api.cmd.executor.method.condition;
import db.sql.api.cmd.executor.IQuery;
import db.sql.api.cmd.executor.method.condition.compare.INotInGetterCompare;
import java.io.Serializable;
import java.util.Collection;
public interface INotInMethod extends INotInGetterCompare {
RV notIn(COLUMN column, IQuery query);
RV notIn(COLUMN column, Serializable... values);
RV notIn(COLUMN column, Collection extends Serializable> values);
}