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

com.heliorm.impl.WithInPart Maven / Gradle / Ivy

The newest version!
package com.heliorm.impl;

import com.heliorm.OrmException;
import com.heliorm.def.Continuation;
import com.heliorm.def.WithIn;

import java.util.List;

/**
 * @author gideon
 */
public interface WithInPart extends WithIn {

    FieldPart getThis() throws OrmException;

    @Override
    Continuation in(List values) throws OrmException;

    @Override
    Continuation notIn(List values) throws OrmException;

    @Override
    Continuation in(C... values) throws OrmException;

    @Override
    Continuation notIn(C... values) throws OrmException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy