Codota Logo
OWLDataFactory.getOWLTopObjectProperty
Code IndexAdd Codota to your IDE (free)

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

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

  • Common ways to obtain OWLDataFactory
private void myMethod () {
OWLDataFactory o =
  • Codota IconOWLOntologyManager manager;manager.getOWLDataFactory()
  • Codota IconOWLOntology ontology;ontology.getOWLOntologyManager().getOWLDataFactory()
  • Codota IconOWLManager.getOWLDataFactory()
  • Smart code suggestions by Codota
}
origin: protegeproject/webprotege

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

@Nullable
@Override
protected OWLObjectProperty getTopEntity() {
  return df.getOWLTopObjectProperty();
}
origin: net.sourceforge.owlapi/jfact

@Nullable
@Override
protected OWLObjectProperty getTopEntity() {
  return df.getOWLTopObjectProperty();
}
origin: protegeproject/protege

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

origin: net.sourceforge.owlapi/jfact

@Nullable
@Override
protected ObjectRoleExpression getTopEntityPointer() {
  return em.objectRole(df.getOWLTopObjectProperty());
}
origin: com.github.ansell.pellet/pellet-owlapiv3

  public OWLObjectProperty map(ATermAppl term) {
    if( ATermUtils.TOP_OBJECT_PROPERTY.equals( term ) )
      return factory.getOWLTopObjectProperty();
    if( ATermUtils.BOTTOM_OBJECT_PROPERTY.equals( term ) )
      return factory.getOWLBottomObjectProperty();
    return factory.getOWLObjectProperty( iri( term ) );
  }
}
origin: edu.stanford.protege/org.protege.editor.owl

@Override
public Boolean visit(OWLSubObjectPropertyOfAxiom axiom) {
  return axiom.getSuperProperty().equals(factory.getOWLTopObjectProperty()) || axiom.getSubProperty().equals(factory.getOWLBottomObjectProperty());
}
origin: protegeproject/protege

@Override
public Boolean visit(OWLSubObjectPropertyOfAxiom axiom) {
  return axiom.getSuperProperty().equals(factory.getOWLTopObjectProperty()) || axiom.getSubProperty().equals(factory.getOWLBottomObjectProperty());
}
origin: SmartDataAnalytics/DL-Learner

@Nonnull
@Override
public Node<OWLObjectPropertyExpression> getTopObjectPropertyNode() {
  ensurePrepared();
  return objectPropertyHierarchyInfo.getEquivalents(getDataFactory().getOWLTopObjectProperty());
}
origin: owlcs/owlapi

@Override
public Node<OWLObjectPropertyExpression> getTopObjectPropertyNode() {
  ensurePrepared();
  return objectPropertyHierarchyInfo
    .getEquivalents(getDataFactory().getOWLTopObjectProperty());
}
origin: net.sourceforge.owlapi/owlapi-distribution

@Override
public Node<OWLObjectPropertyExpression> getTopObjectPropertyNode() {
  ensurePrepared();
  return objectPropertyHierarchyInfo
    .getEquivalents(getDataFactory().getOWLTopObjectProperty());
}
origin: edu.stanford.protege/org.protege.editor.owl

public Node<OWLObjectPropertyExpression> getTopObjectPropertyNode() {
  OWLDataFactory factory = rootOntology.getOWLOntologyManager().getOWLDataFactory();
  return new OWLObjectPropertyNode(factory.getOWLTopObjectProperty());
}
origin: net.sourceforge.owlapi/owlapi-reasoner

public Node<OWLObjectPropertyExpression> getTopObjectPropertyNode() {
  ensurePrepared();
  return objectPropertyHierarchyInfo.getEquivalents(getDataFactory().getOWLTopObjectProperty());
}
origin: it.unibz.inf.ontop/ontop-quest-owlapi3

public Node<OWLObjectPropertyExpression> getTopObjectPropertyNode() {
  ensurePrepared();
  return objectPropertyHierarchyInfo.getEquivalents(getDataFactory().getOWLTopObjectProperty());
}
origin: net.sourceforge.owlapi/owlapi-impl

@Override
public Node<OWLObjectPropertyExpression> getTopObjectPropertyNode() {
  ensurePrepared();
  return objectPropertyHierarchyInfo
    .getEquivalents(getDataFactory().getOWLTopObjectProperty());
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

@Override
public Node<OWLObjectPropertyExpression> getTopObjectPropertyNode() {
  ensurePrepared();
  return objectPropertyHierarchyInfo
    .getEquivalents(getDataFactory().getOWLTopObjectProperty());
}
origin: net.sourceforge.owlapi/pellet-owlapi-ignazio1977

  @Override
  public OWLObjectPropertyExpression map(ATermAppl term) {
    if( ATermUtils.TOP_OBJECT_PROPERTY.equals( term ) )
      return factory.getOWLTopObjectProperty();
    if( ATermUtils.BOTTOM_OBJECT_PROPERTY.equals( term ) )
      return factory.getOWLBottomObjectProperty();
    if( ATermUtils.isInv( term ) )
      return factory.getOWLObjectInverseOf( OP_MAPPER.map(term) );
    return factory.getOWLObjectProperty( iri( term ) );
  }
}
origin: net.sourceforge.owlapi/owlapi

private ObjectPropertyHierarchyInfo() {
  super("object property",
      getDataFactory().getOWLTopObjectProperty(),
      getDataFactory().getOWLBottomObjectProperty(),
      new RawObjectPropertyHierarchyProvider());
}
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.modelOWLDataFactorygetOWLTopObjectProperty

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

  • Updating database using SQL prepared statement
  • addToBackStack (FragmentTransaction)
  • scheduleAtFixedRate (ScheduledExecutorService)
    Creates and executes a periodic action that becomes enabled first after the given initial delay, and
  • getSystemService (Context)
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • BufferedInputStream (java.io)
    Wraps an existing InputStream and buffers the input. Expensive interaction with the underlying input
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate(i
  • Iterator (java.util)
    An iterator over a collection. Iterator takes the place of Enumeration in the Java Collections Frame
  • JFileChooser (javax.swing)
  • JOptionPane (javax.swing)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now