All Implemented Interfaces:
Filter, IMatcher<org.apache.jena.ontology.OntModel,Alignment,Properties>, eu.sealsproject.platform.res.domain.omt.IOntologyMatchingToolBridge, eu.sealsproject.platform.res.tool.api.IPlugin, eu.sealsproject.platform.res.tool.api.IToolBridge

public class SimilarTypeFilter extends BaseFilterWithSetComparison implements Filter
Checks for each instance mapping, how many already matched types it has in common. For comparing a type hierarchy, choose SimilarHierarchyFilter.
  • Field Details

    • minClassConfidence

      private double minClassConfidence
      The minimum confidence for which a class mapping is counted. Compared with greater or equal.
    • typeProperty

      private org.apache.jena.rdf.model.Property typeProperty
      Type property: usually rdf:type.
  • Constructor Details

    • SimilarTypeFilter

      public SimilarTypeFilter(double minClassConfidence, org.apache.jena.rdf.model.Property typeProperty, double threshold, SetSimilarity setSimilatity)
    • SimilarTypeFilter

      public SimilarTypeFilter(double threshold, SetSimilarity setSimilarity)
    • SimilarTypeFilter

      public SimilarTypeFilter()
  • Method Details

    • match

      public Alignment match(org.apache.jena.ontology.OntModel source, org.apache.jena.ontology.OntModel target, Alignment inputAlignment, Properties properties) throws Exception
      Description copied from class: MatcherYAAAJena
      Aligns two ontologies specified via a Jena OntModel, with an input alignment as Alignment object, and returns the mapping of the resulting alignment. Note: This method might be called multiple times in a row when using the evaluation framework. Make sure to return a mapping which is specific to the given inputs.
      Specified by:
      match in interface IMatcher<org.apache.jena.ontology.OntModel,Alignment,Properties>
      Specified by:
      match in class MatcherYAAAJena
      Parameters:
      source - This OntModel represents the source ontology.
      target - This OntModel represents the target ontology.
      inputAlignment - This mapping represents the input alignment.
      properties - Additional properties.
      Returns:
      The resulting alignment of the matching process.
      Throws:
      Exception - Any exception which occurs during matching.
    • getTypes

      private Set<String> getTypes(org.apache.jena.ontology.Individual individual)
    • toString

      public String toString()
      Overrides:
      toString in class Object