Class UnionFlowFilter

Object
org.apache.spark.sql.pipelines.graph.UnionFlowFilter
All Implemented Interfaces:
Serializable, FlowFilter, GraphFilter<ResolvedFlow>, scala.Equals, scala.Product

public class UnionFlowFilter extends Object implements FlowFilter, scala.Product, Serializable
Returns a flow filter that is a union of two flow filters
See Also:
  • Constructor Details

  • Method Details

    • apply

      public abstract static R apply(T1 v1, T2 v2)
    • toString

      public static String toString()
    • oneFilter

      public FlowFilter oneFilter()
    • otherFilter

      public FlowFilter otherFilter()
    • filter

      public scala.collection.immutable.Seq<ResolvedFlow> filter(scala.collection.immutable.Seq<ResolvedFlow> flows)
      Description copied from interface: GraphFilter
      Returns the subset of elements provided that match this filter.
      Specified by:
      filter in interface GraphFilter<ResolvedFlow>
    • filterNot

      public scala.collection.immutable.Seq<ResolvedFlow> filterNot(scala.collection.immutable.Seq<ResolvedFlow> flows)
      Description copied from interface: GraphFilter
      Returns the subset of elements provided that do not match this filter.
      Specified by:
      filterNot in interface GraphFilter<ResolvedFlow>