org.infinispan.query.dsl.RangeConditionContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infinispan-embedded-query
Show all versions of infinispan-embedded-query
Infinispan Embedded Query All-in-One module
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