Interface Filter.Builder

    • Method Detail

      • name

        Filter.Builder name​(String name)

        The name of the transform node.

        Parameters:
        name - The name of the transform node.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • inputs

        Filter.Builder inputs​(Collection<String> inputs)

        The data inputs identified by their node names.

        Parameters:
        inputs - The data inputs identified by their node names.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • inputs

        Filter.Builder inputs​(String... inputs)

        The data inputs identified by their node names.

        Parameters:
        inputs - The data inputs identified by their node names.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • logicalOperator

        Filter.Builder logicalOperator​(String logicalOperator)

        The operator used to filter rows by comparing the key value to a specified value.

        Parameters:
        logicalOperator - The operator used to filter rows by comparing the key value to a specified value.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        FilterLogicalOperator, FilterLogicalOperator
      • logicalOperator

        Filter.Builder logicalOperator​(FilterLogicalOperator logicalOperator)

        The operator used to filter rows by comparing the key value to a specified value.

        Parameters:
        logicalOperator - The operator used to filter rows by comparing the key value to a specified value.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        FilterLogicalOperator, FilterLogicalOperator
      • filters

        Filter.Builder filters​(Collection<FilterExpression> filters)

        Specifies a filter expression.

        Parameters:
        filters - Specifies a filter expression.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • filters

        Filter.Builder filters​(FilterExpression... filters)

        Specifies a filter expression.

        Parameters:
        filters - Specifies a filter expression.
        Returns:
        Returns a reference to this object so that method calls can be chained together.