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

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

The newest version!
package com.heliorm.impl;

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

/**
 * @author gideon
 */
public interface WithRangePart< O, C> extends WithRange< O, C> {

    FieldPart getThis() throws OrmException;

    @Override
    Continuation lt(C value) throws OrmException;

    @Override
    Continuation le(C value) throws OrmException;

    @Override
    Continuation gt(C value) throws OrmException;

    @Override
    Continuation ge(C value) throws OrmException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy