Package ch.ivyteam.ivy.security.query
Interface UserQuery.IInstantColumnFilterQuery
- All Superinterfaces:
UserQuery.IColumnFilterQuery
- Enclosing class:
UserQuery
Provides filter functionality for a instant column of
IUser- API:
- This is a public API.
-
Method Summary
Modifier and TypeMethodDescriptionisGreaterOrEqualThan(Instant value) Adds a filter condition that selects rows that have values that are greater or equal than the givenvalue.isGreaterThan(Instant value) Adds a filter condition that selects rows that have values that are greater than the givenvalue.isLowerOrEqualThan(Instant value) Adds a filter condition that selects rows that have values that are lower or equal than the givenvalue.isLowerThan(Instant value) Adds a filter condition that selects rows that have values that are lower than the givenvalue.Methods inherited from interface ch.ivyteam.ivy.security.query.UserQuery.IColumnFilterQuery
isNotNull, isNull
-
Method Details
-
isGreaterThan
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 Java.
-
isGreaterOrEqualThan
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 Java.
-
isLowerThan
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 Java.
-
isLowerOrEqualThan
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 Java.
-