org.mentabean.sql.conditions.NotEquals 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 NotEquals extends Equals {
public NotEquals(Param param) {
super(param);
}
public NotEquals(Object param) {
super(param);
}
@Override
public String build() {
if (param == null)
return "IS NOT NULL";
return "<> "+param.paramInQuery();
}
}