Codota Logo
OWLObject.datatypesInSignature
Code IndexAdd Codota to your IDE (free)

How to use
datatypesInSignature
method
in
org.semanticweb.owlapi.model.OWLObject

Best Java code snippets using org.semanticweb.owlapi.model.OWLObject.datatypesInSignature (Showing top 3 results out of 315)

  • Common ways to obtain OWLObject
private void myMethod () {
OWLObject o =
  • Codota IconOWLObjectTreeNode parentNode;parentNode.getOWLObject()
  • Codota IconOWLObjectTree tree;tree.getSelectedOWLObject()
  • Codota IconOWLAnnotationAssertionAxiom oWLAnnotationAssertionAxiom;oWLAnnotationAssertionAxiom.getSubject()
  • Smart code suggestions by Codota
}
origin: owlcs/owlapi

private void getDatatypesInSignature(Set<OWLDatatype> datatypes, OWLObject obj,
  Set<OWLAxiom> axioms) {
  Consumer<? super OWLDatatypeDefinitionAxiom> addAndRecurse = ax -> {
    axioms.add(ax);
    getDatatypesInSignature(datatypes, ax.getDataRange(), axioms);
  };
  obj.datatypesInSignature().filter(datatypes::add)
    .forEach(dt -> datatypeDefinitions(dt).forEach(addAndRecurse));
}
origin: net.sourceforge.owlapi/owlapi-distribution

private void getDatatypesInSignature(Set<OWLDatatype> datatypes, OWLObject obj,
  Set<OWLAxiom> axioms) {
  Consumer<? super OWLDatatypeDefinitionAxiom> addAndRecurse = ax -> {
    axioms.add(ax);
    getDatatypesInSignature(datatypes, ax.getDataRange(), axioms);
  };
  obj.datatypesInSignature().filter(datatypes::add)
    .forEach(dt -> datatypeDefinitions(dt).forEach(addAndRecurse));
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

private void getDatatypesInSignature(Set<OWLDatatype> datatypes, OWLObject obj,
  Set<OWLAxiom> axioms) {
  Consumer<? super OWLDatatypeDefinitionAxiom> addAndRecurse = ax -> {
    axioms.add(ax);
    getDatatypesInSignature(datatypes, ax.getDataRange(), axioms);
  };
  obj.datatypesInSignature().filter(datatypes::add)
    .forEach(dt -> datatypeDefinitions(dt).forEach(addAndRecurse));
}
org.semanticweb.owlapi.modelOWLObjectdatatypesInSignature

Popular methods of OWLObject

  • accept
    Accepts a visitor
  • compareTo
  • isTopEntity
    Determines if this object is either, owl:Thing (the top class), owl:topObjectProperty (the top objec
  • isBottomEntity
    Determines if this object is either, owl:Nothing (the bottom class), owl:bottomObjectProperty (the b
  • isIRI
  • hashIteration
    Iteration for hash codes
  • signature
  • components
  • hasSharedStructure
  • isAnonymous
  • isAnonymousExpression
  • isAxiom
  • isAnonymousExpression,
  • isAxiom,
  • isIndividual,
  • isOntology,
  • nestedClassExpressions,
  • toString,
  • typeIndex,
  • classesInSignature,
  • dataPropertiesInSignature

Popular in Java

  • Making http post requests using okhttp
  • findViewById (Activity)
  • scheduleAtFixedRate (ScheduledExecutorService)
    Creates and executes a periodic action that becomes enabled first after the given initial delay, and
  • onCreateOptionsMenu (Activity)
  • Color (java.awt)
    The Color class is used encapsulate colors in the default sRGB color space or colors in arbitrary co
  • Selector (java.nio.channels)
    A controller for the selection of SelectableChannel objects. Selectable channels can be registered w
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • HashSet (java.util)
    This class implements the Set interface, backed by a hash table (actually a HashMap instance). It m
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • JTextField (javax.swing)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now