Uses of Interface
com.aspose.tasks.ICondition
-
-
Uses of ICondition in com.aspose.tasks
Classes in com.aspose.tasks that implement ICondition Modifier and Type Class Description class
And<T>
Applies logical AND to the specified conditions.class
AndAllCondition<T>
Applies logical AND to all conditions.class
Not<T>
Applies logical NOT to the specified condition.Methods in com.aspose.tasks that return ICondition Modifier and Type Method Description ICondition<Task>
SaveOptions. getTasksFilter()
Gets the condition which is used to filter tasks rendered on Gantt, Task Sheet and Task Usage charts.Methods in com.aspose.tasks with parameters of type ICondition Modifier and Type Method Description static List
ArrayUtils. filter(List array, ICondition cond)
Filter ArrayList elements by specified condition.static <T> List<T>
ListUtils. filter(List<T> list, ICondition<T> cond)
Filter list elements by specified condition.static Task
TaskUtils. filter(Task root, ICondition<Task> cond)
Builds new tree of tasks which satisfy the condition.static Object
ArrayUtils. find(List array, ICondition cond)
Find first occurrence of an ArrayList element which satisfy specified condition.static <T> T
ListUtils. find(List<T> list, ICondition<T> cond, Class clazz)
Find first occurrence of an list element which satisfy specified condition.static Task
TaskUtils. find(Task root, ICondition<Task> cond)
Finds a task which satisfy the condition in a tree of tasks.void
SaveOptions. setTasksFilter(ICondition<Task> value)
Sets the condition which is used to filter tasks rendered on Gantt, Task Sheet and Task Usage charts.Constructors in com.aspose.tasks with parameters of type ICondition Constructor Description And(ICondition<T> cond1, ICondition<T> cond2)
Initializes a new instance of theAnd{T}
class.Not(ICondition<T> condition)
Initializes a new instance of theNot{T}
class.Constructor parameters in com.aspose.tasks with type arguments of type ICondition Constructor Description AndAllCondition(List<ICondition<T>> conditions)
Initializes a new instance of theAndAllCondition{T}
class.
-