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

com.intuit.fuzzymatcher.domain.Matchable Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
package com.intuit.fuzzymatcher.domain;

import java.util.List;
import java.util.function.BiFunction;

/**
 *
 * Interface implemented by Document, Element and Token to enable matching and scoring these objects
 */
public interface Matchable {

    public long getChildCount(Matchable other);

    public BiFunction, Score> getScoringFunction();

    public double getWeight();

    public long getUnmatchedChildCount(Matchable other);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy