Interface FilterStack<T>

  • Type Parameters:
    T - generic type on which this filter is applied.
    All Superinterfaces:
    java.lang.Cloneable, java.util.Collection<Filter<T>>, Filter<T>, java.lang.Iterable<Filter<T>>, java.util.List<Filter<T>>
    All Known Implementing Classes:
    FilterStackImpl

    public interface FilterStack<T>
    extends Filter<T>, java.util.List<Filter<T>>
    A Filter stack is (as the name suggests) a "stack of filters". It is in essence a list of filters, all of the type f: T -> T. If we have a list of filters L = and we hand over object t of type T, the result will be fn(fn-1(...f1(f0(t)))).
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      FilterStack<T> clone()
      Create this filter's clone.
      • Methods inherited from interface java.util.Collection

        parallelStream, removeIf, stream, toArray
      • Methods inherited from interface org.processmining.filtering.filter.interfaces.Filter

        apply
      • Methods inherited from interface java.lang.Iterable

        forEach
      • Methods inherited from interface java.util.List

        add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray
    • Method Detail

      • clone

        FilterStack<T> clone()
        Description copied from interface: Filter
        Create this filter's clone.
        Specified by:
        clone in interface Filter<T>
        Returns:
        clone of filter.