cn.icuter.jsql.condition.NotLike 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-06
*/
public class NotLike extends AbstractCondition {
NotLike(String field, Object value) {
super(field, value);
}
@Override
protected Operation assignOp() {
return Operation.NOT_LIKE;
}
}