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

com.heliorm.def.WithRange Maven / Gradle / Ivy

The newest version!
package com.heliorm.def;

import com.heliorm.OrmException;

/**
 * @param  Object type
 * @param  Column/field type
 * @author gideon
 */
public interface WithRange {

    Continuation lt(C value) throws OrmException;

    Continuation le(C value) throws OrmException;

    Continuation gt(C value) throws OrmException;

    Continuation ge(C value) throws OrmException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy