
it.unitn.disi.smatch.matchers.element.IStringBasedElementLevelSemanticMatcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of s-match Show documentation
Show all versions of s-match Show documentation
A version of S-Match semantic matching framework for Open Data
The newest version!
package it.unitn.disi.smatch.matchers.element;
import it.unitn.disi.common.components.IConfigurable;
/**
* Interface for string-based element-level matchers.
*
* @author Mikalai Yatskevich [email protected]
* @author Aliaksandr Autayeu
*/
public interface IStringBasedElementLevelSemanticMatcher extends IConfigurable {
/**
* Returns a relation between source and target strings.
*
* @param source the string of source label
* @param target the string of target label
* @return a relation between source and target labels
*/
char match(String source, String target);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy