Interface ObjectSimilarityScore<T,​R>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      R apply​(T left, T right)
      Compares two Objects.
      • Methods inherited from interface java.util.function.BiFunction

        andThen
    • Method Detail

      • apply

        R apply​(T left,
                T right)
        Compares two Objects.
        Specified by:
        apply in interface java.util.function.BiFunction<T,​T,​R>
        Parameters:
        left - the "left" or "first" input.
        right - the "right" or "second" input.
        Returns:
        The similarity score between two Objects.