congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
OWLDataFactory.getIntegerOWLDatatype
Code IndexAdd Tabnine to your IDE (free)

How to use
getIntegerOWLDatatype
method
in
org.semanticweb.owlapi.model.OWLDataFactory

Best Java code snippets using org.semanticweb.owlapi.model.OWLDataFactory.getIntegerOWLDatatype (Showing top 7 results out of 315)

origin: protegeproject/webprotege

public static OWLDatatype getXSDInteger() {
  return dataFactory.getIntegerOWLDatatype();
}
origin: net.sourceforge.owlapi/owlapi-apibinding

public static OWLDatatype Integer() {
  return DF.getIntegerOWLDatatype();
}
origin: owlcs/owlapi

public static OWLDatatype Integer() {
  return DF.getIntegerOWLDatatype();
}
origin: net.sourceforge.owlapi/owlapi-distribution

public static OWLDatatype Integer() {
  return DF.getIntegerOWLDatatype();
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

public static OWLDatatype Integer() {
  return DF.getIntegerOWLDatatype();
}
origin: net.sourceforge.owlapi/owlapi-turtle

private void write(RDFLiteralNode node) {
  if (node.getDatatype() != null) {
    if (node.getDatatype().equals(manager.getOWLDataFactory().getIntegerOWLDatatype().getIRI())) {
      write(node.getLiteral());
    }
    else if (node.getDatatype().equals(XSDVocabulary.DECIMAL.getIRI())) {
      write(node.getLiteral());
    }
    else {
      writeStringLiteral(node.getLiteral());
      write("^^");
      write(node.getDatatype());
    }
  }
  else {
    writeStringLiteral(node.getLiteral());
    if (node.getLang() != null) {
      write("@");
      write(node.getLang());
    }
  }
}
origin: SmartDataAnalytics/DL-Learner

case 46:
 jj_consume_token(46);
         range = df.getIntegerOWLDatatype();
 break;
default:
org.semanticweb.owlapi.modelOWLDataFactorygetIntegerOWLDatatype

Javadoc

A convenience method that obtains the datatype that represents integers. This datatype will have the URI of <http://www.w3.org/2001/XMLSchema#integer>

Popular methods of OWLDataFactory

  • getOWLClass
    Gets an OWL class that has the specified IRI
  • getOWLNamedIndividual
    Gets an OWL individual that has the specified IRI
  • getOWLObjectProperty
    Gets an OWL object property that has the specified IRI
  • getOWLSubClassOfAxiom
  • getOWLClassAssertionAxiom
  • getOWLDataProperty
    Gets an OWL data property that has the specified IRI
  • getOWLThing
    Gets the built in owl:Thing class, which has a URI of
  • getOWLAnnotationProperty
    Gets an OWLAnnotationProperty that has the specified IRI
  • getOWLLiteral
    Convenience method that obtains a literal typed as a boolean.
  • getOWLDeclarationAxiom
    Gets a declaration with zero or more annotations for an entity
  • getOWLObjectIntersectionOf
  • getOWLEquivalentClassesAxiom
  • getOWLObjectIntersectionOf,
  • getOWLEquivalentClassesAxiom,
  • getOWLObjectSomeValuesFrom,
  • getOWLNothing,
  • getOWLObjectComplementOf,
  • getOWLObjectPropertyAssertionAxiom,
  • getOWLAnnotationAssertionAxiom,
  • getOWLDataPropertyAssertionAxiom,
  • getOWLDatatype,
  • getOWLAnnotation

Popular in Java

  • Reactive rest calls using spring rest template
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getResourceAsStream (ClassLoader)
  • runOnUiThread (Activity)
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • Top Vim plugins
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