Package ch.ivyteam.ivy.workflow.query
Interface CaseQuery.IUUIDColumnFilterQuery
- Enclosing class:
CaseQuery
public static interface CaseQuery.IUUIDColumnFilterQuery
- 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.
-
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.
-
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:
- 13.1
- 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:
- 13.1
- 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:
- 13.1
- 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:
- 13.1
- API:
- This public API is available in Java.
-