congrats Icon
New! Announcing our next generation AI code completions
Read here
Tabnine Logo
OWLDataFactory.getOWLIrreflexiveObjectPropertyAxiom
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: owlcs/owlapi

public static OWLIrreflexiveObjectPropertyAxiom IrreflexiveObjectProperty(
  OWLObjectPropertyExpression property,
  Collection<OWLAnnotation> a) {
  return DF.getOWLIrreflexiveObjectPropertyAxiom(property, a);
}
origin: net.sourceforge.owlapi/owlapi-distribution

public static OWLIrreflexiveObjectPropertyAxiom IrreflexiveObjectProperty(
  OWLObjectPropertyExpression property,
  Collection<OWLAnnotation> a) {
  return DF.getOWLIrreflexiveObjectPropertyAxiom(property, a);
}
origin: owlcs/owlapi

  @Override
  public OWLIrreflexiveObjectPropertyAxiom buildObject() {
    return df.getOWLIrreflexiveObjectPropertyAxiom(verifyNotNull(getProperty()), annotations);
  }
}
origin: net.sourceforge.owlapi/owlapi-distribution

  @Override
  public OWLIrreflexiveObjectPropertyAxiom buildObject() {
    return df.getOWLIrreflexiveObjectPropertyAxiom(verifyNotNull(getProperty()), annotations);
  }
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

  @Override
  public OWLIrreflexiveObjectPropertyAxiom buildObject() {
    return df.getOWLIrreflexiveObjectPropertyAxiom(verifyNotNull(getProperty()), annotations);
  }
}
origin: SmartDataAnalytics/DL-Learner

@Override
public void visit(OWLIrreflexiveObjectPropertyAxiom axiom) {
  OWLObjectPropertyExpression property = axiom.getProperty();
  property = expressionRenamer.rename(property);
  renamedAxiom = df.getOWLIrreflexiveObjectPropertyAxiom(property);
}
origin: com.github.ansell.owlapi/owlapi-parsers

  @Override
  protected OWLAxiom createPropertyCharacteristicAxiom() {
    return getOWLDataFactory().getOWLIrreflexiveObjectPropertyAxiom(getProperty(), getAnnotations());
  }
}
origin: net.sourceforge.owlapi/owlapi

public OWLIrreflexiveObjectPropertyAxiom getAxiomWithoutAnnotations() {
  if(!isAnnotated()) {
    return this;
  }
  return getOWLDataFactory().getOWLIrreflexiveObjectPropertyAxiom(getProperty());
}
origin: owlcs/owlapi

 final public OWLPropertyAxiom IrreflexiveObjectProperty() throws ParseException {OWLObjectPropertyExpression prop;
  Set<OWLAnnotation> axiomAnnos;
  jj_consume_token(IRREFLEXIVEOBJECTPROPERTY);
  jj_consume_token(OPENPAR);
  axiomAnnos = AxiomAnnotationSet();
  prop = ObjectPropertyExpression();
  jj_consume_token(CLOSEPAR);
return df.getOWLIrreflexiveObjectPropertyAxiom(prop, axiomAnnos);
}

origin: net.sourceforge.owlapi/owlapi-osgidistribution

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

 final public OWLPropertyAxiom IrreflexiveObjectProperty() throws ParseException {OWLObjectPropertyExpression prop;
  Set<OWLAnnotation> axiomAnnos;
  jj_consume_token(IRREFLEXIVEOBJECTPROPERTY);
  jj_consume_token(OPENPAR);
  axiomAnnos = AxiomAnnotationSet();
  prop = ObjectPropertyExpression();
  jj_consume_token(CLOSEPAR);
return df.getOWLIrreflexiveObjectPropertyAxiom(prop, axiomAnnos);
}

origin: owlcs/owlapi

  @Override
  public void handleTriple(IRI s, IRI p, IRI o) {
    if (isOpLax(s)) {
      add(df.getOWLIrreflexiveObjectPropertyAxiom(op(s), anns()));
      consume(s, p, o);
    }
  }
}
origin: owlcs/owlapi

@Override
public Object visit(OWLIrreflexiveObjectPropertyAxiom axiom) {
  return visitAxiom(axiom,
    () -> df.getOWLIrreflexiveObjectPropertyAxiom(t(axiom.getProperty()), t(axiom
      .annotations())));
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

 final public OWLPropertyAxiom IrreflexiveObjectProperty() throws ParseException {OWLObjectPropertyExpression prop;
  Set<OWLAnnotation> axiomAnnos;
  jj_consume_token(IRREFLEXIVEOBJECTPROPERTY);
  jj_consume_token(OPENPAR);
  axiomAnnos = AxiomAnnotationSet();
  prop = ObjectPropertyExpression();
  jj_consume_token(CLOSEPAR);
return df.getOWLIrreflexiveObjectPropertyAxiom(prop, axiomAnnos);
}

origin: net.sourceforge.owlapi/owlapi-distribution

@Override
public Object visit(OWLIrreflexiveObjectPropertyAxiom axiom) {
  return visitAxiom(axiom,
    () -> df.getOWLIrreflexiveObjectPropertyAxiom(t(axiom.getProperty()), t(axiom
      .annotations())));
}
origin: owlcs/owlapi

private OWLAxiom parseIrreflexivePropertyAxiom() {
  String kw = consumeToken();
  if (!IRREFLEXIVE.matches(kw)) {
    throw new ExceptionBuilder().withKeyword(IRREFLEXIVE).build();
  }
  return df.getOWLIrreflexiveObjectPropertyAxiom(parseObjectPropertyExpression(false));
}
origin: net.sourceforge.owlapi/owlapi-distribution

private OWLAxiom parseIrreflexivePropertyAxiom() {
  String kw = consumeToken();
  if (!IRREFLEXIVE.matches(kw)) {
    throw new ExceptionBuilder().withKeyword(IRREFLEXIVE).build();
  }
  return df.getOWLIrreflexiveObjectPropertyAxiom(parseObjectPropertyExpression(false));
}
origin: com.github.ansell.owlapi/owlapi-parsers

  @Override
  public void handleTriple(IRI subject, IRI predicate, IRI object) throws UnloadableImportException {
    if (getConsumer().isObjectProperty(subject)) {
      addAxiom(getDataFactory().getOWLIrreflexiveObjectPropertyAxiom(translateObjectProperty(subject), getPendingAnnotations()));
      consumeTriple(subject, predicate, object);
    }
  }
}
origin: protegeproject/protege

private void setupSetters() {
  addSetter(functionalCB, () -> getOWLDataFactory().getOWLFunctionalObjectPropertyAxiom(getProperty()));
  addSetter(inverseFunctionalCB, () -> getOWLDataFactory().getOWLInverseFunctionalObjectPropertyAxiom(getProperty()));
  addSetter(transitiveCB, () -> getOWLDataFactory().getOWLTransitiveObjectPropertyAxiom(getProperty()));
  addSetter(symmetricCB, () -> getOWLDataFactory().getOWLSymmetricObjectPropertyAxiom(getProperty()));
  addSetter(aSymmetricCB, () -> getOWLDataFactory().getOWLAsymmetricObjectPropertyAxiom(getProperty()));
  addSetter(reflexiveCB, () -> getOWLDataFactory().getOWLReflexiveObjectPropertyAxiom(getProperty()));
  addSetter(irreflexiveCB, () -> getOWLDataFactory().getOWLIrreflexiveObjectPropertyAxiom(getProperty()));
}
origin: edu.stanford.protege/protege-editor-owl

private void setupSetters() {
  addSetter(functionalCB, () -> getOWLDataFactory().getOWLFunctionalObjectPropertyAxiom(getProperty()));
  addSetter(inverseFunctionalCB, () -> getOWLDataFactory().getOWLInverseFunctionalObjectPropertyAxiom(getProperty()));
  addSetter(transitiveCB, () -> getOWLDataFactory().getOWLTransitiveObjectPropertyAxiom(getProperty()));
  addSetter(symmetricCB, () -> getOWLDataFactory().getOWLSymmetricObjectPropertyAxiom(getProperty()));
  addSetter(aSymmetricCB, () -> getOWLDataFactory().getOWLAsymmetricObjectPropertyAxiom(getProperty()));
  addSetter(reflexiveCB, () -> getOWLDataFactory().getOWLReflexiveObjectPropertyAxiom(getProperty()));
  addSetter(irreflexiveCB, () -> getOWLDataFactory().getOWLIrreflexiveObjectPropertyAxiom(getProperty()));
}
org.semanticweb.owlapi.modelOWLDataFactorygetOWLIrreflexiveObjectPropertyAxiom

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
  • putExtra (Intent)
  • addToBackStack (FragmentTransaction)
  • setContentView (Activity)
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • BlockingQueue (java.util.concurrent)
    A java.util.Queue that additionally supports operations that wait for the queue to become non-empty
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • JComboBox (javax.swing)
  • Top 17 Plugins for Android Studio
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