INRIA & friends

Uses of Interface
org.semanticweb.owl.align.Alignment

Packages that use Alignment
fr.inrialpes.exmo.align.impl   
fr.inrialpes.exmo.align.impl.eval   
fr.inrialpes.exmo.align.impl.method   
fr.inrialpes.exmo.align.impl.renderer   
fr.inrialpes.exmo.align.ling   
fr.inrialpes.exmo.align.parser   
fr.inrialpes.exmo.align.service   
fr.inrialpes.exmo.align.util   
org.semanticweb.owl.align   
 

Uses of Alignment in fr.inrialpes.exmo.align.impl
 

Classes in fr.inrialpes.exmo.align.impl that implement Alignment
 class BasicAlignment
          Represents an OWL ontology alignment.
 class DistanceAlignment
          Represents an OWL ontology alignment.
 

Fields in fr.inrialpes.exmo.align.impl declared as Alignment
protected  Alignment BasicEvaluator.align1
           
protected  Alignment BasicEvaluator.align2
           
 

Methods in fr.inrialpes.exmo.align.impl that return Alignment
 Alignment DistanceAlignment.extract(java.lang.String type, Parameters params)
          Extract the alignment form the Similarity There are theoretically 16 types of extractors composing the characteristics [q]estion mark = ?, one or zero relation [s]tar = *, one, zero or many relations [1] = 1, exactly one relation [p]lus = +, one or many relations for each place of the relation.
 Alignment DistanceAlignment.extractqs(double threshold, Parameters params)
          Extract the alignment of a ?* type Complexity: O(n^2)
 Alignment DistanceAlignment.extractqq(double threshold, Parameters params)
          Extract the alignment of a ?? type exact algorithm using the Hungarian method
 Alignment DistanceAlignment.extractqqNaive(double threshold, Parameters params)
          Naive algorithm: 1) dump the part of the matrix distance above threshold in a sorted set 2) traverse the sorted set and each time a correspondence involving two entities that have no correspondence is encountered, add it to the alignment.
 Alignment BasicAlignment.meet(Alignment align)
          The second alignment is meet with the first one meaning that for any pair (o, o', n, r) in O and (o, o', n', r) in O' the resulting alignment will contain: ( o, o', meet(n,n'), r) any pair which is in only one alignment is preserved.
 Alignment BasicAlignment.join(Alignment align)
          The second alignment is join with the first one meaning that for any pair (o, o', n, r) in O and (o, o', n', r) in O' the resulting alignment will contain: ( o, o", join(n,n'), r) any pair which is in only one alignment is discarded.
 Alignment BasicAlignment.compose(Alignment align)
          The second alignment is composed with the first one meaning that for any pair (o, o', n, r) in O and (o',o", n', r') in O' the resulting alignment will contain: ( o, o", join(n,n'), compose(r, r')) iff compose(r,r') exists.
 Alignment BasicAlignment.inverse()
          A new alignment is created such that for any pair (o, o', n, r) in O the resulting alignment will contain: ( o', o, n, inverse(r)) iff compose(r) exists.
 

Methods in fr.inrialpes.exmo.align.impl with parameters of type Alignment
 void Similarity.initialize(OWLOntology onto1, OWLOntology onto2, Alignment align)
           
 void MatrixMeasure.initialize(OWLOntology onto1, OWLOntology onto2, Alignment align)
           
 void DistanceAlignment.align(Alignment alignment, Parameters params)
          Process matching - create distance data structures, - compute distance or similarity - extract alignment
 Alignment BasicAlignment.meet(Alignment align)
          The second alignment is meet with the first one meaning that for any pair (o, o', n, r) in O and (o, o', n', r) in O' the resulting alignment will contain: ( o, o', meet(n,n'), r) any pair which is in only one alignment is preserved.
 Alignment BasicAlignment.join(Alignment align)
          The second alignment is join with the first one meaning that for any pair (o, o', n, r) in O and (o, o', n', r) in O' the resulting alignment will contain: ( o, o", join(n,n'), r) any pair which is in only one alignment is discarded.
 Alignment BasicAlignment.compose(Alignment align)
          The second alignment is composed with the first one meaning that for any pair (o, o', n, r) in O and (o',o", n', r') in O' the resulting alignment will contain: ( o, o", join(n,n'), compose(r, r')) iff compose(r,r') exists.
protected  void BasicAlignment.ingest(Alignment alignment)
          Incorporate the cells of the alignment into its own alignment.
 

Constructors in fr.inrialpes.exmo.align.impl with parameters of type Alignment
BasicEvaluator(Alignment align1, Alignment align2)
          Creation
 

Uses of Alignment in fr.inrialpes.exmo.align.impl.eval
 

Constructors in fr.inrialpes.exmo.align.impl.eval with parameters of type Alignment
SymMeanEvaluator(Alignment align1, Alignment align2)
          Creation
PRGraphEvaluator(Alignment align1, Alignment align2)
          Creation
PRecEvaluator(Alignment align1, Alignment align2)
          Creation
ExtPREvaluator(Alignment align1, Alignment align2)
          Creation
 

Uses of Alignment in fr.inrialpes.exmo.align.impl.method
 

Classes in fr.inrialpes.exmo.align.impl.method that implement Alignment
 class ClassStructAlignment
          This class has been built for ISWC experiments with bibliography.
 class EditDistNameAlignment
          This class aligns ontology with regard to the editing distance between class names.
 class NameAndPropertyAlignment
          This class has been built for ISWC experiments with bibliography.
 class NameEqAlignment
          Represents an OWL ontology alignment.
 class SMOANameAlignment
          This class aligns ontology with regard to the editing distance between class names.
 class StringDistAlignment
          Represents an OWL ontology alignment.
 class StrucSubsDistAlignment
          This class has been built for ISWC experiments with bibliography.
 class SubsDistNameAlignment
          This class implements alignment based on substring distance of class and property labels
 

Methods in fr.inrialpes.exmo.align.impl.method with parameters of type Alignment
 void SubsDistNameAlignment.align(Alignment alignment, Parameters params)
          Processing
 void StrucSubsDistAlignment.align(Alignment alignment, Parameters params)
          Processing
 void StringDistAlignment.align(Alignment alignment, Parameters params)
           
 void NameEqAlignment.align(Alignment alignment, Parameters params)
          Processing
 void NameAndPropertyAlignment.align(Alignment alignment, Parameters params)
          Processing
 void ClassStructAlignment.align(Alignment alignment, Parameters params)
          Processing
 

Uses of Alignment in fr.inrialpes.exmo.align.impl.renderer
 

Fields in fr.inrialpes.exmo.align.impl.renderer declared as Alignment
(package private)  Alignment XSLTRendererVisitor.alignment
           
(package private)  Alignment SWRLRendererVisitor.alignment
           
(package private)  Alignment SKOSRendererVisitor.alignment
           
(package private)  Alignment SEKTMappingRendererVisitor.alignment
           
(package private)  Alignment RDFRendererVisitor.alignment
           
(package private)  Alignment OWLAxiomsRendererVisitor.alignment
           
(package private)  Alignment COWLMappingRendererVisitor.alignment
           
 

Methods in fr.inrialpes.exmo.align.impl.renderer with parameters of type Alignment
 void XSLTRendererVisitor.visit(Alignment align)
           
 void SWRLRendererVisitor.visit(Alignment align)
           
 void SKOSRendererVisitor.visit(Alignment align)
           
 void SEKTMappingRendererVisitor.visit(Alignment align)
           
 void RDFRendererVisitor.visit(Alignment align)
           
 void OWLAxiomsRendererVisitor.visit(Alignment align)
           
 void COWLMappingRendererVisitor.visit(Alignment align)
           
 

Uses of Alignment in fr.inrialpes.exmo.align.ling
 

Classes in fr.inrialpes.exmo.align.ling that implement Alignment
 class JWNLAlignment
          This Class uses JWNLDistances to align two ontologies.
 

Methods in fr.inrialpes.exmo.align.ling with parameters of type Alignment
 void JWNLAlignment.align(Alignment alignment, Parameters params)
          Processing
 

Uses of Alignment in fr.inrialpes.exmo.align.parser
 

Methods in fr.inrialpes.exmo.align.parser that return Alignment
 Alignment AlignmentParser.parse(java.lang.String uri, java.util.Hashtable loaded)
          Parses the document corresponding to the URI given in parameter If the current process has links (import or include) to others documents then they are parsed.
 

Uses of Alignment in fr.inrialpes.exmo.align.service
 

Fields in fr.inrialpes.exmo.align.service declared as Alignment
private  Alignment QueryMediator.alignment
           
 

Constructors in fr.inrialpes.exmo.align.service with parameters of type Alignment
QueryMediator(QueryProcessor proc, Alignment a)
           
QueryMediator(Alignment a)
           
 

Uses of Alignment in fr.inrialpes.exmo.align.util
 

Methods in fr.inrialpes.exmo.align.util that return Alignment
static Alignment Procalign.run(java.lang.String[] args)
           
 

Uses of Alignment in org.semanticweb.owl.align
 

Subinterfaces of Alignment in org.semanticweb.owl.align
 interface AlignmentProcess
          Represents an OWL ontology alignment.
 

Methods in org.semanticweb.owl.align that return Alignment
 Alignment Alignment.inverse()
          Algebra of alignment manipulation operations: compose, join, meet.
 Alignment Alignment.meet(Alignment align)
           
 Alignment Alignment.join(Alignment align)
           
 Alignment Alignment.compose(Alignment align)
           
 

Methods in org.semanticweb.owl.align with parameters of type Alignment
 void AlignmentVisitor.visit(Alignment a)
           
 void AlignmentProcess.align(Alignment alignment, Parameters param)
          The align method computes the alignment from the ontologies.
 Alignment Alignment.meet(Alignment align)
           
 Alignment Alignment.join(Alignment align)
           
 Alignment Alignment.compose(Alignment align)
           
 


INRIA & friends

..no bottom yet...