Package ch.ivyteam.ivy.workflow.query
Interface TaskQuery.IIntegerColumnFilterQuery
-
- All Superinterfaces:
TaskQuery.IColumnFilterQuery,TaskQuery.IPatternColumnFilterQuery
- Enclosing class:
- TaskQuery
public static interface TaskQuery.IIntegerColumnFilterQuery extends TaskQuery.IPatternColumnFilterQuery
Provides filter functionality for an integer column ofITask- API:
- This is a public API.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TaskQuery.FilterLinkisEqual(long value)Adds a filter condition that selects rows with the givenvalue.TaskQuery.FilterLinkisGreaterOrEqualThan(long value)Adds a filter condition that selects rows that have values that are greater or equal than the givenvalue.TaskQuery.FilterLinkisGreaterThan(long value)Adds a filter condition that selects rows that have values that are greater than the givenvalue.TaskQuery.FilterLinkisLowerOrEqualThan(long value)Adds a filter condition that selects rows that have values that are lower or equal than the givenvalue.TaskQuery.FilterLinkisLowerThan(long value)Adds a filter condition that selects rows that have values that are lower than the givenvalue.TaskQuery.FilterLinkisNotEqual(long 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
-
Methods inherited from interface ch.ivyteam.ivy.workflow.query.TaskQuery.IPatternColumnFilterQuery
isLike, isLikeIgnoreCase, isNotLike, isNotLikeIgnoreCase
-
-
-
-
Method Detail
-
isEqual
TaskQuery.FilterLink isEqual(long value)
Adds a filter condition that selects rows with the given
value.SQL part:
[column] = [value]- 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(long value)
Adds a filter condition that selects rows that do not have the given
value.SQL part:
[column] <> [value]- 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(long 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
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
isGreaterOrEqualThan
TaskQuery.FilterLink isGreaterOrEqualThan(long 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
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
isLowerThan
TaskQuery.FilterLink isLowerThan(long 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
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
isLowerOrEqualThan
TaskQuery.FilterLink isLowerOrEqualThan(long 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
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
-