Interface TaskQuery.IDateColumnFilterQuery
-
- All Superinterfaces:
TaskQuery.IColumnFilterQuery
- Enclosing class:
- TaskQuery
public static interface TaskQuery.IDateColumnFilterQuery extends TaskQuery.IColumnFilterQuery
Provides filter functionality for a date column ofITask- API:
- This is a public API.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TaskQuery.FilterLinkisEqual(Date value)Adds a filter condition that selects rows with the givenvalue.TaskQuery.FilterLinkisGreaterOrEqualThan(Date value)Adds a filter condition that selects rows that have values that are greater or equal than the givenvalue.TaskQuery.FilterLinkisGreaterThan(Date value)Adds a filter condition that selects rows that have values that are greater than the givenvalue.TaskQuery.FilterLinkisLowerOrEqualThan(Date value)Adds a filter condition that selects rows that have values that are lower or equal than the givenvalue.TaskQuery.FilterLinkisLowerThan(Date value)Adds a filter condition that selects rows that have values that are lower than the givenvalue.TaskQuery.FilterLinkisNotEqual(Date value)Adds a filter condition that selects rows that do not have the givenvalue.-
Methods inherited from interface ch.ivyteam.ivy.workflow.query.TaskQuery.IColumnFilterQuery
isNotNull, isNull
-
-
-
-
Method Detail
-
isEqual
TaskQuery.FilterLink isEqual(Date value)
Adds a filter condition that selects rows with the given
value.SQL part:
[column] = [value]or[column] IS NULL- Parameters:
value-- Returns:
- query for further composition
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
isNotEqual
TaskQuery.FilterLink isNotEqual(Date value)
Adds a filter condition that selects rows that do not have the given
value.SQL part:
[column] <> [value]or[column] IS NOT NULL- Parameters:
value-- Returns:
- query for further composition
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
isGreaterThan
TaskQuery.FilterLink isGreaterThan(Date value)
Adds a filter condition that selects rows that have values that are greater than the given
value.SQL part:
[column] > [value]- Parameters:
value-- Returns:
- query for further composition
- Throws:
IllegalArgumentException- If the given value is null- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
isGreaterOrEqualThan
TaskQuery.FilterLink isGreaterOrEqualThan(Date value)
Adds a filter condition that selects rows that have values that are greater or equal than the given
value.SQL part:
[column] >= [value]- Parameters:
value-- Returns:
- query for further composition
- Throws:
IllegalArgumentException- If the given value is null- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
isLowerThan
TaskQuery.FilterLink isLowerThan(Date value)
Adds a filter condition that selects rows that have values that are lower than the given
value.SQL part:
[column] < [value]- Parameters:
value-- Returns:
- query for further composition
- Throws:
IllegalArgumentException- If the given value is null- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
isLowerOrEqualThan
TaskQuery.FilterLink isLowerOrEqualThan(Date value)
Adds a filter condition that selects rows that have values that are lower or equal than the given
value.SQL part:
[column] <= [value]- Parameters:
value-- Returns:
- query for further composition
- Throws:
IllegalArgumentException- If the given value is null- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
-