congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
OWLDataFactory.getOWLTopDataProperty
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: protegeproject/webprotege

  @Override
  public OWLDataProperty get() {
    return dataFactory.getOWLTopDataProperty();
  }
}
origin: net.sourceforge.owlapi/jfact

@Nullable
@Override
protected OWLDataProperty getTopEntity() {
  return df.getOWLTopDataProperty();
}
origin: edu.stanford.protege/org.protege.editor.owl

@Override
public Boolean visit(OWLDataPropertyAssertionAxiom axiom) {
  return axiom.getProperty().equals(factory.getOWLTopDataProperty());
}

origin: com.github.galigator.openllet/openllet-owlapi

  @Override
  public OWLDataProperty map(final ATermAppl term)
  {
    if (ATermUtils.TOP_DATA_PROPERTY.equals(term))
      return _factory.getOWLTopDataProperty();
    if (ATermUtils.BOTTOM_DATA_PROPERTY.equals(term))
      return _factory.getOWLBottomDataProperty();
    return _factory.getOWLDataProperty(iri(term));
  }
}
origin: net.sourceforge.owlapi/pellet-owlapi-ignazio1977

  @Override
  public OWLDataProperty map(ATermAppl term) {
    if( ATermUtils.TOP_DATA_PROPERTY.equals( term ) )
      return factory.getOWLTopDataProperty();
    if( ATermUtils.BOTTOM_DATA_PROPERTY.equals( term ) )
      return factory.getOWLBottomDataProperty();
    return factory.getOWLDataProperty( iri( term ) );
  }
}
origin: Galigator/openllet

  @Override
  public OWLDataProperty map(final ATermAppl term)
  {
    if (ATermUtils.TOP_DATA_PROPERTY.equals(term))
      return _factory.getOWLTopDataProperty();
    if (ATermUtils.BOTTOM_DATA_PROPERTY.equals(term))
      return _factory.getOWLBottomDataProperty();
    return _factory.getOWLDataProperty(iri(term));
  }
}
origin: com.github.ansell.pellet/pellet-owlapiv3

  @Override
  public OWLDataProperty map(ATermAppl term) {
    if( ATermUtils.TOP_DATA_PROPERTY.equals( term ) )
      return factory.getOWLTopDataProperty();
    if( ATermUtils.BOTTOM_DATA_PROPERTY.equals( term ) )
      return factory.getOWLBottomDataProperty();
    return factory.getOWLDataProperty( iri( term ) );
  }
}
origin: Galigator/openllet

  @Override
  public OWLDataProperty map(final ATermAppl term)
  {
    if (ATermUtils.TOP_DATA_PROPERTY.equals(term))
      return _factory.getOWLTopDataProperty();
    if (ATermUtils.BOTTOM_DATA_PROPERTY.equals(term))
      return _factory.getOWLBottomDataProperty();
    return _factory.getOWLDataProperty(iri(term));
  }
}
origin: protegeproject/protege

@Override
public Boolean visit(OWLSubDataPropertyOfAxiom axiom) {
  return axiom.getSuperProperty().equals(factory.getOWLTopDataProperty()) || axiom.getSubProperty().equals(factory.getOWLBottomDataProperty());
}
origin: org.protege/protege-editor-owl

  protected OWLDataProperty getRoot() {
    return getManager().getOWLDataFactory().getOWLTopDataProperty();
  }
}
origin: net.sourceforge.owlapi/owlapi-distribution

@Override
public Node<OWLDataProperty> getTopDataPropertyNode() {
  ensurePrepared();
  return dataPropertyHierarchyInfo.getEquivalents(getDataFactory().getOWLTopDataProperty());
}
origin: owlcs/owlapi

@Override
public Node<OWLDataProperty> getTopDataPropertyNode() {
  ensurePrepared();
  return dataPropertyHierarchyInfo.getEquivalents(getDataFactory().getOWLTopDataProperty());
}
origin: net.sourceforge.owlapi/owlapi-impl

@Override
public Node<OWLDataProperty> getTopDataPropertyNode() {
  ensurePrepared();
  return dataPropertyHierarchyInfo.getEquivalents(getDataFactory().getOWLTopDataProperty());
}
origin: org.semanticweb.more/more-reasoner

@Override
public Node<OWLDataProperty> getTopDataPropertyNode() {		
  LogOutput.printNotSupported("Not supported: getTopDataPropertyNode");
  //return null;
  return new OWLDataPropertyNode(manager.getOWLDataFactory().getOWLTopDataProperty());
}
origin: net.sourceforge.owlapi/owlapi-reasoner

public Node<OWLDataProperty> getTopDataPropertyNode() {
  ensurePrepared();
  return dataPropertyHierarchyInfo.getEquivalents(getDataFactory().getOWLTopDataProperty());
}
origin: it.unibz.inf.ontop/ontop-quest-owlapi3

public Node<OWLDataProperty> getTopDataPropertyNode() {
  ensurePrepared();
  return dataPropertyHierarchyInfo.getEquivalents(getDataFactory().getOWLTopDataProperty());
}
origin: net.sourceforge.owlapi/owlapi

private DataPropertyHierarchyInfo() {
  super("data property",
      getDataFactory().getOWLTopDataProperty(),
      getDataFactory().getOWLBottomDataProperty(),
      new RawDataPropertyHierarchyProvider());
}
origin: owlcs/owlapi

DataPropertyHierarchyInfo() {
  super("data property", getDataFactory().getOWLTopDataProperty(), getDataFactory()
    .getOWLBottomDataProperty(), new RawDataPropertyHierarchyProvider());
}
origin: protegeproject/protege

protected NoOpReasoner(OWLOntology rootOntology, OWLDataFactory df) {
  this.rootOntology = rootOntology;
  OWL_THING = df.getOWLThing();
  OWL_NOTHING = df.getOWLNothing();
  OWL_TOP_OBJECT_PROPERTY = df.getOWLTopObjectProperty();
  OWL_BOTTOM_OBJECT_PROPERTY = df.getOWLBottomObjectProperty();
  OWL_TOP_DATA_PROPERTY = df.getOWLTopDataProperty();
  OWL_BOTTOM_DATA_PROPERTY = df.getOWLBottomDataProperty();
}
origin: edu.stanford.protege/protege-editor-owl

protected NoOpReasoner(OWLOntology rootOntology, OWLDataFactory df) {
  this.rootOntology = rootOntology;
  OWL_THING = df.getOWLThing();
  OWL_NOTHING = df.getOWLNothing();
  OWL_TOP_OBJECT_PROPERTY = df.getOWLTopObjectProperty();
  OWL_BOTTOM_OBJECT_PROPERTY = df.getOWLBottomObjectProperty();
  OWL_TOP_DATA_PROPERTY = df.getOWLTopDataProperty();
  OWL_BOTTOM_DATA_PROPERTY = df.getOWLBottomDataProperty();
}
org.semanticweb.owlapi.modelOWLDataFactorygetOWLTopDataProperty

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

  • Reading from database using SQL prepared statement
  • getApplicationContext (Context)
  • getExternalFilesDir (Context)
  • scheduleAtFixedRate (Timer)
  • ObjectMapper (com.fasterxml.jackson.databind)
    ObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Pl
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
  • Top 15 Vim Plugins
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