All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.xdrop.fuzzywuzzy.Ratio Maven / Gradle / Ivy

package me.xdrop.fuzzywuzzy;

/**
 * Interface for the different ratios
 */
public interface Ratio extends Applicable {

    /**
     * Applies the ratio between the two strings
     *
     * @param s1 Input string
     * @param s2 Input string
     * @return Integer representing ratio of similarity
     */
    int apply(String s1, String s2);

    /**
     * Applies the ratio between the two strings
     *
     * @param s1 Input string
     * @param s2 Input string
     * @param sp String processor to pre-process strings before calculating the ratio
     * @return Integer representing ratio of similarity
     */
    int apply(String s1, String s2, StringProcessor sp);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy