org.infinispan.query.dsl.RangeConditionContext Maven / Gradle / Ivy
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 {
RangeConditionContext includeLower(boolean includeLower);
RangeConditionContext includeUpper(boolean includeUpper);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy