Uses of Interface
de.fzi.kadmos.api.Correspondence

Packages that use Correspondence
de.fzi.kadmos.api Provides an API for representing and working with ontology alignments. 
de.fzi.kadmos.api.impl Provides default implementations for the KADMOS API. 
de.fzi.kadmos.api.listener Provides an API for representing alignment listeners and alignment change events. 
de.fzi.kadmos.api.listener.impl Provides default implementations for alignment change events and a factory for obtaining instances thereof. 
 

Uses of Correspondence in de.fzi.kadmos.api
 

Classes in de.fzi.kadmos.api that implement Correspondence
 class ForwardingCorrespondence<T extends OWLEntity>
          Abstract wrapper class for an Correspondence following the Decorator pattern.
 

Fields in de.fzi.kadmos.api declared as Correspondence
protected  Correspondence<? extends OWLEntity> ForwardingCorrespondence.correspondence
          Wrapped correspondence object.
 

Methods in de.fzi.kadmos.api that return Correspondence
 Correspondence<T> Correspondence.clone()
          Creates a clone of this correspondence.
<T extends OWLEntity>
Correspondence<T>
CorrespondenceFactory.createCorrespondence(T entity1, T entity2)
          Creates a new correspondence between two entities of type T.
<T extends OWLEntity>
Correspondence<T>
CorrespondenceFactory.createCorrespondence(T entity1, T entity2, double confidence)
          Creates a new correspondence between two entities of type T, with a specified confidence value.
 Correspondence<? extends OWLEntity> Alignment.getEntity1Corr(IRI ent)
          Gets the correspondence with a specific entity as entity 1.
 Correspondence<? extends OWLEntity> ForwardingAlignment.getEntity1Corr(IRI ent)
          Gets the correspondence with a specific entity as entity 1.
<T extends OWLEntity>
Correspondence<T>
Alignment.getEntity1Corr(T ent)
          Gets the correspondence with a specific entity as entity 1.
<T extends OWLEntity>
Correspondence<T>
ForwardingAlignment.getEntity1Corr(T ent)
          Gets the correspondence with a specific entity as entity 1.
 Correspondence<? extends OWLEntity> Alignment.getEntity2Corr(IRI ent)
          Gets the correspondence with a specific entity as entity 2.
 Correspondence<? extends OWLEntity> ForwardingAlignment.getEntity2Corr(IRI ent)
          Gets the correspondence with a specific entity as entity 2.
<T extends OWLEntity>
Correspondence<T>
Alignment.getEntity2Corr(T ent)
          Gets the correspondence with a specific entity as entity 2.
<T extends OWLEntity>
Correspondence<T>
ForwardingAlignment.getEntity2Corr(T ent)
          Gets the correspondence with a specific entity as entity 2.
 Correspondence<? extends OWLEntity> Alignment.getEntityCorr(IRI ent1, IRI ent2)
          Gets the correspondence with specific entities as entity 1 and entity2.
 Correspondence<? extends OWLEntity> ForwardingAlignment.getEntityCorr(IRI ent1, IRI ent2)
          Gets the correspondence with specific entities as entity 1 and entity2.
<T extends OWLEntity>
Correspondence<T>
Alignment.getEntityCorr(T ent1, T ent2)
          Gets the correspondence with specific entities as entity 1 and entity 2.
<T extends OWLEntity>
Correspondence<T>
ForwardingAlignment.getEntityCorr(T ent1, T ent2)
          Gets the correspondence with specific entities as entity 1 and entity 2.
 

Methods in de.fzi.kadmos.api that return types with arguments of type Correspondence
 Set<Correspondence<? extends OWLEntity>> Alignment.getCorrespondences()
          Gets the set of correspondences of this alignment.
 Set<Correspondence<? extends OWLEntity>> ForwardingAlignment.getCorrespondences()
          Gets the set of correspondences of this alignment.
 Iterator<Correspondence<? extends OWLEntity>> ForwardingAlignment.iterator()
          
 

Methods in de.fzi.kadmos.api with parameters of type Correspondence
 void Alignment.addCorrespondence(Correspondence<? extends OWLEntity> corr)
          Adds a correspondence to an alignment if possible.
 void ForwardingAlignment.addCorrespondence(Correspondence<? extends OWLEntity> corr)
          Adds a correspondence to an alignment if possible.
 boolean Alignment.contains(Correspondence<? extends OWLEntity> corr)
          Checks if this alignment contains a correspondence with the same entities as the provided correspondence.
 boolean ForwardingAlignment.contains(Correspondence<? extends OWLEntity> corr)
          Checks if this alignment contains a correspondence with the same entities as the provided correspondence.
 void Alignment.removeCorrespondence(Correspondence<? extends OWLEntity> corr)
          Removes a correspondence from this alignment if present.
 void ForwardingAlignment.removeCorrespondence(Correspondence<? extends OWLEntity> corr)
          Removes a correspondence from this alignment if present.
 

Constructors in de.fzi.kadmos.api with parameters of type Correspondence
ForwardingCorrespondence(Correspondence<? extends OWLEntity> corr)
          Creates a new instance that wraps another correspondence.
 

Uses of Correspondence in de.fzi.kadmos.api.impl
 

Methods in de.fzi.kadmos.api.impl that return Correspondence
 Correspondence<? extends OWLEntity> SimpleAlignment.getEntity1Corr(IRI ent)
          Gets the correspondence with a specific entity as entity 1.
<T extends OWLEntity>
Correspondence<T>
SimpleAlignment.getEntity1Corr(T ent)
          Gets the correspondence with a specific entity as entity 1.
 Correspondence<? extends OWLEntity> SimpleAlignment.getEntity2Corr(IRI ent)
          Gets the correspondence with a specific entity as entity 2.
<T extends OWLEntity>
Correspondence<T>
SimpleAlignment.getEntity2Corr(T ent)
          Gets the correspondence with a specific entity as entity 2.
 Correspondence<? extends OWLEntity> SimpleAlignment.getEntityCorr(IRI ent1, IRI ent2)
          Gets the correspondence with specific entities as entity 1 and entity2.
<T extends OWLEntity>
Correspondence<T>
SimpleAlignment.getEntityCorr(T ent1, T ent2)
          Gets the correspondence with specific entities as entity 1 and entity 2.
 

Methods in de.fzi.kadmos.api.impl that return types with arguments of type Correspondence
 Set<Correspondence<? extends OWLEntity>> SimpleAlignment.getCorrespondences()
          Gets the set of correspondences of this alignment.
 Iterator<Correspondence<? extends OWLEntity>> SimpleAlignment.iterator()
          
 

Methods in de.fzi.kadmos.api.impl with parameters of type Correspondence
 void SimpleAlignment.addCorrespondence(Correspondence<? extends OWLEntity> corr)
          Adds a correspondence to an alignment if possible.
 boolean SimpleAlignment.contains(Correspondence<? extends OWLEntity> corr)
          Checks if this alignment contains a correspondence with the same entities as the provided correspondence.
 void SimpleAlignment.removeCorrespondence(Correspondence<? extends OWLEntity> corr)
          Removes a correspondence from this alignment if present.
 

Uses of Correspondence in de.fzi.kadmos.api.listener
 

Methods in de.fzi.kadmos.api.listener that return Correspondence
 Correspondence<? extends OWLEntity> CorrespondenceRemovedChange.getCorrespondence()
          Obtains a reference to the Correspondence removed from the Alignment.
 Correspondence<? extends OWLEntity> CorrespondenceAddedChange.getCorrespondence()
          Obtains a reference to the Correspondence added to the Alignment.
 

Uses of Correspondence in de.fzi.kadmos.api.listener.impl
 

Methods in de.fzi.kadmos.api.listener.impl that return Correspondence
 Correspondence<? extends OWLEntity> CorrespondenceRemovedChangeImpl.getCorrespondence()
           
 Correspondence<? extends OWLEntity> CorrespondenceAddedChangeImpl.getCorrespondence()
           
 

Methods in de.fzi.kadmos.api.listener.impl with parameters of type Correspondence
static CorrespondenceAddedChange AlignmentChangeEventFactory.getCorrespondenceAddedChange(Alignment align, Correspondence<? extends OWLEntity> corr)
          Obtains an instance of a CorrespondenceAddedChange event.
static CorrespondenceRemovedChange AlignmentChangeEventFactory.getCorrespondenceRemovedChange(Alignment align, Correspondence<? extends OWLEntity> corr)
          Obtains an instance of a CorrespondenceRemovedChange event.
 



Copyright © 2012. All Rights Reserved.