Uses of Class
complexMapping.ComplexMappingException

Packages that use ComplexMappingException
complexMapping   
correspondence   
correspondenceComputations   
experiments   
reasoner   
utility   
 

Uses of ComplexMappingException in complexMapping
 

Methods in complexMapping that throw ComplexMappingException
 void ComplexMapping.createAlignment()
          Print the correspondences and write the alignment (if desired).
static void ComplexMapping.main(java.lang.String[] args)
          Main method for creating an alignment containing complex correspondences.
 void ComplexMapping.writeAlignment(java.lang.String writePath)
          Write the alignment into a file.
 

Constructors in complexMapping that throw ComplexMappingException
ComplexMapping(java.lang.String filepath1, java.lang.String filepath2, java.lang.String alignmentPath)
          Constructor to get all important files and to edit the settings.
ComplexMapping(java.lang.String filepath1, java.lang.String filepath2, java.lang.String alignmentPath, java.lang.String writePath)
          Constructor (if alignment should be written into a file) to get all important files and to edit the settings.
 

Uses of ComplexMappingException in correspondence
 

Methods in correspondence that throw ComplexMappingException
 java.lang.String Correspondence.toShortString()
           
 void CorrespondenceWriter.writeFileWithCorrespondences(java.lang.String filepath)
          Write the alignment into the file given by the file path.
 

Uses of ComplexMappingException in correspondenceComputations
 

Methods in correspondenceComputations that throw ComplexMappingException
static boolean ComputationUtility.alreadyInAlignment(org.semanticweb.owl.model.OWLEntity entity, OntologyAlignment ali)
          Check if a correspondence is contained in the conventional alignment.
static java.util.Set<Correspondence> PropertyChain.computePropertyChain(Ontology ont1, Ontology ont2, OntologyAlignment ali)
          Compute the set of correspondences of the type property chain where a datatype property is equivalent to a object property and a datatype property.
static java.util.Set<Correspondence> QualifiedRestriction.computeQualifiedRestriction(Ontology ont1, Ontology ont2, OntologyAlignment ali)
          Compute the correspondences which consists of an object property out of one ontology and an object property plus a restricted range out of the other ontology.
static java.util.Set<Correspondence> UnqualifiedRestriction.computeUnqualifiedRestriction(Ontology ont1, Ontology ont2, OntologyAlignment ali)
          Compute the complex correspondences as described in the class description.
static java.util.HashMap<org.semanticweb.owl.model.OWLClass,Term> ComputationUtility.deleteHeadnoun(java.util.Set<org.semanticweb.owl.model.OWLClass> oldClasses, boolean[] delimiter)
          Delete the headnoun of all class names.
static java.util.Set<org.semanticweb.owl.model.OWLClass> ComputationUtility.getDataDomain(Reasoner reasonerDomain, org.semanticweb.owl.model.OWLOntology ontology, org.semanticweb.owl.model.OWLDataProperty property)
          Get the domain of a datatype property using Pellet.
static java.util.Set<org.semanticweb.owl.model.OWLDescription> ComputationUtility.getDisjointClasses(Reasoner reasonerDisjoint, org.semanticweb.owl.model.OWLOntology ontology, org.semanticweb.owl.model.OWLClass cls)
          Get all disjoint classes of a given class.
static java.util.Set<org.semanticweb.owl.model.OWLClass> ComputationUtility.getObjectDomain(Reasoner reasonerDomain, org.semanticweb.owl.model.OWLOntology ontology, org.semanticweb.owl.model.OWLObjectProperty property)
          Get the domain of an object property using Pellet.
static java.util.Set<org.semanticweb.owl.model.OWLClass> ComputationUtility.getObjectRange(Reasoner reasonerRange, org.semanticweb.owl.model.OWLOntology ontology, org.semanticweb.owl.model.OWLObjectProperty property)
          Get the range of an obejct property using Pellet.
static double ComputationUtility.getSimilarValue(Term t1, Term t2)
          Get the similarity value of two terms.
static java.util.Set<Correspondence> ValueRestriction.valueRestriction(Ontology ont1, Ontology ont2, OntologyAlignment ali)
          Compute the complex correspondences of two given ontologies how it is recorded in the class description.
 

Uses of ComplexMappingException in experiments
 

Methods in experiments that throw ComplexMappingException
static void ConferenceExtended.main(java.lang.String[] args)
           
static void Conference.main(java.lang.String[] args)
           
static void Benchmark.main(java.lang.String[] args)
           
 

Uses of ComplexMappingException in reasoner
 

Methods in reasoner that throw ComplexMappingException
 org.semanticweb.owl.inference.OWLReasoner Reasoner.createReasoner(java.net.URI ont)
          Create a pellet reasoner and load the ontology into the reasoner.
static java.util.Set<java.util.Set<org.semanticweb.owl.model.OWLClass>> Reasoner.getClasses(int type, org.semanticweb.owl.inference.OWLReasoner reasoner, org.semanticweb.owl.model.OWLDescription ontologyClass)
          Get all sub/super/ancestor/descendant classes of a given class.
 java.util.Set<org.semanticweb.owl.model.OWLClass> ReasonerOneOntology.getTypeClasses(org.semanticweb.owl.model.OWLDescription con, int type)
          Get all typed(super, sub, ancestor, descendant)classes of the given OWLClass.
 java.util.Set<org.semanticweb.owl.model.OWLClass> ReasonerTwoOntologies.getTypeClassesBothOntologies(org.semanticweb.owl.model.OWLDescription con, int type)
          Get all typed(sub, super, ancestor, descendant) classes out of both ontologies (an alignment is required).
 

Constructors in reasoner that throw ComplexMappingException
ReasonerOneOntology(java.net.URI onto)
           
ReasonerTwoOntologies(java.net.URI onto1, java.net.URI onto2, OntologyAlignment ali)
          Constructor to save all information.
 

Uses of ComplexMappingException in utility
 

Methods in utility that throw ComplexMappingException
static org.semanticweb.owl.model.OWLOntology Ontology.buildOntology(java.lang.String filepath)
          Build an OWLOntology out of a filepath.
 

Constructors in utility that throw ComplexMappingException
Ontology(java.lang.String filepath)
          Create an ontology out of the filepath and build all important structures (like set of classes or properties).