Interface IStringMatchingAlgorithm


public interface IStringMatchingAlgorithm
classes implementing this interface need to be thread safe
Author:
Christian Schack, geidell
  • Method Summary

    Modifier and Type
    Method
    Description
    double
    match(String str1, String str2)
    Matches the to given String and returns a value which represents the probability of equality of the given strings
    must return 1 if the strings are equal, a value between 0 and 1 else
  • Method Details

    • match

      double match(String str1, String str2)
      Matches the to given String and returns a value which represents the probability of equality of the given strings
      must return 1 if the strings are equal, a value between 0 and 1 else
      Parameters:
      str1 -
      str2 -
      Returns: