Interface TaskQuery.IDateColumnFilterQuery

    • Method Detail

      • isEqual

        TaskQuery.FilterLink isEqual​(Date value)

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

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

        Parameters:
        value -
        Returns:
        query for further composition
        API:
        This public API is available in IvyScript and Java. It has the visibility EXPERT.
      • isNotEqual

        TaskQuery.FilterLink isNotEqual​(Date value)

        Adds a filter condition that selects rows that do not have the given value.

        SQL part: [column] <> [value] or [column] IS NOT NULL

        Parameters:
        value -
        Returns:
        query for further composition
        API:
        This public API is available in IvyScript and Java. It has the visibility EXPERT.
      • isGreaterThan

        TaskQuery.FilterLink isGreaterThan​(Date 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 IvyScript and Java. It has the visibility EXPERT.
      • isGreaterOrEqualThan

        TaskQuery.FilterLink isGreaterOrEqualThan​(Date 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 IvyScript and Java. It has the visibility EXPERT.
      • isLowerThan

        TaskQuery.FilterLink isLowerThan​(Date 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 IvyScript and Java. It has the visibility EXPERT.
      • isLowerOrEqualThan

        TaskQuery.FilterLink isLowerOrEqualThan​(Date 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 IvyScript and Java. It has the visibility EXPERT.