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

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

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

origin: owlcs/owlapi

public static OWLNegativeDataPropertyAssertionAxiom NegativeDataPropertyAssertion(
  OWLDataPropertyExpression property, OWLIndividual source, OWLLiteral target,
  Collection<OWLAnnotation> a) {
  return DF.getOWLNegativeDataPropertyAssertionAxiom(property, source, target, a);
}
origin: net.sourceforge.owlapi/owlapi-apibinding

public static OWLNegativeDataPropertyAssertionAxiom NegativeDataPropertyAssertion(
  OWLDataPropertyExpression property, OWLIndividual source, OWLLiteral target,
  Collection<OWLAnnotation> a) {
  return DF.getOWLNegativeDataPropertyAssertionAxiom(property, source, target, a);
}
origin: owlcs/owlapi

@Override
public OWLNegativeDataPropertyAssertionAxiom buildObject() {
  return df
    .getOWLNegativeDataPropertyAssertionAxiom(getProperty(), getSubject(), getLiteral(),
      annotations);
}
origin: owlcs/owlapi

  private void translateNegativeDataPropertyAssertion(IRI s, IRI p, IRI o, IRI source,
    IRI property, OWLLiteral target, Set<OWLAnnotation> annos) {
    OWLIndividual sourceInd = consumer.getOWLIndividual(source);
    OWLDataPropertyExpression prop = dp(property);
    consume(s, p, o);
    add(df.getOWLNegativeDataPropertyAssertionAxiom(prop, sourceInd, target, annos));
  }
}
origin: protegeproject/protege

protected OWLNegativeDataPropertyAssertionAxiom createAxiom(OWLDataPropertyConstantPair editedObject) {
  return getOWLDataFactory().getOWLNegativeDataPropertyAssertionAxiom(editedObject.getProperty(),
                                    getRootObject(),
                                    editedObject.getConstant());
}
origin: net.sourceforge.owlapi/owlapi-distribution

  private void translateNegativeDataPropertyAssertion(IRI s, IRI p, IRI o, IRI source,
    IRI property, OWLLiteral target, Set<OWLAnnotation> annos) {
    OWLIndividual sourceInd = consumer.getOWLIndividual(source);
    OWLDataPropertyExpression prop = dp(property);
    consume(s, p, o);
    add(df.getOWLNegativeDataPropertyAssertionAxiom(prop, sourceInd, target, annos));
  }
}
origin: org.protege/protege-editor-owl

protected OWLNegativeDataPropertyAssertionAxiom createAxiom(OWLDataPropertyConstantPair editedObject) {
  return getOWLDataFactory().getOWLNegativeDataPropertyAssertionAxiom(editedObject.getProperty(),
                                    getRootObject(),
                                    editedObject.getConstant());
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

  private void translateNegativeDataPropertyAssertion(IRI s, IRI p, IRI o, IRI source,
    IRI property, OWLLiteral target, Set<OWLAnnotation> annos) {
    OWLIndividual sourceInd = consumer.getOWLIndividual(source);
    OWLDataPropertyExpression prop = dp(property);
    consume(s, p, o);
    add(df.getOWLNegativeDataPropertyAssertionAxiom(prop, sourceInd, target, annos));
  }
}
origin: owlcs/owlapi

  @Override
  public OWLNegativeDataPropertyAssertionAxiom visit(
    OWLNegativeDataPropertyAssertionAxiom axiom) {
    return df
      .getOWLNegativeDataPropertyAssertionAxiom(axiom.getProperty(), axiom.getSubject(),
        process(axiom
          .getProperty(), axiom.getObject()));
  }
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

  @Override
  public OWLNegativeDataPropertyAssertionAxiom visit(
    OWLNegativeDataPropertyAssertionAxiom axiom) {
    return df
      .getOWLNegativeDataPropertyAssertionAxiom(axiom.getProperty(), axiom.getSubject(),
        process(axiom
          .getProperty(), axiom.getObject()));
  }
}
origin: net.sourceforge.owlapi/owlapi

public OWLNegativeDataPropertyAssertionAxiom getAxiomWithoutAnnotations() {
  if(!isAnnotated()) {
    return this;
  }
  return getOWLDataFactory().getOWLNegativeDataPropertyAssertionAxiom(getProperty(), getSubject(), getObject());
}
origin: owlcs/owlapi

@Override
public void visit(OWLNegativeDataPropertyAssertionAxiom ax) {
  obj = df
    .getOWLNegativeDataPropertyAssertionAxiom(dup(ax.getProperty()), dup(ax.getSubject()),
      dup(ax
        .getObject()), anns(ax));
}
origin: owlcs/owlapi

@Override
public OWLNegativeDataPropertyAssertionAxiom visit(OWLNegativeDataPropertyAssertionAxiom ax) {
  return df.getOWLNegativeDataPropertyAssertionAxiom(t(ax.getProperty()), t(ax.getSubject()),
          t(ax.getObject()), a(ax));
}
origin: net.sourceforge.owlapi/owlapi-distribution

@Override
public OWLNegativeDataPropertyAssertionAxiom visit(
  OWLNegativeDataPropertyAssertionAxiom axiom) {
  return df.getOWLNegativeDataPropertyAssertionAxiom(get(axiom.getProperty()),
    get(axiom.getSubject()), get(axiom
      .getObject()), anns(axiom));
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

@Override
public OWLNegativeDataPropertyAssertionAxiom visit(
  OWLNegativeDataPropertyAssertionAxiom axiom) {
  return df.getOWLNegativeDataPropertyAssertionAxiom(get(axiom.getProperty()),
    get(axiom.getSubject()), get(axiom
      .getObject()), anns(axiom));
}
origin: net.sourceforge.owlapi/owlapi

public void visit(OWLNegativeDataPropertyAssertionAxiom axiom) {
  axiom.getSubject().accept(this);
  OWLIndividual ind = (OWLIndividual) obj;
  axiom.getProperty().accept(this);
  OWLDataPropertyExpression prop = (OWLDataPropertyExpression) obj;
  axiom.getObject().accept(this);
  OWLLiteral con = (OWLLiteral) obj;
  obj = dataFactory.getOWLNegativeDataPropertyAssertionAxiom(prop, ind, con, duplicateAxiomAnnotations(axiom));
}
origin: owlcs/owlapi

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

@Override
public void handleTriple(IRI s, IRI p, IRI o) {
  IRI source = source(s);
  IRI property = property(s);
  OWLLiteral target = target(s);
  OWLIndividual sourceInd = consumer.getOWLIndividual(source);
  OWLDataPropertyExpression prop = dp(property);
  consume(s, p, o);
  anns(s);
  add(df.getOWLNegativeDataPropertyAssertionAxiom(prop, sourceInd, target, anns()));
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

@Override
public Object visit(OWLNegativeDataPropertyAssertionAxiom axiom) {
  return visitAxiom(axiom,
    () -> df.getOWLNegativeDataPropertyAssertionAxiom(t(axiom.getProperty()), t(axiom
      .getSubject()), t(axiom.getObject()), t(axiom.annotations())));
}
origin: net.sourceforge.owlapi/owlapi-parsers

@Override
public void handleTriple(IRI s, IRI p, IRI o) {
  IRI source = source(s);
  IRI property = property(s);
  OWLLiteral target = target(s);
  OWLIndividual sourceInd = consumer.getOWLIndividual(source);
  OWLDataPropertyExpression prop = dp(property);
  consume(s, p, o);
  anns(s);
  add(df.getOWLNegativeDataPropertyAssertionAxiom(prop, sourceInd, target, anns()));
}
org.semanticweb.owlapi.modelOWLDataFactorygetOWLNegativeDataPropertyAssertionAxiom

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
  • onCreateOptionsMenu (Activity)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • JOptionPane (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