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

  • Making http requests using okhttp
  • addToBackStack (FragmentTransaction)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • requestLocationUpdates (LocationManager)
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • Socket (java.net)
    Provides a client-side TCP socket.
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • Top plugins for WebStorm
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