com.heliorm.def.WithIn Maven / Gradle / Ivy
The newest version!
package com.heliorm.def;
import com.heliorm.OrmException;
import java.util.List;
/**
* @param Object type
* @param Column/field type
* @author gideon
*/
public interface WithIn {
Continuation in(List values) throws OrmException;
Continuation notIn(List value) throws OrmException;
Continuation in(C... values) throws OrmException;
Continuation notIn(C... value) throws OrmException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy