Interface MatchingScoreClosure<T>


public interface MatchingScoreClosure<T>
  • Method Summary

    Modifier and Type
    Method
    Description
    double
    getValue(T item1, T item2)
    Allows to get the matching score for a pair og agents.
  • Method Details

    • getValue

      double getValue(@NonNull T item1, @NonNull T item2)
      Allows to get the matching score for a pair og agents.
      Parameters:
      item1 - An agent.
      item2 - A matching candidate.
      Returns:
      the score.
      Throws:
      NullPointerException - when any of the input parameters is null.