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

com.skynet.sql.core.NOT Maven / Gradle / Ivy

The newest version!
package com.skynet.sql.core;

public class NOT implements Criteria {

    Criteria inner;

    public NOT(Criteria pInner) {
        inner = pInner;

        if (inner == null){
            inner = new AND();
        }
    }

    @Override
    public String toSql(DBQueryBuilder pDBQueryBuilder) {
        return "( not " + inner.toSql(pDBQueryBuilder)+ ")";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy