congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
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

  • Start an intent from android
  • setContentView (Activity)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getContentResolver (Context)
  • String (java.lang)
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • Top 12 Jupyter Notebook extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now