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

org.infinispan.query.dsl.RangeConditionContext Maven / Gradle / Ivy

The newest version!
package org.infinispan.query.dsl;

/**
 * A context for ranges. Allow specifying if the bounds are included or not. They are included by default. This context
 * is considered completed.
 *
 * @author [email protected]
 * @since 6.0
 */
public interface RangeConditionContext extends FilterConditionContext {

   RangeConditionContextQueryBuilder includeLower(boolean includeLower);

   RangeConditionContextQueryBuilder includeUpper(boolean includeUpper);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy