- All Known Subinterfaces:
MediaConditionFactory
- All Known Implementing Classes:
SupportsConditionFactory
public interface BooleanConditionFactory
Factory interface for boolean conditions.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionCreate a boolean condition of theandtype.Create a boolean condition of thenottype.Create a boolean condition of the given type (and,or,not).createPredicate(String name) Create a predicate (operand) condition.
-
Method Details
-
createAndCondition
BooleanCondition createAndCondition()Create a boolean condition of theandtype.- 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 thenottype.- Returns:
- the condition.
-
createPredicate
Create a predicate (operand) condition.- Parameters:
name- the name of the property or feature involved in the predicate.- Returns:
- the condition.
-