org.mentabean.sql.conditions.NotIn 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 NotIn extends In {
public NotIn(Param param) {
super(param);
}
@Override
public String name() {
return "NOT IN";
}
}