congrats Icon
New! Announcing our next generation AI code completions
Read here
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

  • Start an intent from android
  • getContentResolver (Context)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • runOnUiThread (Activity)
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • ImageIO (javax.imageio)
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • Table (org.hibernate.mapping)
    A relational table
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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