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

cn.icuter.jsql.condition.Null Maven / Gradle / Ivy

The newest version!
package cn.icuter.jsql.condition;

/**
 * @author edward
 * @since 2018-08-09
 */
public class Null extends AbstractCondition {

    Null(String field) {
        super(field, null);
    }

    @Override
    protected Operation assignOp() {
        return Operation.NULL;
    }

    @Override
    public int prepareType() {
        return PrepareType.IGNORE.getType();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy