Package com.aspose.tasks
Interface ICondition<T>
-
- All Known Implementing Classes:
And,AndAllCondition,Not
public interface ICondition<T>Represents a condition which can be used by filters or search methods.
T: The type of object to apply method interface to.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancheck(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.
-
-