Interface UserQuery.IInstantColumnFilterQuery

All Superinterfaces:
UserQuery.IColumnFilterQuery
Enclosing class:
UserQuery

public static interface UserQuery.IInstantColumnFilterQuery extends UserQuery.IColumnFilterQuery
Provides filter functionality for a instant column of IUser
API:
This is a public API.
  • Method Details

    • isGreaterThan

      UserQuery.FilterLink isGreaterThan(Instant 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 Java.
    • isGreaterOrEqualThan

      UserQuery.FilterLink isGreaterOrEqualThan(Instant 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 Java.
    • isLowerThan

      UserQuery.FilterLink isLowerThan(Instant 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 Java.
    • isLowerOrEqualThan

      UserQuery.FilterLink isLowerOrEqualThan(Instant 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 Java.