Tabnine Logo
OWLDataFactory.getOWLNegativeObjectPropertyAssertionAxiom
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: owlcs/owlapi

public static OWLNegativeObjectPropertyAssertionAxiom NegativeObjectPropertyAssertion(
  OWLObjectPropertyExpression property, OWLIndividual source, OWLIndividual target,
  Collection<OWLAnnotation> a) {
  return DF.getOWLNegativeObjectPropertyAssertionAxiom(property, source, target, a);
}
origin: net.sourceforge.owlapi/owlapi-distribution

public static OWLNegativeObjectPropertyAssertionAxiom NegativeObjectPropertyAssertion(
  OWLObjectPropertyExpression property, OWLIndividual source, OWLIndividual target,
  Collection<OWLAnnotation> a) {
  return DF.getOWLNegativeObjectPropertyAssertionAxiom(property, source, target, a);
}
origin: net.sourceforge.owlapi/owlapi-apibinding

public static OWLNegativeObjectPropertyAssertionAxiom NegativeObjectPropertyAssertion(
  OWLObjectPropertyExpression property, OWLIndividual source, OWLIndividual target,
  Collection<OWLAnnotation> a) {
  return DF.getOWLNegativeObjectPropertyAssertionAxiom(property, source, target, a);
}
origin: protegeproject/protege

protected OWLNegativeObjectPropertyAssertionAxiom createAxiom(OWLObjectPropertyIndividualPair object) {
  return getOWLDataFactory().getOWLNegativeObjectPropertyAssertionAxiom(object.getProperty(),
                                     getRootObject(),
                                     object.getIndividual());
}
origin: protegeproject/protege

protected OWLNegativeObjectPropertyAssertionAxiom createAxiom(OWLObjectPropertyIndividualPair editedObject) {
  return getOWLDataFactory().getOWLNegativeObjectPropertyAssertionAxiom(editedObject.getProperty(),
                                     getRootObject(),
                                     editedObject.getIndividual());
}
origin: net.sourceforge.owlapi/owlapi-distribution

@Override
public OWLNegativeObjectPropertyAssertionAxiom buildObject() {
  return df.getOWLNegativeObjectPropertyAssertionAxiom(verifyNotNull(getProperty()),
    verifyNotNull(subject),
    verifyNotNull(value), annotations);
}
origin: owlcs/owlapi

@Override
public OWLNegativeObjectPropertyAssertionAxiom buildObject() {
  return df.getOWLNegativeObjectPropertyAssertionAxiom(verifyNotNull(getProperty()),
    verifyNotNull(subject),
    verifyNotNull(value), annotations);
}
origin: edu.stanford.protege/protege-editor-owl

protected OWLNegativeObjectPropertyAssertionAxiom createAxiom(OWLObjectPropertyIndividualPair object) {
  return getOWLDataFactory().getOWLNegativeObjectPropertyAssertionAxiom(object.getProperty(),
                                     getRootObject(),
                                     object.getIndividual());
}
origin: org.protege/protege-editor-owl

protected OWLNegativeObjectPropertyAssertionAxiom createAxiom(OWLObjectPropertyIndividualPair editedObject) {
  return getOWLDataFactory().getOWLNegativeObjectPropertyAssertionAxiom(editedObject.getProperty(),
                                     getRootObject(),
                                     editedObject.getIndividual());
}
origin: owlcs/owlapi

private void translateNegativeObjectPropertyAssertion(IRI s, IRI p, IRI o, IRI source,
  IRI property, IRI target, Set<OWLAnnotation> annos) {
  OWLIndividual sourceInd = consumer.getOWLIndividual(source);
  OWLObjectPropertyExpression prop = op(property);
  OWLIndividual targetInd = consumer.getOWLIndividual(target);
  consume(s, p, o);
  add(df.getOWLNegativeObjectPropertyAssertionAxiom(prop, sourceInd, targetInd, annos));
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

private void translateNegativeObjectPropertyAssertion(IRI s, IRI p, IRI o, IRI source,
  IRI property, IRI target, Set<OWLAnnotation> annos) {
  OWLIndividual sourceInd = consumer.getOWLIndividual(source);
  OWLObjectPropertyExpression prop = op(property);
  OWLIndividual targetInd = consumer.getOWLIndividual(target);
  consume(s, p, o);
  add(df.getOWLNegativeObjectPropertyAssertionAxiom(prop, sourceInd, targetInd, annos));
}
origin: owlcs/owlapi

@Override
public OWLNegativeObjectPropertyAssertionAxiom visit(
        OWLNegativeObjectPropertyAssertionAxiom ax) {
  return df.getOWLNegativeObjectPropertyAssertionAxiom(t(ax.getProperty()),
          t(ax.getSubject()), t(ax.getObject()), a(ax));
}
origin: owlcs/owlapi

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

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

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

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

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

@Override
public void visit(OWLNegativeObjectPropertyAssertionAxiom ax) {
  obj = df
    .getOWLNegativeObjectPropertyAssertionAxiom(dup(ax.getProperty()), dup(ax.getSubject()),
      dup(ax
        .getObject()), anns(ax));
}
origin: net.sourceforge.owlapi/owlapi-distribution

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

@Override
public Object visit(OWLNegativeObjectPropertyAssertionAxiom axiom) {
  return visitAxiom(axiom,
    () -> df.getOWLNegativeObjectPropertyAssertionAxiom(t(axiom.getProperty()), t(axiom
      .getSubject()), t(axiom.getObject()), t(axiom.annotations())));
}
org.semanticweb.owlapi.modelOWLDataFactorygetOWLNegativeObjectPropertyAssertionAxiom

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
  • getSystemService (Context)
  • getSupportFragmentManager (FragmentActivity)
  • scheduleAtFixedRate (Timer)
  • Graphics2D (java.awt)
    This Graphics2D class extends the Graphics class to provide more sophisticated control overgraphics
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • Top plugins for Android Studio
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