Interface SimilarityScore<R>

    • Method Summary

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

        andThen
    • Method Detail

      • apply

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