org.mentabean.sql.conditions.NotLike Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of menta-bean Show documentation
Show all versions of menta-bean Show documentation
An query helper and simple CRUD ORM.
package org.mentabean.sql.conditions;
import org.mentabean.sql.param.Param;
public class NotLike extends SimpleComparison {
public NotLike(Param param) {
super(param);
}
public NotLike(Object value) {
super(value);
}
@Override
public String comparisonSignal() {
return "NOT LIKE";
}
}