Tabnine Logo
OWLObject.datatypesInSignature
Code IndexAdd Tabnine 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)

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 requests using okhttp
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • setScale (BigDecimal)
  • putExtra (Intent)
  • ObjectMapper (com.fasterxml.jackson.databind)
    ObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Pl
  • Menu (java.awt)
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement. A servlet is a small Java program that runs within
  • Top 12 Jupyter Notebook extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now