owlapy.model.OWLPropertyAssertionAxiom¶
-
class
owlapy.model.
OWLPropertyAssertionAxiom
(subject: owlapy.model.OWLIndividual, property_: _P, object_: _C, annotations: Optional[Iterable[owlapy.model.OWLAnnotation]] = None)[source]¶ Bases:
Generic
[owlapy.model._P
,owlapy.model._C
],owlapy.model.OWLIndividualAxiom
Represents a PropertyAssertion axiom in the OWL 2 specification
Get a PropertyAssertion axiom for the specified subject, property, object :param subject: the subject of the property assertion :param property: the property of the property assertion :param object: the object of the property assertion :param annotations: annotations
Methods
-
annotations
() → Optional[List[owlapy.model.OWLAnnotation]]¶
-
get_subject
() → owlapy.model.OWLIndividual[source]¶
-
is_annotated
() → bool¶
-
is_annotation_axiom
() → bool¶
-
is_anonymous
() → bool¶
-
is_logical_axiom
() → bool¶
-