cn.icuter.jsql.condition.Null Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsql Show documentation
Show all versions of jsql Show documentation
JDBC framework for writing sql like java programing
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();
}
}