Interface MatchingAlgorithm<T>

  • All Known Implementing Classes:
    SimpleMatching

    public interface MatchingAlgorithm<T>
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void 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)  
    • Method Detail

      • matching

        void 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)