Interface CaseQuery.IUUIDColumnFilterQuery

Enclosing class:
CaseQuery

public static interface CaseQuery.IUUIDColumnFilterQuery
Since:
11.2
API:
This is a public API.
  • Method Details

    • isEqual

      CaseQuery.FilterLink isEqual(String value)

      Adds a filter condition that selects rows with the given value.

      SQL part: [column] = '[value]' or [column] IS NULL

      The 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

      CaseQuery.FilterLink isIn(String... values)

      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

      CaseQuery.FilterLink isNotIn(String... values)

      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

      CaseQuery.FilterLink isNotIn(List<String> values)

      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.