congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
OWLDataFactory.getOWLDisjointObjectPropertiesAxiom
Code IndexAdd Tabnine 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)

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

  • Making http requests using okhttp
  • onRequestPermissionsResult (Fragment)
  • getApplicationContext (Context)
  • addToBackStack (FragmentTransaction)
  • BufferedReader (java.io)
    Wraps an existing Reader and buffers the input. Expensive interaction with the underlying reader is
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • Thread (java.lang)
    A thread is a thread of execution in a program. The Java Virtual Machine allows an application to ha
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • JButton (javax.swing)
  • PhpStorm for WordPress
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