java.lang.Object
de.uni_mannheim.informatik.dws.melt.matching_base.multisource.MatcherMultiSourceURL
de.uni_mannheim.informatik.dws.melt.matching_jena_matchers.multisource.dispatchers.MultiSourceDispatcherUnionToUnion
All Implemented Interfaces:
IMatcherMultiSourceCaller, MultiSourceDispatcher

public class MultiSourceDispatcherUnionToUnion extends MatcherMultiSourceURL implements MultiSourceDispatcher, IMatcherMultiSourceCaller
  • Field Details

    • LOGGER

      private static final org.slf4j.Logger LOGGER
    • oneToOneMatcher

      private final Object oneToOneMatcher
  • Constructor Details

    • MultiSourceDispatcherUnionToUnion

      public MultiSourceDispatcherUnionToUnion(Object oneToOneMatcher)
  • Method Details

    • match

      public URL match(List<URL> models, URL inputAlignment, URL parameters) throws Exception
      Description copied from class: MatcherMultiSourceURL
      Matches multiple ontologies/knowledge graphs together.
      Specified by:
      match in class MatcherMultiSourceURL
      Parameters:
      models - the ontologies/knowledge graphs as URLs
      inputAlignment - the input alignment as URL (alignment API format)
      parameters - the parameters file url. Format are currently json or yaml.
      Returns:
      an alignment as URL (most often as file URL) the format is again the alignment API format.
      Throws:
      Exception - in case something went wrong
    • match

      public AlignmentAndParameters match(List<Set<Object>> models, Object inputAlignment, Object parameters) throws Exception
      Description copied from interface: IMatcherMultiSourceCaller
      Matches multiple ontologies / knowledge graphs together.
      Specified by:
      match in interface IMatcherMultiSourceCaller
      Parameters:
      models - this is a list of sets of objects where each sets contains different representations of the dame ontologies/ knowledge graph.
      inputAlignment - this object represents the input alignment.
      parameters - object representing additional parameters. Only add to this object and do not create a new Object like parameters= new ...() because otherwise the parameters are lost (java ist call by value). Sensible classes are Properties, Map<String, Object> or any similar data structure. Some already specified keys (strings) can be found at ParameterConfigKeys.
      Returns:
      the resulting alignment of the matching process.
      Throws:
      Exception - in case of any errors