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

it.unitn.disi.smatch.data.mappings.IMappingElement Maven / Gradle / Ivy

The newest version!
package it.unitn.disi.smatch.data.mappings;

/**
 * Interface for a mapping element.
 *
 * @author 
 */
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