Uses of Class
org.dllearner.core.owl.NamedClass

Packages that use NamedClass
org.dllearner.algorithms Learning Algorithms. 
org.dllearner.algorithms.el Learning algorithms for the EL description logic. 
org.dllearner.core Core structure of DL-Learner including the definition of component types and a component manager. 
org.dllearner.core.options Classes for managing the configuration options of DL-Learner components. 
org.dllearner.core.owl Classes/Interfaces for representing OWL constructs - see the OWL 2 Structural Specification for details. 
org.dllearner.kb.sparql Runnable scripts, each for a different task or experiment. 
org.dllearner.learningproblems Supported DL-Learner learning problems. 
org.dllearner.parser DL-Learner parsers. 
org.dllearner.reasoning Implements the connection to other reasoner or own reasoning/caching algorithms. 
org.dllearner.reasoning.fuzzydll   
org.dllearner.refinementoperators Refinement operator implementations. 
org.dllearner.refinementoperators.fuzzydll   
org.dllearner.utilities Utility classes. 
org.dllearner.utilities.datastructures Utility classesfor manipulating general data structures. 
org.dllearner.utilities.examples Utility classes related to finding/modifying examples of learning problems. 
org.dllearner.utilities.learn Reusable learnings tasks. 
org.dllearner.utilities.owl OWL utility classes (file manipulation, converting between different formats, orderings on OWL structures etc.). 
 

Uses of NamedClass in org.dllearner.algorithms
 

Methods in org.dllearner.algorithms that return NamedClass
 NamedClass DisjointClassesLearner.getClassToDescribe()
           
 NamedClass SimpleSubclassLearner.getClassToDescribe()
           
 

Methods in org.dllearner.algorithms with parameters of type NamedClass
 void DisjointClassesLearner.setClassToDescribe(NamedClass classToDescribe)
           
 void SimpleSubclassLearner.setClassToDescribe(NamedClass classToDescribe)
           
 

Uses of NamedClass in org.dllearner.algorithms.el
 

Methods in org.dllearner.algorithms.el that return types with arguments of type NamedClass
 NavigableSet<NamedClass> ELDescriptionNode.getLabel()
          Gets the label of this node.
 

Methods in org.dllearner.algorithms.el with parameters of type NamedClass
 void ELDescriptionNode.extendLabel(NamedClass newClass)
          Adds an entry to the node label.
 void ELDescriptionNode.replaceInLabel(NamedClass oldClass, NamedClass newClass)
          Replaces an entry in the node label.
 

Constructors in org.dllearner.algorithms.el with parameters of type NamedClass
ELDescriptionNode(ELDescriptionNode parentNode, ObjectProperty parentProperty, NamedClass... label)
           
ELDescriptionNode(ELDescriptionTree tree, NamedClass... label)
           
 

Constructor parameters in org.dllearner.algorithms.el with type arguments of type NamedClass
ELDescriptionNode(ELDescriptionNode parentNode, ObjectProperty parentProperty, Set<NamedClass> label)
           
ELDescriptionNode(ELDescriptionTree tree, TreeSet<NamedClass> label)
          Constructs an EL description tree given its root label.
 

Uses of NamedClass in org.dllearner.core
 

Methods in org.dllearner.core that return types with arguments of type NamedClass
 Set<NamedClass> ReasonerOld.getAtomicConcepts()
          Deprecated.  
 List<NamedClass> AbstractReasonerComponent.getAtomicConceptsList()
           
 List<NamedClass> AbstractReasonerComponent.getAtomicConceptsList(boolean removeOWLThing)
           
 Set<NamedClass> ReasonerOld.getConcepts(Individual i)
          Deprecated.  
 Set<NamedClass> SchemaReasoner.getInconsistentClasses()
          Returns all named classes, which are not satisfiable, i.e. cannot have instances.
 Set<NamedClass> AbstractReasonerComponent.getInconsistentClasses()
           
 Set<NamedClass> BaseReasoner.getNamedClasses()
          Gets all named classes in the knowledge base, e.g.
 Set<NamedClass> IndividualReasoner.getTypes(Individual individual)
          Returns types of an individual, i.e. those classes where the individual is instance of.
 Set<NamedClass> AbstractReasonerComponent.getTypes(Individual individual)
           
 

Methods in org.dllearner.core with parameters of type NamedClass
 Set<Description> SchemaReasoner.getAssertedDefinitions(NamedClass namedClass)
          Returns all asserted owl:equivalence class axioms for the given class.
 Set<Description> AbstractReasonerComponent.getAssertedDefinitions(NamedClass namedClass)
           
 

Method parameters in org.dllearner.core with type arguments of type NamedClass
 void ReasonerOld.prepareSubsumptionHierarchy(Set<NamedClass> allowedConcepts)
          Deprecated.  
 

Uses of NamedClass in org.dllearner.core.options
 

Methods in org.dllearner.core.options that return types with arguments of type NamedClass
static SortedSet<NamedClass> CommonConfigMappings.getAtomicConceptSet(Set<String> atomicConcepts)
           
 

Uses of NamedClass in org.dllearner.core.owl
 

Methods in org.dllearner.core.owl that return types with arguments of type NamedClass
 Set<NamedClass> KB.findAllAtomicConcepts()
           
 

Methods in org.dllearner.core.owl with parameters of type NamedClass
 int NamedClass.compareTo(NamedClass o)
           
 boolean ClassHierarchy.isSubclassOf(NamedClass subClass, NamedClass superClass)
          Implements a subsumption check using the hierarchy (no further reasoning checks are used).
 void DescriptionVisitor.visit(NamedClass description)
           
 

Method parameters in org.dllearner.core.owl with type arguments of type NamedClass
 ClassHierarchy ClassHierarchy.cloneAndRestrict(Set<NamedClass> allowedClasses)
          The method computes a new class hierarchy, which is a copy of this one, but only the specified classes are allowed to occur.
 

Uses of NamedClass in org.dllearner.kb.sparql
 

Methods in org.dllearner.kb.sparql that return types with arguments of type NamedClass
 Set<NamedClass> SPARQLTasks.getAllClasses()
           
 

Methods in org.dllearner.kb.sparql with parameters of type NamedClass
 void NaturalLanguageDescriptionConvertVisitor.visit(NamedClass description)
           
 void SparqlQueryDescriptionConvertVisitor.visit(NamedClass description)
           
 

Uses of NamedClass in org.dllearner.learningproblems
 

Methods in org.dllearner.learningproblems that return NamedClass
 NamedClass ClassLearningProblem.getClassToDescribe()
           
 

Uses of NamedClass in org.dllearner.parser
 

Methods in org.dllearner.parser that return NamedClass
 NamedClass KBParser.AtomicConcept()
           
 

Uses of NamedClass in org.dllearner.reasoning
 

Methods in org.dllearner.reasoning that return types with arguments of type NamedClass
 Set<NamedClass> SPARQLReasoner.getInconsistentClasses()
           
 Set<NamedClass> ProtegeReasoner.getInconsistentClassesImpl()
           
 Set<NamedClass> OWLAPIReasoner.getInconsistentClassesImpl()
           
 Set<NamedClass> PelletReasoner.getInconsistentClassesImpl()
           
 Set<NamedClass> ProtegeReasoner.getNamedClasses()
           
 Set<NamedClass> OWLAPIReasoner.getNamedClasses()
           
 Set<NamedClass> PelletReasoner.getNamedClasses()
           
 Set<NamedClass> DIGReasoner.getNamedClasses()
          Constructs a role hierarchy using DIG queries.
 Set<NamedClass> FastRetrievalReasoner.getNamedClasses()
           
 Set<NamedClass> FastInstanceChecker.getNamedClasses()
           
 Set<NamedClass> SPARQLReasoner.getTypes(Individual individual)
           
 Set<NamedClass> ProtegeReasoner.getTypesImpl(Individual individual)
           
 Set<NamedClass> OWLAPIReasoner.getTypesImpl(Individual individual)
           
 Set<NamedClass> PelletReasoner.getTypesImpl(Individual individual)
           
 Set<NamedClass> DIGReasoner.getTypesImpl(Individual individual)
           
 

Methods in org.dllearner.reasoning with parameters of type NamedClass
 Set<Description> SPARQLReasoner.getAssertedDefinitions(NamedClass namedClass)
           
 

Uses of NamedClass in org.dllearner.reasoning.fuzzydll
 

Methods in org.dllearner.reasoning.fuzzydll that return types with arguments of type NamedClass
 Set<NamedClass> FuzzyOWLAPIReasoner.getInconsistentClassesImpl()
           
 Set<NamedClass> FuzzyOWLAPIReasoner.getNamedClasses()
           
 Set<NamedClass> FuzzyOWLAPIReasoner.getTypesImpl(Individual individual)
           
 

Uses of NamedClass in org.dllearner.refinementoperators
 

Methods in org.dllearner.refinementoperators that return types with arguments of type NamedClass
 Set<NamedClass> Utility.getClassCandidates(Description index, Set<NamedClass> existingClasses)
           
 

Methods in org.dllearner.refinementoperators with parameters of type NamedClass
 SortedSet<Description> RhoDRDown.getClassCandidates(NamedClass index)
           
 SortedSet<Description> RhoDRDown.getNegClassCandidates(NamedClass index)
           
 

Method parameters in org.dllearner.refinementoperators with type arguments of type NamedClass
 Set<NamedClass> Utility.getClassCandidates(Description index, Set<NamedClass> existingClasses)
           
 

Constructors in org.dllearner.refinementoperators with parameters of type NamedClass
RhoDRDown(AbstractReasonerComponent reasoningService, ClassHierarchy subHierarchy, OCELConfigurator configurator, boolean applyAllFilter, boolean applyExistsFilter, boolean useAllConstructor, boolean useExistsConstructor, boolean useHasValueConstructor, int valueFrequencyThreshold, boolean useCardinalityRestrictions, boolean useNegation, boolean useBooleanDatatypes, boolean useDoubleDatatypes, NamedClass startClass)
           
 

Uses of NamedClass in org.dllearner.refinementoperators.fuzzydll
 

Methods in org.dllearner.refinementoperators.fuzzydll with parameters of type NamedClass
 SortedSet<Description> FuzzyRhoDRDown.getClassCandidates(NamedClass index)
           
 SortedSet<Description> FuzzyRhoDRDown.getNegClassCandidates(NamedClass index)
           
 

Constructors in org.dllearner.refinementoperators.fuzzydll with parameters of type NamedClass
FuzzyRhoDRDown(AbstractReasonerComponent reasoningService, ClassHierarchy subHierarchy, OCELConfigurator configurator, boolean applyAllFilter, boolean applyExistsFilter, boolean useAllConstructor, boolean useExistsConstructor, boolean useHasValueConstructor, int valueFrequencyThreshold, boolean useCardinalityRestrictions, boolean useNegation, boolean useBooleanDatatypes, boolean useDoubleDatatypes, NamedClass startClass)
           
 

Uses of NamedClass in org.dllearner.utilities
 

Methods in org.dllearner.utilities that return NamedClass
static NamedClass Helper.checkConcepts(AbstractReasonerComponent rs, Set<NamedClass> concepts)
          Checks whether the roles exist in background knowledge
 

Methods in org.dllearner.utilities that return types with arguments of type NamedClass
static Set<NamedClass> Helper.computeConcepts(AbstractReasonerComponent rs)
           
static Set<NamedClass> Helper.computeConceptsUsingIgnoreList(AbstractReasonerComponent rs, Set<NamedClass> ignoredConcepts)
           
static List<NamedClass> Helper.getAtomicConcepts(Description concept)
           
 

Method parameters in org.dllearner.utilities with type arguments of type NamedClass
static NamedClass Helper.checkConcepts(AbstractReasonerComponent rs, Set<NamedClass> concepts)
          Checks whether the roles exist in background knowledge
static Set<NamedClass> Helper.computeConceptsUsingIgnoreList(AbstractReasonerComponent rs, Set<NamedClass> ignoredConcepts)
           
static void Helper.removeUninterestingConcepts(Set<NamedClass> concepts)
          Deprecated. Deprecated method, because it is not needed anymore.
 

Uses of NamedClass in org.dllearner.utilities.datastructures
 

Method parameters in org.dllearner.utilities.datastructures with type arguments of type NamedClass
static String[] Datastructures.sortedSet2StringListConcepts(Set<NamedClass> s)
           
 

Uses of NamedClass in org.dllearner.utilities.examples
 

Methods in org.dllearner.utilities.examples with parameters of type NamedClass
 void AutomaticNegativeExampleFinderOWL.makeNegativeExamplesFromSuperClasses(NamedClass concept)
          if pos ex derive from one class, then neg ex are taken from a superclass
 void AutomaticNegativeExampleFinderOWL.makeNegativeExamplesFromSuperClasses(NamedClass concept, int depth)
          if pos ex derive from one class, then neg ex are taken from a superclass CURRENTLY SAME METHOD AS makeNegativeExamplesFromSuperClasses(NamedClass concept) but works quite often
 

Uses of NamedClass in org.dllearner.utilities.learn
 

Methods in org.dllearner.utilities.learn that return types with arguments of type NamedClass
 Map<Set<ObjectProperty>,Set<NamedClass>> UsedEntitiesDetection.getUsedClasses()
           
 

Uses of NamedClass in org.dllearner.utilities.owl
 

Methods in org.dllearner.utilities.owl with parameters of type NamedClass
 void OWLAPIDescriptionConvertVisitor.visit(NamedClass description)
           
 

Constructor parameters in org.dllearner.utilities.owl with type arguments of type NamedClass
ConceptComparator(Set<NamedClass> atomicConcepts)
           
 



SourceForge.net Logo DL-Learner is licenced under the terms of the GNU General Public License.
Copyright © 2007-2011 Jens Lehmann