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

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

Best Java code snippets using org.semanticweb.owlapi.model.OWLDataFactory.getOWLDisjointObjectPropertiesAxiom (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: owlcs/owlapi

  @Override
  public OWLDisjointObjectPropertiesAxiom buildObject() {
    return df.getOWLDisjointObjectPropertiesAxiom(items, annotations);
  }
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

  @Override
  public OWLDisjointObjectPropertiesAxiom buildObject() {
    return df.getOWLDisjointObjectPropertiesAxiom(items, annotations);
  }
}
origin: net.sourceforge.owlapi/owlapi-fixers

  @Override
  public OWLDisjointObjectPropertiesAxiom buildObject() {
    return df.getOWLDisjointObjectPropertiesAxiom(items, annotations);
  }
}
origin: net.sourceforge.owlapi/owlapi-distribution

  @Override
  public OWLDisjointObjectPropertiesAxiom buildObject() {
    return df.getOWLDisjointObjectPropertiesAxiom(items, annotations);
  }
}
origin: owlcs/owlapi

public static OWLDisjointObjectPropertiesAxiom DisjointObjectProperties(
  Collection<OWLAnnotation> a,
  OWLObjectPropertyExpression... properties) {
  return DF.getOWLDisjointObjectPropertiesAxiom(Arrays.asList(properties), a);
}
origin: net.sourceforge.owlapi/owlapi-apibinding

public static OWLDisjointObjectPropertiesAxiom DisjointObjectProperties(
  Collection<OWLAnnotation> a,
  OWLObjectPropertyExpression... properties) {
  return DF.getOWLDisjointObjectPropertiesAxiom(Arrays.asList(properties), a);
}
origin: protegeproject/protege

protected OWLDisjointObjectPropertiesAxiom createAxiom(Set<OWLObjectPropertyExpression> editedObject) {
  Set<OWLObjectPropertyExpression> props = new HashSet<>();
  props.add(getRootObject());
  props.addAll(editedObject);
  return getOWLDataFactory().getOWLDisjointObjectPropertiesAxiom(props);
}
origin: protegeproject/protege

protected OWLDisjointObjectPropertiesAxiom createAxiom(Set<OWLObjectPropertyExpression> object) {
  Set<OWLObjectPropertyExpression> disjoints = new HashSet<>(object);
  disjoints.add(getRootObject());
  return getOWLDataFactory().getOWLDisjointObjectPropertiesAxiom(disjoints);
}

origin: org.protege/protege-editor-owl

protected OWLDisjointObjectPropertiesAxiom createAxiom(Set<OWLObjectPropertyExpression> object) {
  Set<OWLObjectPropertyExpression> disjoints = new HashSet<OWLObjectPropertyExpression>(object);
  disjoints.add(getRootObject());
  return getOWLDataFactory().getOWLDisjointObjectPropertiesAxiom(disjoints);
}

origin: owlcs/owlapi

 final public OWLPropertyAxiom DisjointObjectProperties() throws ParseException {Set<OWLObjectPropertyExpression> props;
  Set<OWLAnnotation> axiomAnnos;
  jj_consume_token(DISJOINTOBJECTPROPERTIES);
  jj_consume_token(OPENPAR);
  axiomAnnos = AxiomAnnotationSet();
  props = ObjectPropertySet();
  jj_consume_token(CLOSEPAR);
return df.getOWLDisjointObjectPropertiesAxiom(props, axiomAnnos);
}

origin: owlcs/owlapi

@Override
public Object visit(OWLDisjointObjectPropertiesAxiom axiom) {
  return visitAxiom(axiom,
    () -> df.getOWLDisjointObjectPropertiesAxiom(t(axiom.properties()), t(axiom
      .annotations())));
}
origin: net.sourceforge.owlapi/owlapi-distribution

 final public OWLPropertyAxiom DisjointObjectProperties() throws ParseException {Set<OWLObjectPropertyExpression> props;
  Set<OWLAnnotation> axiomAnnos;
  jj_consume_token(DISJOINTOBJECTPROPERTIES);
  jj_consume_token(OPENPAR);
  axiomAnnos = AxiomAnnotationSet();
  props = ObjectPropertySet();
  jj_consume_token(CLOSEPAR);
return df.getOWLDisjointObjectPropertiesAxiom(props, axiomAnnos);
}

origin: net.sourceforge.owlapi/owlapi-osgidistribution

@Override
public Object visit(OWLDisjointObjectPropertiesAxiom axiom) {
  return visitAxiom(axiom,
    () -> df.getOWLDisjointObjectPropertiesAxiom(t(axiom.properties()), t(axiom
      .annotations())));
}
origin: net.sourceforge.owlapi/owlapi-parsers

 final public OWLPropertyAxiom DisjointObjectProperties() throws ParseException {Set<OWLObjectPropertyExpression> props;
  Set<OWLAnnotation> axiomAnnos;
  jj_consume_token(DISJOINTOBJECTPROPERTIES);
  jj_consume_token(OPENPAR);
  axiomAnnos = AxiomAnnotationSet();
  props = ObjectPropertySet();
  jj_consume_token(CLOSEPAR);
return df.getOWLDisjointObjectPropertiesAxiom(props, axiomAnnos);
}

origin: com.github.ansell.owlapi/owlapi-parsers

final public OWLPropertyAxiom DisjointObjectProperties() throws ParseException {
  Set<OWLObjectPropertyExpression> props;
  Set<OWLAnnotation> axiomAnnos;
  jj_consume_token(DISJOINTOBJECTPROPERTIES);
  jj_consume_token(OPENPAR);
  axiomAnnos = AxiomAnnotationSet();
  props = ObjectPropertySet();
  jj_consume_token(CLOSEPAR);
  return dataFactory.getOWLDisjointObjectPropertiesAxiom(props, axiomAnnos);
}
origin: owlcs/owlapi

 final public void DisjointRoles() throws ParseException, KRSS2OWLParserException {OWLObjectPropertyExpression exp1;
  OWLObjectPropertyExpression exp2;
  jj_consume_token(OPENPAR);
  jj_consume_token(DISJOINTROLES);
  exp1 = RoleExpression();
  exp2 = RoleExpression();
  jj_consume_token(CLOSEPAR);
addAxiom(df.getOWLDisjointObjectPropertiesAxiom(exp1, exp2));
}

origin: net.sourceforge.owlapi/owlapi-distribution

 final public void DisjointRoles() throws ParseException, KRSS2OWLParserException {OWLObjectPropertyExpression exp1;
  OWLObjectPropertyExpression exp2;
  jj_consume_token(OPENPAR);
  jj_consume_token(DISJOINTROLES);
  exp1 = RoleExpression();
  exp2 = RoleExpression();
  jj_consume_token(CLOSEPAR);
addAxiom(df.getOWLDisjointObjectPropertiesAxiom(exp1, exp2));
}

origin: net.sourceforge.owlapi/owlapi-osgidistribution

 final public void DisjointRoles() throws ParseException, KRSS2OWLParserException {OWLObjectPropertyExpression exp1;
  OWLObjectPropertyExpression exp2;
  jj_consume_token(OPENPAR);
  jj_consume_token(DISJOINTROLES);
  exp1 = RoleExpression();
  exp2 = RoleExpression();
  jj_consume_token(CLOSEPAR);
addAxiom(df.getOWLDisjointObjectPropertiesAxiom(exp1, exp2));
}

origin: net.sourceforge.owlapi/owlapi-krss

final public void DisjointRoles() throws ParseException, KRSS2OWLParserException {
 OWLObjectPropertyExpression exp1;
 OWLObjectPropertyExpression exp2;
 jj_consume_token(OPENPAR);
 jj_consume_token(DISJOINTROLES);
 exp1 = RoleExpression();
 exp2 = RoleExpression();
 jj_consume_token(CLOSEPAR);
   addAxiom(dataFactory.getOWLDisjointObjectPropertiesAxiom(exp1, exp2));
}
origin: net.sourceforge.owlapi/owlapi

final public void DisjointRoles() throws ParseException, KRSS2OWLParserException {
 OWLObjectPropertyExpression exp1;
 OWLObjectPropertyExpression exp2;
 jj_consume_token(OPENPAR);
 jj_consume_token(DISJOINTROLES);
 exp1 = RoleExpression();
 exp2 = RoleExpression();
 jj_consume_token(CLOSEPAR);
   addAxiom(dataFactory.getOWLDisjointObjectPropertiesAxiom(exp1, exp2));
}
org.semanticweb.owlapi.modelOWLDataFactorygetOWLDisjointObjectPropertiesAxiom

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

  • Parsing JSON documents to java classes using gson
  • scheduleAtFixedRate (ScheduledExecutorService)
  • setScale (BigDecimal)
    Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
  • orElseThrow (Optional)
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • Collectors (java.util.stream)
  • JList (javax.swing)
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
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