Class BaseQueryFactory

java.lang.Object
org.infinispan.query.dsl.impl.BaseQueryFactory
All Implemented Interfaces:
QueryFactory

public abstract class BaseQueryFactory extends Object implements QueryFactory
Since:
6.0
Author:
anistor@redhat.com
  • Constructor Details

    • BaseQueryFactory

      public BaseQueryFactory()
  • Method Details

    • having

      public FilterConditionEndContext having(String attributePath)
      Description copied from interface: QueryFactory
      Creates a condition on the given attribute path that is to be completed later by using it as a sub-condition.
      Specified by:
      having in interface QueryFactory
      Parameters:
      attributePath - the attribute path
      Returns:
      the incomplete sub-condition
    • having

      public FilterConditionEndContext having(Expression expression)
      Description copied from interface: QueryFactory
      Creates a condition on the given attribute path that is to be completed later by using it as a sub-condition.
      Specified by:
      having in interface QueryFactory
      Parameters:
      expression - a path Expression
      Returns:
      the incomplete sub-condition
    • not

      Description copied from interface: QueryFactory
      Creates a negated condition that is to be completed later by using it as a sub-condition.
      Specified by:
      not in interface QueryFactory
      Returns:
      the incomplete sub-condition
    • not

      Description copied from interface: QueryFactory
      Creates a negated condition based on a given sub-condition. The negation is grouped.
      Specified by:
      not in interface QueryFactory
      Returns:
      the incomplete sub-condition