Uses of Interface
org.semanticweb.kaon2.api.owl.elements.Individual

Packages that use Individual
org.semanticweb.kaon2.api   
org.semanticweb.kaon2.api.owl.axioms   
org.semanticweb.kaon2.api.owl.elements   
 

Uses of Individual in org.semanticweb.kaon2.api
 

Methods in org.semanticweb.kaon2.api that return Individual
 Individual KAON2Factory.individual(java.lang.String uri)
           
 

Methods in org.semanticweb.kaon2.api with parameters of type Individual
 ClassMember KAON2Factory.classMember(Description description, Individual individual)
           
 DataPropertyMember KAON2Factory.dataPropertyMember(DataProperty dataProperty, Individual sourceIndividual, java.lang.Object targetValue)
           
 DifferentIndividuals KAON2Factory.differentIndividuals(Individual... individuals)
           
 ObjectHasValue KAON2Factory.objectHasValue(ObjectProperty objectProperty, Individual individual)
           
 ObjectOneOf KAON2Factory.objectOneOf(Individual... individuals)
           
 ObjectPropertyMember KAON2Factory.objectPropertyMember(ObjectProperty objectProperty, Individual sourceIndividual, Individual targetIndividual)
           
 SameIndividual KAON2Factory.sameIndividual(Individual... individuals)
           
 java.lang.Object KAON2Visitor.visit(Individual object)
           
 

Method parameters in org.semanticweb.kaon2.api with type arguments of type Individual
 DifferentIndividuals KAON2Factory.differentIndividuals(java.util.Collection<Individual> individuals)
           
 ObjectOneOf KAON2Factory.objectOneOf(java.util.Collection<Individual> individuals)
           
 SameIndividual KAON2Factory.sameIndividual(java.util.Collection<Individual> individuals)
           
 

Uses of Individual in org.semanticweb.kaon2.api.owl.axioms
 

Methods in org.semanticweb.kaon2.api.owl.axioms that return Individual
 Individual ClassMember.getIndividual()
          Returns the individual for which this axiom is stated.
 Individual ObjectPropertyMember.getSourceIndividual()
          Returns the source individual.
 Individual DataPropertyMember.getSourceIndividual()
          Returns the source individual.
 Individual ObjectPropertyMember.getTargetIndividual()
          Returns the target individual.
 

Methods in org.semanticweb.kaon2.api.owl.axioms that return types with arguments of type Individual
 java.util.Set<Individual> SameIndividual.getIndividuals()
          Returns the set of individuals that are the same.
 java.util.Set<Individual> DifferentIndividuals.getIndividuals()
          Returns the set of invididuals that are different.
 

Uses of Individual in org.semanticweb.kaon2.api.owl.elements
 

Methods in org.semanticweb.kaon2.api.owl.elements that return Individual
 Individual ObjectHasValue.getIndividual()
          Returns the individual value.
 Individual Individual.getObjectPropertyValue(Ontology ontology, ObjectProperty objectProperty)
          Returns the value of the object property for this individual.
 

Methods in org.semanticweb.kaon2.api.owl.elements that return types with arguments of type Individual
 java.util.Set<Individual> Individual.getDifferentIndividuals(Ontology ontology)
          Returns all individuals which are explicitly asserted in a DifferentIndividuals axiom as being different from this individual.
 java.util.Set<Individual> ObjectOneOf.getIndividuals()
          Returns the individuals in this description.
 java.util.Set<Individual> Description.getMemberIndividuals(Ontology ontology)
          Returns all individuals which are explicitly asserted as members in this description.
 java.util.Map<ObjectProperty,java.util.Set<Individual>> Individual.getObjectPropertyValues(Ontology ontology)
          Returns the values of object properties sorted by properties.
 java.util.Set<Individual> Individual.getSameIndividuals(Ontology ontology)
          Returns all individuals which are explicitly asserted in a SameIndividual axiom as being same as this individual.