owlcs / owlapi

OWL API main repository
821 stars 315 forks source link

How do I get the ChainAxiomProperty? #1087

Closed patrycjamia closed 1 year ago

patrycjamia commented 1 year ago

How do I get the ChainAxiomProperty? I tried to display in this way:

 for (OWLSubPropertyChainOfAxiom ax : ontology.axioms(AxiomType.SUB_PROPERTY_CHAIN_OF).collect(Collectors.toList())) {
        LOG.info("OWLSubPropertyChainOfAxiom: {}",ax);
      }