Interface BooleanConditionFactory

All Known Subinterfaces:
MediaQueryFactory, SupportsConditionFactory
All Known Implementing Classes:
SupportsConditionFactory

public interface BooleanConditionFactory
Factory interface for boolean conditions.
See Also:
  • Method Details

    • createAndCondition

      BooleanCondition createAndCondition()
      Create a boolean condition of the and type.
      Returns:
      the condition.
    • createOrCondition

      BooleanCondition createOrCondition()
      Create a boolean condition of the given type (and, or, not).
      Returns:
      the condition.
    • createNotCondition

      BooleanCondition createNotCondition()
      Create a boolean condition of the not type.
      Returns:
      the condition.
    • createPredicate

      BooleanCondition createPredicate(String name)
      Create a predicate (operand) condition.
      Parameters:
      name - the name of the property or feature involved in the predicate.
      Returns:
      the condition.