Class UnionFlowFilter
Object
org.apache.spark.sql.pipelines.graph.UnionFlowFilter
- All Implemented Interfaces:
Serializable,FlowFilter,GraphFilter<ResolvedFlow>,scala.Equals,scala.Product
Returns a flow filter that is a union of two flow filters
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract static Rapply(T1 v1, T2 v2) scala.collection.immutable.Seq<ResolvedFlow>filter(scala.collection.immutable.Seq<ResolvedFlow> flows) Returns the subset of elements provided that match this filter.scala.collection.immutable.Seq<ResolvedFlow>filterNot(scala.collection.immutable.Seq<ResolvedFlow> flows) Returns the subset of elements provided that do not match this filter.static StringtoString()Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface scala.Equals
canEqual, equalsMethods inherited from interface scala.Product
productArity, productElement, productElementName, productElementNames, productIterator, productPrefix
-
Constructor Details
-
UnionFlowFilter
-
-
Method Details
-
apply
public abstract static R apply(T1 v1, T2 v2) -
toString
-
oneFilter
-
otherFilter
-
filter
public scala.collection.immutable.Seq<ResolvedFlow> filter(scala.collection.immutable.Seq<ResolvedFlow> flows) Description copied from interface:GraphFilterReturns the subset of elements provided that match this filter.- Specified by:
filterin interfaceGraphFilter<ResolvedFlow>
-
filterNot
public scala.collection.immutable.Seq<ResolvedFlow> filterNot(scala.collection.immutable.Seq<ResolvedFlow> flows) Description copied from interface:GraphFilterReturns the subset of elements provided that do not match this filter.- Specified by:
filterNotin interfaceGraphFilter<ResolvedFlow>
-