congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
OWLDataFactory.getOWLObjectPropertyDomainAxiom
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: owlcs/owlapi

public static OWLObjectPropertyDomainAxiom ObjectPropertyDomain(
  OWLObjectPropertyExpression property,
  OWLClassExpression domain) {
  return DF.getOWLObjectPropertyDomainAxiom(property, domain);
}
origin: net.sourceforge.owlapi/owlapi-apibinding

public static OWLObjectPropertyDomainAxiom ObjectPropertyDomain(
  OWLObjectPropertyExpression property,
  OWLClassExpression domain, Collection<OWLAnnotation> a) {
  return DF.getOWLObjectPropertyDomainAxiom(property, domain, a);
}
origin: net.sourceforge.owlapi/owlapi-distribution

public static OWLObjectPropertyDomainAxiom ObjectPropertyDomain(
  OWLObjectPropertyExpression property,
  OWLClassExpression domain) {
  return DF.getOWLObjectPropertyDomainAxiom(property, domain);
}
origin: net.sourceforge.owlapi/owlapi-apibinding

public static OWLObjectPropertyDomainAxiom ObjectPropertyDomain(
  OWLObjectPropertyExpression property,
  OWLClassExpression domain) {
  return DF.getOWLObjectPropertyDomainAxiom(property, domain);
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

public static OWLObjectPropertyDomainAxiom ObjectPropertyDomain(
  OWLObjectPropertyExpression property,
  OWLClassExpression domain) {
  return DF.getOWLObjectPropertyDomainAxiom(property, domain);
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

public static OWLObjectPropertyDomainAxiom ObjectPropertyDomain(
  OWLObjectPropertyExpression property,
  OWLClassExpression domain, Collection<OWLAnnotation> a) {
  return DF.getOWLObjectPropertyDomainAxiom(property, domain, a);
}
origin: owlcs/owlapi

  @Override
  public OWLObjectPropertyDomainAxiom buildObject() {
    return df.getOWLObjectPropertyDomainAxiom(getProperty(), getDomain(), annotations);
  }
}
origin: owlcs/owlapi

@Override
public OWLAxiom visit(OWLObjectPropertyDomainAxiom axiom) {
  OWLClassExpression domain = axiom.getDomain();
  OWLClassExpression newDomain = domain.accept(classVisitor);
  if (domain.equals(newDomain)) {
    return axiom;
  }
  return df.getOWLObjectPropertyDomainAxiom(axiom.getProperty(), newDomain,
    getAnnotationsWithOptionalExpansionMarker(axiom));
}
origin: owlcs/owlapi

@Override
public OWLAxiom visit(OWLObjectPropertyDomainAxiom axiom) {
  return df.getOWLObjectPropertyDomainAxiom(axiom.getProperty(),
    axiom.getDomain().accept(classVisitor));
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

@Override
public OWLAxiom visit(OWLObjectPropertyDomainAxiom axiom) {
  return df.getOWLObjectPropertyDomainAxiom(axiom.getProperty(),
    axiom.getDomain().accept(classVisitor));
}
origin: net.sourceforge.owlapi/owlapi-distribution

@Override
public OWLAxiom visit(OWLObjectPropertyDomainAxiom axiom) {
  OWLClassExpression domain = axiom.getDomain();
  OWLClassExpression newDomain = domain.accept(classVisitor);
  if (domain.equals(newDomain)) {
    return axiom;
  }
  return df.getOWLObjectPropertyDomainAxiom(axiom.getProperty(), newDomain,
    getAnnotationsWithOptionalExpansionMarker(axiom));
}
origin: net.sourceforge.owlapi/owlapi-distribution

@Override
public OWLAxiom visit(OWLObjectPropertyDomainAxiom axiom) {
  return df.getOWLObjectPropertyDomainAxiom(axiom.getProperty(),
    axiom.getDomain().accept(classVisitor));
}
origin: net.sourceforge.owlapi/owlapi

public OWLObjectPropertyDomainAxiom getAxiomWithoutAnnotations() {
  if(!isAnnotated()) {
    return this;
  }
  return getOWLDataFactory().getOWLObjectPropertyDomainAxiom(getProperty(), getDomain());
}
origin: net.sourceforge.owlapi/owlapi-distribution

  private void translateObjectPropertyDomain(IRI s, IRI p, IRI o) {
    add(df.getOWLObjectPropertyDomainAxiom(op(s), ce(o), anns()));
    consume(s, p, o);
  }
}
origin: net.sourceforge.owlapi/owlapi-distribution

@Override
public OWLObjectPropertyDomainAxiom visit(OWLObjectPropertyDomainAxiom axiom) {
  return df.getOWLObjectPropertyDomainAxiom(get(axiom.getProperty()), get(axiom.getDomain()),
    anns(axiom));
}
origin: net.sourceforge.owlapi/owlapi-distribution

@Override
public void visit(OWLObjectPropertyDomainAxiom ax) {
  obj = df
    .getOWLObjectPropertyDomainAxiom(dup(ax.getProperty()), dup(ax.getDomain()), anns(ax));
}
origin: owlcs/owlapi

 final public OWLPropertyAxiom ObjectPropertyDomain() throws ParseException {OWLObjectPropertyExpression prop;
  OWLClassExpression desc;
  Set<OWLAnnotation> axiomAnnos;
  jj_consume_token(OBJECTPROPERTYDOMAIN);
  jj_consume_token(OPENPAR);
  axiomAnnos = AxiomAnnotationSet();
  prop = ObjectPropertyExpression();
  desc = ClassExpression();
  jj_consume_token(CLOSEPAR);
return df.getOWLObjectPropertyDomainAxiom(prop, desc, axiomAnnos);
}

origin: net.sourceforge.owlapi/owlapi-parsers

 final public OWLPropertyAxiom ObjectPropertyDomain() throws ParseException {OWLObjectPropertyExpression prop;
  OWLClassExpression desc;
  Set<OWLAnnotation> axiomAnnos;
  jj_consume_token(OBJECTPROPERTYDOMAIN);
  jj_consume_token(OPENPAR);
  axiomAnnos = AxiomAnnotationSet();
  prop = ObjectPropertyExpression();
  desc = ClassExpression();
  jj_consume_token(CLOSEPAR);
return df.getOWLObjectPropertyDomainAxiom(prop, desc, axiomAnnos);
}

origin: owlcs/owlapi

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

  @Override
  public void handle(String currentId, String value, String qualifierBlock, String comment) {
    OWLObjectProperty prop = getOWLObjectProperty(getConsumer().getCurrentId());
    OWLClass cls = getOWLClass(value);
    applyChange(new AddAxiom(getOntology(),
      getDataFactory().getOWLObjectPropertyDomainAxiom(prop, cls)));
  }
}
org.semanticweb.owlapi.modelOWLDataFactorygetOWLObjectPropertyDomainAxiom

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

  • Parsing JSON documents to java classes using gson
  • scheduleAtFixedRate (Timer)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • ConnectException (java.net)
    A ConnectException is thrown if a connection cannot be established to a remote host on a specific po
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • Top Vim plugins
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