Class LevenshteinDistance

    • Constructor Detail

      • LevenshteinDistance

        public LevenshteinDistance()
        Optimized to run a bit faster than the static getDistance(). In one benchmark times were 5.3sec using ctr vs 8.5sec w/ static method, thus 37% faster.
    • Method Detail

      • getDistance

        public float getDistance​(String target,
                                 String other)
        Description copied from interface: StringDistance
        Returns a float between 0 and 1 based on how similar the specified strings are to one another. Returning a value of 1 means the specified strings are identical and 0 means the string are maximally different.
        Specified by:
        getDistance in interface StringDistance
        Parameters:
        target - The first string.
        other - The second string.
        Returns:
        a float between 0 and 1 based on how similar the specified strings are to one another.
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object