
it.unitn.disi.smatch.matchers.element.ISenseGlossBasedElementLevelSemanticMatcher 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;
import it.unitn.disi.smatch.data.ling.ISense;
/**
* An interface for sense and gloss based element level matchers.
*
* @author Mikalai Yatskevich [email protected]
* @author Aliaksandr Autayeu
*/
public interface ISenseGlossBasedElementLevelSemanticMatcher extends IConfigurable {
/**
* Returns a relation between source and target synsets.
*
* @param source interface of source synset
* @param target interface of target synset.
* @return a relation between source and target synsets
* @throws MatcherLibraryException MatcherLibraryException
*/
char match(ISense source, ISense target) throws MatcherLibraryException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy