Interface TaskQuery.IUUIDColumnFilterQuery
- Enclosing class:
TaskQuery
- Since:
- 11.2
- API:
- This is a public API.
-
Method Summary
Modifier and TypeMethodDescriptionAdds a filter condition that selects rows with the givenvalue.Adds a filter condition that selects rows that have values that are in the given list ofvalues.Adds a filter condition that selects rows that have values that are in the given list ofvalues.Adds a filter condition that selects rows that have values that are not in the given list ofvalues.Adds a filter condition that selects rows that have values that are not in the given list ofvalues.Adds a filter condition that selects rows with NOT null.isNull()Adds a filter condition that selects rows with null.
-
Method Details
-
isEqual
Adds a filter condition that selects rows with the given
value.SQL part:
[column] = '[value]'or[column] IS NULLThe operation might be case sensitive or insensitive depending on the database system.
- Parameters:
value-- Returns:
- query for further composition
- Since:
- 11.2
- API:
- This public API is available in Java.
-
isNull
TaskQuery.FilterLink isNull()Adds a filter condition that selects rows with null.
SQL part:
[column] IS NULL- Returns:
- query for further composition
- Since:
- 11.3
- API:
- This public API is available in Java.
-
isNotNull
TaskQuery.FilterLink isNotNull()Adds a filter condition that selects rows with NOT null.
SQL part:
[column] = IS NOT NULL- Returns:
- query for further composition
- Since:
- 11.3
- API:
- This public API is available in Java.
-
isIn
Adds a filter condition that selects rows that have values that are in the given list of
values.SQL part:
[column] IN ([values])- Parameters:
values-- Returns:
- query for further composition
- Since:
- 12.0.5
- API:
- This public API is available in Java.
-
isIn
Adds a filter condition that selects rows that have values that are in the given list of
values.SQL part:
[column] IN ([values])- Parameters:
values-- Returns:
- query for further composition
- Since:
- 12.0.5
- API:
- This public API is available in Java.
-
isNotIn
Adds a filter condition that selects rows that have values that are not in the given list of
values.SQL part:
[column] NOT IN ([values])- Parameters:
values-- Returns:
- query for further composition
- Since:
- 12.0.5
- API:
- This public API is available in Java.
-
isNotIn
Adds a filter condition that selects rows that have values that are not in the given list of
values.SQL part:
[column] NOT IN ([values])- Parameters:
values-- Returns:
- query for further composition
- Since:
- 12.0.5
- API:
- This public API is available in Java.
-