Package com.aspose.tasks
Interface ICondition<T>
-
- Type Parameters:
T
- The type of object to apply method interface to.
- All Known Implementing Classes:
And
,AndAllCondition
,Not
public interface ICondition<T>
Represents a condition which can be used by filters or search methods.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
check(T el)
Returns true if the specified object satisfy the conditions.
-
-
-
Method Detail
-
check
boolean check(T el)
Returns true if the specified object satisfy the conditions.
- Parameters:
el
- The object to check.- Returns:
- True if the object satisfy the conditions.
-
-