
com.intuit.fuzzymatcher.domain.Matchable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fuzzy-matcher Show documentation
Show all versions of fuzzy-matcher Show documentation
A java library to determine probability of objects being similar
package com.intuit.fuzzymatcher.domain;
import java.util.function.Function;
/**
*
* Interface implemented by Document, Element and Token to enable matching and scoring these objects
*/
public interface Matchable {
public long getChildCount();
public long getEmptyChildCount();
public Function getScoringFunction();
public double getWeight();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy