Interface BooleanFieldOperation<T>

  • Type Parameters:
    T -
    All Superinterfaces:
    FieldOperation<T>

    public interface BooleanFieldOperation<T>
    extends FieldOperation<T>
    Operations to filter Boolean fields
    Since:
    9.3
    API:
    This is a public API.
    • Method Detail

      • isEqualTo

        Filter<T> isEqualTo​(boolean value)
        Matches Boolean values that are equal to the given value
        Parameters:
        value -
        Returns:
        filter, orderBy, limit, execute operations
        API:
        This public API is available in IvyScript and Java. It has the visibility ADVANCED.
      • isFalse

        default Filter<T> isFalse()
        Matches Boolean values that are false
        Returns:
        filter, orderBy, limit, execute operations
        API:
        This public API is available in IvyScript and Java. It has the visibility ADVANCED.
      • isTrue

        default Filter<T> isTrue()
        Matches Boolean values that are true
        Returns:
        filter, orderBy, limit, execute operations
        API:
        This public API is available in IvyScript and Java. It has the visibility ADVANCED.