
it.unitn.disi.smatch.data.mappings.IMappingElement 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.data.mappings;
/**
* Interface for a mapping element.
*
* @author Aliaksandr Autayeu
*/
public interface IMappingElement {
// relations abbreviations
char EQUIVALENCE = '=';
char LESS_GENERAL = '<';
char MORE_GENERAL = '>';
char DISJOINT = '!';
// relations for minimal links
char ENTAILED_LESS_GENERAL = 'L';
char ENTAILED_MORE_GENERAL = 'M';
char ENTAILED_DISJOINT = 'X';
char IDK = '?';
T getSource();
T getTarget();
char getRelation();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy