Interface StartSignalEventElementQuery.IIntegerColumnFilterQuery

    • Method Detail

      • isEqual

        StartSignalEventElementQuery.FilterLink isEqual​(long value)

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

        SQL part: [column] = [value]

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

        StartSignalEventElementQuery.FilterLink isNotEqual​(long value)

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

        SQL part: [column] <> [value]

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

        StartSignalEventElementQuery.FilterLink isGreaterThan​(long 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
        API:
        This public API is available in IvyScript and Java. It has the visibility EXPERT.
      • isGreaterOrEqualThan

        StartSignalEventElementQuery.FilterLink isGreaterOrEqualThan​(long 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
        API:
        This public API is available in IvyScript and Java. It has the visibility EXPERT.
      • isLowerThan

        StartSignalEventElementQuery.FilterLink isLowerThan​(long 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
        API:
        This public API is available in IvyScript and Java. It has the visibility EXPERT.
      • isLowerOrEqualThan

        StartSignalEventElementQuery.FilterLink isLowerOrEqualThan​(long 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
        API:
        This public API is available in IvyScript and Java. It has the visibility EXPERT.