Interface GraphFilter<E>

All Known Subinterfaces:
FlowFilter, TableFilter
All Known Implementing Classes:
FlowsForTables, SomeTables, UnionFlowFilter

public interface GraphFilter<E>
Specifies how we should filter Graph elements.
  • Method Summary

    Modifier and Type
    Method
    Description
    scala.collection.immutable.Seq<E>
    filter(scala.collection.immutable.Seq<E> elements)
    Returns the subset of elements provided that match this filter.
    scala.collection.immutable.Seq<E>
    filterNot(scala.collection.immutable.Seq<E> elements)
    Returns the subset of elements provided that do not match this filter.
  • Method Details

    • filter

      scala.collection.immutable.Seq<E> filter(scala.collection.immutable.Seq<E> elements)
      Returns the subset of elements provided that match this filter.
    • filterNot

      scala.collection.immutable.Seq<E> filterNot(scala.collection.immutable.Seq<E> elements)
      Returns the subset of elements provided that do not match this filter.