Interface UserQuery.IBoolFilterQuery

Enclosing class:
UserQuery

public static interface UserQuery.IBoolFilterQuery
Provides boolean filter functionality for a complex column of IUser
API:
This is a public API.
  • Method Summary

    Modifier and Type
    Method
    Description
    is(boolean value)
    Adds a filter condition that selects rows that match or do not match the condition given by the value parameter.
    Adds a filter condition that selects rows that do not match the condition.
    Adds a filter condition that selects rows that match the condition.
  • Method Details

    • isFalse

      default UserQuery.FilterLink isFalse()

      Adds a filter condition that selects rows that do not match the condition.

      Returns:
      query for further composition
      API:
      This public API is available in Java.
    • isTrue

      default UserQuery.FilterLink isTrue()

      Adds a filter condition that selects rows that match the condition.

      Returns:
      query for further composition
      API:
      This public API is available in Java.
    • is

      UserQuery.FilterLink is(boolean value)

      Adds a filter condition that selects rows that match or do not match the condition given by the value parameter.

      Parameters:
      value -
      Returns:
      query for further composition
      API:
      This public API is available in Java.