org.semanticweb.owlapi.model
Interface OWLDifferentIndividualsAxiom

All Superinterfaces:
java.lang.Comparable<OWLObject>, OWLAxiom, OWLIndividualAxiom, OWLLogicalAxiom, OWLNaryAxiom, OWLNaryIndividualAxiom, OWLObject, OWLSubClassOfAxiomSetShortCut
All Known Implementing Classes:
OWLDifferentIndividualsAxiomImpl

public interface OWLDifferentIndividualsAxiom
extends OWLNaryIndividualAxiom

Author: Matthew Horridge
The University Of Manchester
Bio-Health Informatics Group Date: 24-Oct-2006

Represents a DifferentIndividuals axiom in the OWL 2 Specification.


Method Summary
 java.util.Set<OWLDifferentIndividualsAxiom> asPairwiseAxioms()
          Gets this axiom as a set of pairwise axioms.
 boolean containsAnonymousIndividuals()
          Determines whether this axiom contains anonymous individuals.
 OWLDifferentIndividualsAxiom getAxiomWithoutAnnotations()
          Gets an axiom that is structurally equivalent to this axiom without annotations.
 
Methods inherited from interface org.semanticweb.owlapi.model.OWLNaryIndividualAxiom
getIndividuals, getIndividualsAsList
 
Methods inherited from interface org.semanticweb.owlapi.model.OWLAxiom
accept, accept, equalsIgnoreAnnotations, getAnnotatedAxiom, getAnnotations, getAnnotations, getAxiomType, getNNF, isAnnotated, isLogicalAxiom, isOfType, isOfType
 
Methods inherited from interface org.semanticweb.owlapi.model.OWLObject
accept, accept, getClassesInSignature, getDataPropertiesInSignature, getDatatypesInSignature, getIndividualsInSignature, getNestedClassExpressions, getObjectPropertiesInSignature, getSignature, isBottomEntity, isTopEntity
 
Methods inherited from interface java.lang.Comparable
compareTo
 
Methods inherited from interface org.semanticweb.owlapi.model.OWLSubClassOfAxiomSetShortCut
asOWLSubClassOfAxioms
 

Method Detail

getAxiomWithoutAnnotations

OWLDifferentIndividualsAxiom getAxiomWithoutAnnotations()
Description copied from interface: OWLAxiom
Gets an axiom that is structurally equivalent to this axiom without annotations. This essentially returns a version of this axiom stripped of any annotations

Specified by:
getAxiomWithoutAnnotations in interface OWLAxiom
Returns:
The annotationless version of this axiom

containsAnonymousIndividuals

boolean containsAnonymousIndividuals()
Determines whether this axiom contains anonymous individuals. Anonymous individuals are not allowed in different individuals axioms.

Returns:
true if this axioms contains anonymous individual axioms

asPairwiseAxioms

java.util.Set<OWLDifferentIndividualsAxiom> asPairwiseAxioms()
Description copied from interface: OWLNaryAxiom
Gets this axiom as a set of pairwise axioms. Note that annotations on this axiom will not be copied to each axiom returned in the set of pairwise axioms.

Specified by:
asPairwiseAxioms in interface OWLNaryAxiom
Returns:
This axiom as a set of pairwise axioms.