Codota Logo
OWLDataFactory.getOWLNegativeDataPropertyAssertionAxiom
Code IndexAdd Codota 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)

  • 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

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

  • Finding current android device location
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • getResourceAsStream (ClassLoader)
  • requestLocationUpdates (LocationManager)
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • Locale (java.util)
    A Locale object represents a specific geographical, political, or cultural region. An operation that
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • JComboBox (javax.swing)
  • JTextField (javax.swing)
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
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