All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mentabean.sql.conditions.NotIn Maven / Gradle / Ivy

There is a newer version: 2.2.4
Show newest version
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";
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy