Class IterativeSimpleMatching<T>

    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static IterativeSimpleMatching getInstance()  
      org.apache.commons.math3.util.Pair<java.util.Set<T>,​java.util.Set<T>> matching​(java.util.Collection<T> collection1, org.apache.commons.collections4.Predicate<T> filter1, java.util.Comparator<T> comparator1, java.util.Collection<T> collection2, org.apache.commons.collections4.Predicate<T> filter2, MatchingScoreClosure<T> doubleClosure, MatchingClosure<T> matching)  
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • matching

        public org.apache.commons.math3.util.Pair<java.util.Set<T>,​java.util.Set<T>> matching​(java.util.Collection<T> collection1,
                                                                                                    org.apache.commons.collections4.Predicate<T> filter1,
                                                                                                    java.util.Comparator<T> comparator1,
                                                                                                    java.util.Collection<T> collection2,
                                                                                                    org.apache.commons.collections4.Predicate<T> filter2,
                                                                                                    MatchingScoreClosure<T> doubleClosure,
                                                                                                    MatchingClosure<T> matching)
        Specified by:
        matching in interface IterativeMatchingAlgorithm<T>