Source code for owlapy.has
-from typing import Protocol, ClassVar, TypeVar, Generic, Iterable
-from abc import ABCMeta, abstractmethod
-_T = TypeVar('_T') #:
-
+from typing import Protocol, ClassVar
[docs]
class HasIndex(Protocol):
@@ -92,97 +89,6 @@ Source code for owlapy.has
-
-
-[docs]
-class HasIRI(metaclass=ABCMeta):
- """Simple class to access the IRI."""
- __slots__ = ()
-
-
-[docs]
- @abstractmethod
- def get_iri(self) -> 'IRI':
- """Gets the IRI of this object.
-
- Returns:
- The IRI of this object.
- """
- pass
-
-
-
-
-
-[docs]
-class HasOperands(Generic[_T], metaclass=ABCMeta):
- """An interface to objects that have a collection of operands.
-
- Args:
- _T: Operand type.
- """
- __slots__ = ()
-
-
-[docs]
- @abstractmethod
- def operands(self) -> Iterable[_T]:
- """Gets the operands - e.g., the individuals in a sameAs axiom, or the classes in an equivalent
- classes axiom.
-
- Returns:
- The operands.
- """
- pass
-
-
-
-
-
-
-[docs]
-class HasFiller(Generic[_T], metaclass=ABCMeta):
- """An interface to objects that have a filler.
-
- Args:
- _T: Filler type.
- """
- __slots__ = ()
-
-
-[docs]
- @abstractmethod
- def get_filler(self) -> _T:
- """Gets the filler for this restriction. In the case of an object restriction this will be an individual, in
- the case of a data restriction this will be a constant (data value). For quantified restriction this will be
- a class expression or a data range.
-
- Returns:
- the value
- """
- pass
-
-
-
-
-
-[docs]
-class HasCardinality(metaclass=ABCMeta):
- """An interface to objects that have a cardinality."""
- __slots__ = ()
-
-
-[docs]
- @abstractmethod
- def get_cardinality(self) -> int:
- """Gets the cardinality of a restriction.
-
- Returns:
- The cardinality. A non-negative integer.
- """
- pass
-
-
Source code for owlapy.meta_classes
+# https://docs.python.org/3/reference/datamodel.html#metaclasses
+from typing import TypeVar, Generic, Iterable
+from abc import ABCMeta, abstractmethod
+
+_T = TypeVar('_T') #:
+
+
+
+[docs]
+class HasIRI(metaclass=ABCMeta):
+ """Simple class to access the IRI."""
+ __slots__ = ()
+
+
+[docs]
+ @abstractmethod
+ def get_iri(self) -> 'IRI':
+ """Gets the IRI of this object.
+
+ Returns:
+ The IRI of this object.
+ """
+ pass
+
+
+
+
+
+[docs]
+class HasOperands(Generic[_T], metaclass=ABCMeta):
+ """An interface to objects that have a collection of operands.
+
+ Args:
+ _T: Operand type.
+ """
+ __slots__ = ()
+
+
+[docs]
+ @abstractmethod
+ def operands(self) -> Iterable[_T]:
+ """Gets the operands - e.g., the individuals in a sameAs axiom, or the classes in an equivalent
+ classes axiom.
+
+ Returns:
+ The operands.
+ """
+ pass
+
+
+
+
+
+[docs]
+class HasFiller(Generic[_T], metaclass=ABCMeta):
+ """An interface to objects that have a filler.
+
+ Args:
+ _T: Filler type.
+ """
+ __slots__ = ()
+
+
+[docs]
+ @abstractmethod
+ def get_filler(self) -> _T:
+ """Gets the filler for this restriction. In the case of an object restriction this will be an individual, in
+ the case of a data restriction this will be a constant (data value). For quantified restriction this will be
+ a class expression or a data range.
+
+ Returns:
+ the value
+ """
+ pass
+
+
+
+
+
+[docs]
+class HasCardinality(metaclass=ABCMeta):
+ """An interface to objects that have a cardinality."""
+ __slots__ = ()
+
+
+[docs]
+ @abstractmethod
+ def get_cardinality(self) -> int:
+ """Gets the cardinality of a restriction.
+
+ Returns:
+ The cardinality. A non-negative integer.
+ """
+ pass
+
+
+
Source code for owlapy.model
from abc import ABCMeta, abstractmethod
-from itertools import combinations
from typing import Generic, Iterable, Sequence, Set, TypeVar, Union, Final, Optional, Protocol, ClassVar, List
from datetime import datetime, date
from pandas import Timedelta
@@ -86,25 +85,25 @@ Source code for owlapy.model
from owlapy.owlobject import OWLObject, OWLEntity
from owlapy.owl_annotation import OWLAnnotationObject, OWLAnnotationSubject, OWLAnnotationValue
from owlapy.iri import IRI
-from owlapy.has import HasIndex, HasIRI, HasOperands, HasFiller, HasCardinality
+from owlapy.has import HasIndex
+from owlapy.meta_classes import HasIRI, HasOperands, HasFiller, HasCardinality
from owlapy.owl_class_expression import OWLNaryBooleanClassExpression, OWLClassExpression, OWLObjectComplementOf, \
OWLAnonymousClassExpression, OWLBooleanClassExpression, OWLPropertyRange, OWLDataRange, OWLClass, OWLObjectUnionOf, \
- OWLObjectIntersectionOf
+ OWLObjectIntersectionOf, OWLThing, OWLNothing
from owlapy.owl_property import OWLObjectPropertyExpression, OWLProperty, OWLPropertyExpression, \
OWLDataPropertyExpression, OWLDataProperty, OWLObjectProperty
from owlapy.owl_restriction import (OWLRestriction, OWLObjectAllValuesFrom, OWLObjectSomeValuesFrom,
OWLQuantifiedRestriction, OWLQuantifiedObjectRestriction,
OWLObjectRestriction, OWLHasValueRestriction, OWLDataRestriction,
OWLCardinalityRestriction, OWLObjectMinCardinality, OWLObjectCardinalityRestriction,OWLDataAllValuesFrom,
- OWLObjectHasSelf, OWLObjectMaxCardinality, OWLObjectExactCardinality,OWLDataExactCardinality)
+ OWLObjectHasSelf, OWLObjectMaxCardinality, OWLObjectExactCardinality,OWLDataExactCardinality,OWLDataMinCardinality,
+ OWLDataMaxCardinality,OWLDataSomeValuesFrom,OWLDataHasValue,OWLDataOneOf,OWLQuantifiedDataRestriction,OWLDataCardinalityRestriction)
from owlapy.owl_individual import OWLNamedIndividual, OWLIndividual
from owlapy.owl_axiom import (OWLEquivalentClassesAxiom, OWLClassAxiom,
OWLDataPropertyDomainAxiom, OWLAxiom, OWLDataPropertyRangeAxiom,
OWLObjectPropertyDomainAxiom, OWLObjectPropertyRangeAxiom)
from owlapy.types import OWLDatatype
-from owlapy.owl_data import OWLDataMinCardinality, OWLDataMaxCardinality,OWLDataComplementOf, OWLDataIntersectionOf, OWLDataHasValue, OWLDataOneOf, OWLDataSomeValuesFrom,OWLDataUnionOf
-from owlapy.owl_data import OWLNaryDataRange, OWLQuantifiedDataRestriction, OWLDataCardinalityRestriction
from owlapy.owl_literal import OWLLiteral
@@ -118,122 +117,6 @@ Source code for owlapy.model
_M = TypeVar('_M', bound='OWLOntologyManager') #:
-
-[docs]
-class OWLObjectHasValue(OWLHasValueRestriction[OWLIndividual], OWLObjectRestriction):
- """Represents an ObjectHasValue class expression in the OWL 2 Specification."""
- __slots__ = '_property', '_v'
- type_index: Final = 3007
-
- _property: OWLObjectPropertyExpression
- _v: OWLIndividual
-
- def __init__(self, property: OWLObjectPropertyExpression, individual: OWLIndividual):
- """
- Args:
- property: The property that the restriction acts along.
- individual: Individual for restriction.
-
- Returns:
- A HasValue restriction with specified property and value
- """
- super().__init__(individual)
- self._property = property
-
-
-[docs]
- def get_property(self) -> OWLObjectPropertyExpression:
- # documented in parent
- return self._property
-
-
-
-[docs]
- def as_some_values_from(self) -> OWLClassExpression:
- """A convenience method that obtains this restriction as an existential restriction with a nominal filler.
-
- Returns:
- The existential equivalent of this value restriction. simp(HasValue(p a)) = some(p {a}).
- """
- return OWLObjectSomeValuesFrom(self.get_property(), OWLObjectOneOf(self.get_filler()))
-
-
-
-[docs]
- def __repr__(self):
- return f'OWLObjectHasValue(property={self.get_property()}, individual={self._v})'
-
-
-
-
-
-[docs]
-class OWLObjectOneOf(OWLAnonymousClassExpression, HasOperands[OWLIndividual]):
- """Represents an ObjectOneOf class expression in the OWL 2 Specification."""
- __slots__ = '_values'
- type_index: Final = 3004
-
- def __init__(self, values: Union[OWLIndividual, Iterable[OWLIndividual]]):
- if isinstance(values, OWLIndividual):
- self._values = values,
- else:
- for _ in values:
- assert isinstance(_, OWLIndividual)
- self._values = tuple(values)
-
-
-[docs]
- def individuals(self) -> Iterable[OWLIndividual]:
- """Gets the individuals that are in the oneOf. These individuals represent the exact instances (extension)
- of this class expression.
-
- Returns:
- The individuals that are the values of this {@code ObjectOneOf} class expression.
- """
- yield from self._values
-
-
-
-[docs]
- def operands(self) -> Iterable[OWLIndividual]:
- # documented in parent
- yield from self.individuals()
-
-
-
-[docs]
- def as_object_union_of(self) -> OWLClassExpression:
- """Simplifies this enumeration to a union of singleton nominals.
-
- Returns:
- This enumeration in a more standard DL form.
- simp({a}) = {a} simp({a0, ... , {an}) = unionOf({a0}, ... , {an})
- """
- if len(self._values) == 1:
- return self
- return OWLObjectUnionOf(map(lambda _: OWLObjectOneOf(_), self.individuals()))
-
-
-
-
-
-
-[docs]
- def __eq__(self, other):
- if type(other) == type(self):
- return self._values == other._values
- return NotImplemented
-
-
-
-
-
@@ -320,111 +203,6 @@ Source code for owlapy.model
-
-[docs]
-class OWLDatatypeRestriction(OWLDataRange):
- """Represents a DatatypeRestriction data range in the OWL 2 Specification."""
- __slots__ = '_type', '_facet_restrictions'
-
- type_index: Final = 4006
-
- _type: OWLDatatype
- _facet_restrictions: Sequence['OWLFacetRestriction']
-
- def __init__(self, type_: OWLDatatype, facet_restrictions: Union['OWLFacetRestriction',
- Iterable['OWLFacetRestriction']]):
- self._type = type_
- if isinstance(facet_restrictions, OWLFacetRestriction):
- facet_restrictions = facet_restrictions,
- self._facet_restrictions = tuple(facet_restrictions)
-
-
-
-
-
-[docs]
- def get_facet_restrictions(self) -> Sequence['OWLFacetRestriction']:
- return self._facet_restrictions
-
-
-
-[docs]
- def __eq__(self, other):
- if type(other) is type(self):
- return self._type == other._type \
- and self._facet_restrictions == other._facet_restrictions
- return NotImplemented
-
-
-
-
-
-
-[docs]
- def __repr__(self):
- return f'OWLDatatypeRestriction({repr(self._type)}, {repr(self._facet_restrictions)})'
-
-
-
-
-
-[docs]
-class OWLFacetRestriction(OWLObject):
- """A facet restriction is used to restrict a particular datatype."""
-
- __slots__ = '_facet', '_literal'
-
- type_index: Final = 4007
-
- _facet: OWLFacet
- _literal: 'OWLLiteral'
-
- def __init__(self, facet: OWLFacet, literal: Literals):
- self._facet = facet
- if isinstance(literal, OWLLiteral):
- self._literal = literal
- else:
- self._literal = OWLLiteral(literal)
-
-
-
-
-
-
-
-
-[docs]
- def __eq__(self, other):
- if type(other) is type(self):
- return self._facet == other._facet and self._literal == other._literal
- return NotImplemented
-
-
-
-
-
-
-
-
-
[docs]
@@ -1252,8 +1030,7 @@ Source code for owlapy.model
"""Important constant objects section"""
# @TODO: Some of them must be removed from here as they are defined under owl literal
-OWLThing: Final = OWLClass(OWLRDFVocabulary.OWL_THING.get_iri()) #: : :The OWL Class corresponding to owl:Thing
-OWLNothing: Final = OWLClass(OWLRDFVocabulary.OWL_NOTHING.get_iri()) #: : :The OWL Class corresponding to owl:Nothing
+
#: the built in top object property
OWLTopObjectProperty: Final = OWLObjectProperty(OWLRDFVocabulary.OWL_TOP_OBJECT_PROPERTY.get_iri())
#: the built in bottom object property
diff --git a/_modules/owlapy/model/providers.html b/_modules/owlapy/model/providers.html
index b9a486e..bc72192 100644
--- a/_modules/owlapy/model/providers.html
+++ b/_modules/owlapy/model/providers.html
@@ -80,7 +80,8 @@ Source code for owlapy.model.providers
"""OWL Datatype restriction constructors."""
from typing import Union
from datetime import datetime, date
-from owlapy.model import OWLDatatypeRestriction, OWLFacet, OWLFacetRestriction, OWLLiteral
+from owlapy.owl_literal import OWLLiteral
+from owlapy.owl_restriction import OWLDatatypeRestriction, OWLFacet, OWLFacetRestriction
from pandas import Timedelta
Restriction_Literals = Union[OWLLiteral, int, float, Timedelta, datetime, date]
diff --git a/_modules/owlapy/owl2sparql/converter.html b/_modules/owlapy/owl2sparql/converter.html
deleted file mode 100644
index f263d94..0000000
--- a/_modules/owlapy/owl2sparql/converter.html
+++ /dev/null
@@ -1,765 +0,0 @@
-
-
-
-
-
- owlapy.owl2sparql.converter — OWLAPY 0.1.2 documentation
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Source code for owlapy.owl2sparql.converter
-"""Format converter."""
-from collections import defaultdict
-from contextlib import contextmanager
-from functools import singledispatchmethod
-from types import MappingProxyType
-from typing import Set, List, Dict, Optional, Iterable
-
-from rdflib.plugins.sparql.parser import parseQuery
-
-from owlapy.model import OWLClassExpression, OWLClass, OWLEntity, OWLObjectProperty, \
- OWLObjectUnionOf, OWLObjectComplementOf, OWLObjectSomeValuesFrom, OWLObjectAllValuesFrom, OWLObjectHasValue, \
- OWLNamedIndividual, OWLObjectCardinalityRestriction, OWLObjectMinCardinality, OWLObjectExactCardinality, \
- OWLObjectMaxCardinality, OWLDataCardinalityRestriction, OWLDataProperty, OWLObjectHasSelf, OWLObjectOneOf, \
- OWLDataSomeValuesFrom, OWLDataAllValuesFrom, OWLDataHasValue, OWLDatatype, TopOWLDatatype, OWLDataOneOf, \
- OWLLiteral, OWLDatatypeRestriction, OWLObjectIntersectionOf
-from owlapy.vocab import OWLFacet, OWLRDFVocabulary
-
-_Variable_facet_comp = MappingProxyType({
- OWLFacet.MIN_INCLUSIVE: ">=",
- OWLFacet.MIN_EXCLUSIVE: ">",
- OWLFacet.MAX_INCLUSIVE: "<=",
- OWLFacet.MAX_EXCLUSIVE: "<"
-})
-
-
-
-[docs]
-def peek(x):
- """Peek the last element of an array.
-
- Returns:
- The last element arr[-1].
-
- """
- return x[-1]
-
-
-
-
-[docs]
-class VariablesMapping:
- """Helper class for owl-to-sparql conversion."""
- __slots__ = 'class_cnt', 'prop_cnt', 'ind_cnt', 'dict'
-
- def __init__(self):
- self.class_cnt = 0
- self.prop_cnt = 0
- self.ind_cnt = 0
- self.dict = dict()
-
-
-[docs]
- def get_variable(self, e: OWLEntity) -> str:
- if e in self.dict:
- return self.dict[e]
-
- if isinstance(e, OWLClass):
- self.class_cnt += 1
- var = f"?cls_{self.class_cnt}"
- elif isinstance(e, OWLObjectProperty) or isinstance(e, OWLDataProperty):
- self.prop_cnt += 1
- var = f"?p_{self.prop_cnt}"
- elif isinstance(e, OWLNamedIndividual):
- self.ind_cnt += 1
- var = f"?ind_{self.ind_cnt}"
- else:
- raise ValueError(e)
-
- self.dict[e] = var
- return var
-
-
-
-[docs]
- def new_individual_variable(self) -> str:
- self.ind_cnt += 1
- return f"?s_{self.ind_cnt}"
-
-
-
-[docs]
- def new_property_variable(self) -> str:
- self.prop_cnt += 1
- return f"?p_{self.prop_cnt}"
-
-
-
-
-
-
-
-
-
-
-
-[docs]
-class Owl2SparqlConverter:
- """Convert owl (owlapy model class expressions) to SPARQL."""
- __slots__ = 'ce', 'sparql', 'variables', 'parent', 'parent_var', 'properties', 'variable_entities', 'cnt', \
- 'mapping', 'grouping_vars', 'having_conditions', '_intersection'
- # @TODO:CD: We need to document this class. The computation behind the mapping is not clear.
-
- ce: OWLClassExpression
- sparql: List[str]
- variables: List[str]
- parent: List[OWLClassExpression]
- parent_var: List[str]
- variable_entities: Set[OWLEntity]
- properties: Dict[int, List[OWLEntity]]
- _intersection: Dict[int, bool]
- mapping: VariablesMapping
- grouping_vars: Dict[OWLClassExpression, Set[str]]
- having_conditions: Dict[OWLClassExpression, Set[str]]
- cnt: int
-
-
-[docs]
- def convert(self, root_variable: str, ce: OWLClassExpression, named_individuals: bool = False):
- """Used to convert owl class expression to SPARQL syntax.
-
- Args:
- root_variable (str): Root variable name that will be used in SPARQL query.
- ce (OWLClassExpression): The owl class expression to convert.
- named_individuals (bool): If 'True' return only entities that are instances of owl:NamedIndividual.
-
- Returns:
- list[str]: The SPARQL query.
- """
- self.ce = ce
- self.sparql = []
- self.variables = []
- self.parent = []
- self.parent_var = []
- self.properties = defaultdict(list)
- self.variable_entities = set()
- self._intersection = defaultdict(bool)
- self.cnt = 0
- self.mapping = VariablesMapping()
- self.grouping_vars = defaultdict(set)
- self.having_conditions = defaultdict(set)
- # if named_individuals is True, we return only entities that are instances of owl:NamedIndividual
- if named_individuals:
- self.append_triple(root_variable, 'a', f"<{OWLRDFVocabulary.OWL_NAMED_INDIVIDUAL.as_str()}>")
- with self.stack_variable(root_variable):
- with self.stack_parent(ce):
- self.process(ce)
- return self.sparql
-
-
- @property
- def modal_depth(self):
- return len(self.variables)
-
-
-
-
- @render.register
- def _(self, lit: OWLLiteral):
- return f'"{lit.get_literal()}"^^<{lit.get_datatype().to_string_id()}>'
-
- @render.register
- def _(self, e: OWLEntity):
- if e in self.variable_entities:
- s = self.mapping.get_variable(e)
- else:
- s = f"<{e.to_string_id()}>"
- if isinstance(e, OWLObjectProperty):
- self.properties[self.modal_depth].append(e)
- return s
-
- def _maybe_quote(self, e):
- assert isinstance(e, str)
- if e.startswith("?"):
- return e
- else:
- return f"<{e}>"
-
- def _maybe_quote_p(self, p):
- if isinstance(p, str):
- if p.startswith("?") or p == "a" or p.startswith("<"):
- return p
- else:
- return f"<{p}>"
- else:
- return self.render(p)
-
- def _maybe_render(self, o):
- if isinstance(o, str):
- return o
- else:
- return self.render(o)
-
-
-
-[docs]
- @contextmanager
- def stack_variable(self, var):
- self.variables.append(var)
- try:
- yield
- finally:
- self.variables.pop()
-
-
-
-[docs]
- @contextmanager
- def stack_parent(self, parent: OWLClassExpression):
- self.parent.append(parent)
- self.parent_var.append(self.current_variable)
- try:
- yield
- finally:
- self.parent.pop()
- self.parent_var.pop()
-
-
- @property
- def current_variable(self):
- return peek(self.variables)
-
- # this method is responsible for translating class expressions to SPARQL queries
- # the decorator "@singledispatchmethod" denotes that the method is overload
- # each overload of the method is responsible for processing a different type of class expressions (e.g., ⊔ or ⊓)
-
-[docs]
- @singledispatchmethod
- def process(self, ce: OWLClassExpression):
- raise NotImplementedError(ce)
-
-
- # an overload of process function
- # this overload is responsible for handling single concepts (e.g., Brother)
- # general case: C
- # this is the final step of the recursion
- @process.register
- def _(self, ce: OWLClass):
- if self.ce == ce or not ce.is_owl_thing():
- self.append_triple(self.current_variable, "a", self.render(ce))
- # old_var = self.current_variable
- # new_var = self.mapping.new_individual_variable()
- # with self.stack_variable(new_var):
- # self.append_triple(old_var, "a", new_var)
- # self.append_triple(new_var, "<http://www.w3.org/2000/01/rdf-schema#subClassOf>*", self.render(ce))
- elif ce.is_owl_thing():
- self.append_triple(self.current_variable, "a", "<http://www.w3.org/2002/07/owl#Thing>")
-
- # an overload of process function
- # this overload is responsible for handling intersections of concepts (e.g., Brother ⊓ Father)
- # general case: C1 ⊓ ... ⊓ Cn
- @process.register
- def _(self, ce: OWLObjectIntersectionOf):
- # we iterate over the concepts that appear in the intersection
- for op in ce.operands():
- self.process(op)
-
- # an overload of process function
- # this overload is responsible for handling unions of concepts (e.g., Brother ⊔ Sister)
- # general case: C1 ⊔ ... ⊔ Cn
- @process.register
- def _(self, ce: OWLObjectUnionOf):
- first = True
- # we iterate over the concepts that appear in the union
- for op in ce.operands():
- # SPARQL's UNION comes after the first concept
- if first:
- first = False
- else:
- self.append(" UNION ")
- self.append("{ ")
- with self.stack_parent(op):
- self.process(op)
- self.append(" }")
-
- # an overload of process function
- # this overload is responsible for handling complements of concepts (e.g., ¬Brother)
- # general case: ¬C
- @process.register
- def _(self, ce: OWLObjectComplementOf):
- subject = self.current_variable
- self.append_triple(subject, self.mapping.new_individual_variable(), self.mapping.new_individual_variable())
-
- self.append("FILTER NOT EXISTS { ")
- # process the concept after the ¬
- self.process(ce.get_operand())
- self.append(" }")
-
- # an overload of process function
- # this overload is responsible for handling the exists operator (e.g., ∃hasChild.Male)
- # general case: ∃r.C
- @process.register
- def _(self, ce: OWLObjectSomeValuesFrom):
- object_variable = self.mapping.new_individual_variable()
- # property expression holds the role of the class expression (hasChild in our example)
- property_expression = ce.get_property()
- if property_expression.is_anonymous():
- # property expression is inverse of a property
- self.append_triple(object_variable, property_expression.get_named_property(), self.current_variable)
- else:
- self.append_triple(self.current_variable, property_expression.get_named_property(), object_variable)
- # filler holds the concept of the expression (Male in our example) and is processed recursively
- filler = ce.get_filler()
- with self.stack_variable(object_variable):
- self.process(filler)
-
- # an overload of process function
- # this overload is responsible for handling the forAll operator (e.g., ∀hasChild.Male)
- # general case: ∀r.C
- @process.register
- def _(self, ce: OWLObjectAllValuesFrom):
- subject = self.current_variable
- object_variable = self.mapping.new_individual_variable()
- # property expression holds the role of the class expression (hasChild in our example)
- property_expression = ce.get_property()
- predicate = property_expression.get_named_property()
- # filler holds the concept of the expression (Male in our example) and is processed recursively
- filler = ce.get_filler()
-
-
- self.append("{")
-
- if property_expression.is_anonymous():
- # property expression is inverse of a property
- self.append_triple(object_variable, predicate, self.current_variable)
- else:
- self.append_triple(self.current_variable, predicate, object_variable)
-
- # restrict filler
- var = self.mapping.new_individual_variable()
- cnt_var1 = self.new_count_var()
- # the count needs to use distinct
- self.append(f"{{ SELECT {subject} ( COUNT( DISTINCT {var} ) AS {cnt_var1} ) WHERE {{ ")
- self.append_triple(subject, predicate, var)
- # here, we recursively process the filler (Male in our example)
- with self.stack_variable(var):
- self.process(filler)
- self.append(f" }} GROUP BY {subject} }}")
-
- var = self.mapping.new_individual_variable()
- cnt_var2 = self.new_count_var()
- # the count needs to use distinct
- self.append(f"{{ SELECT {subject} ( COUNT( DISTINCT {var} ) AS {cnt_var2} ) WHERE {{ ")
- self.append_triple(subject, predicate, var)
- self.append(f" }} GROUP BY {subject} }}")
-
- self.append(f" FILTER( {cnt_var1} = {cnt_var2} )")
- self.append("} UNION { ")
-
- # here, the second group graph pattern starts
- # the second group graph pattern returns all those entities that do not appear in a triple with the property
- self.append_triple(subject, self.mapping.new_individual_variable(), self.mapping.new_individual_variable())
- self.append("FILTER NOT EXISTS { ")
- if property_expression.is_anonymous():
- # property expression is inverse of a property
- self.append_triple(self.mapping.new_individual_variable(), predicate, self.current_variable)
- else:
- self.append_triple(self.current_variable, predicate, self.mapping.new_individual_variable())
- self.append(" } }")
-
- # an overload of process function
- # this overload is responsible for handling the exists operator combined with an individual (e.g., ∃hasChild.{john})
- # general case: ∃r.{a}
- @process.register
- def _(self, ce: OWLObjectHasValue):
- property_expression = ce.get_property()
- value = ce.get_filler()
- # we ensure that the value is an individual
- assert isinstance(value, OWLNamedIndividual)
- if property_expression.is_anonymous():
- self.append_triple(value.to_string_id(), property_expression.get_named_property(), self.current_variable)
- else:
- self.append_triple(self.current_variable, property_expression.get_named_property(), value)
-
- # an overload of process function
- # this overload is responsible for handling the exists operator combined with an individual(e.g., >=3 hasChild.Male)
- # general case: \theta n r.C
- @process.register
- def _(self, ce: OWLObjectCardinalityRestriction):
- subject_variable = self.current_variable
- object_variable = self.mapping.new_individual_variable()
- property_expression = ce.get_property()
- cardinality = ce.get_cardinality()
-
- if isinstance(ce, OWLObjectMinCardinality):
- comparator = ">="
- elif isinstance(ce, OWLObjectMaxCardinality):
- comparator = "<="
- elif isinstance(ce, OWLObjectExactCardinality):
- comparator = "="
- else:
- raise ValueError(ce)
-
- # if the comparator is ≤ or the cardinality is 0, we need an additional group graph pattern
- # the additional group graph pattern will take care the cases where an individual is not associated with the
- # property expression
- if comparator == "<=" or cardinality == 0:
- self.append("{")
-
- self.append(f"{{ SELECT {subject_variable} WHERE {{ ")
- if property_expression.is_anonymous():
- # property expression is inverse of a property
- self.append_triple(object_variable, property_expression.get_named_property(), subject_variable)
- else:
- self.append_triple(subject_variable, property_expression.get_named_property(), object_variable)
-
- filler = ce.get_filler()
- with self.stack_variable(object_variable):
- self.process(filler)
-
- self.append(f" }} GROUP BY {subject_variable}"
- f" HAVING ( COUNT ( {object_variable} ) {comparator} {cardinality} ) }}")
-
- # here, the second group graph pattern starts
- if comparator == "<=" or cardinality == 0:
- self.append("} UNION {")
- self.append_triple(subject_variable, self.mapping.new_individual_variable(),
- self.mapping.new_individual_variable())
- self.append("FILTER NOT EXISTS { ")
- object_variable = self.mapping.new_individual_variable()
- if property_expression.is_anonymous():
- # property expression is inverse of a property
- self.append_triple(object_variable, property_expression.get_named_property(), self.current_variable)
- else:
- self.append_triple(self.current_variable, property_expression.get_named_property(), object_variable)
- with self.stack_variable(object_variable):
- self.process(filler)
- self.append(" } }")
-
- @process.register
- def _(self, ce: OWLDataCardinalityRestriction):
- subject_variable = self.current_variable
- object_variable = self.mapping.new_individual_variable()
- property_expression = ce.get_property()
- assert isinstance(property_expression, OWLDataProperty)
- cardinality = ce.get_cardinality()
-
- if isinstance(ce, OWLObjectMinCardinality):
- comparator = ">="
- elif isinstance(ce, OWLObjectMaxCardinality):
- comparator = "<="
- elif isinstance(ce, OWLObjectExactCardinality):
- comparator = "="
- else:
- raise ValueError(ce)
-
- self.append(f"{{ SELECT {subject_variable} WHERE {{ ")
- self.append_triple(subject_variable, property_expression, object_variable)
-
- filler = ce.get_filler()
- with self.stack_variable(object_variable):
- self.process(filler)
-
- self.append(f" }} GROUP BY {subject_variable}"
- f" HAVING ( COUNT ( {object_variable} ) {comparator} {cardinality} ) }}")
-
- # an overload of process function
- # this overload is responsible for handling the exists operator combined with SELF
- # general case: ∃r.SELF
- @process.register
- def _(self, ce: OWLObjectHasSelf):
- subject = self.current_variable
- property = ce.get_property()
- self.append_triple(subject, property.get_named_property(), subject)
-
- # an overload of process function
- # this overload is responsible for handling the one of case (e.g., { john, jane }
- # general case: { a1, ..., an }
- @process.register
- def _(self, ce: OWLObjectOneOf):
- subject = self.current_variable
- if self.modal_depth == 1:
- self.append_triple(subject, "?p", "?o")
-
- self.append(f" FILTER ( {subject} IN ( ")
- first = True
- for ind in ce.individuals():
- if first:
- first = False
- else:
- self.append(",")
- assert isinstance(ind, OWLNamedIndividual)
- self.append(f"<{ind.to_string_id()}>")
- self.append(f" ) )")
-
- @process.register
- def _(self, ce: OWLDataSomeValuesFrom):
- object_variable = self.mapping.new_individual_variable()
- property_expression = ce.get_property()
- assert isinstance(property_expression, OWLDataProperty)
- self.append_triple(self.current_variable, property_expression, object_variable)
- filler = ce.get_filler()
- with self.stack_variable(object_variable):
- self.process(filler)
-
- @process.register
- def _(self, ce: OWLDataAllValuesFrom):
- subject = self.current_variable
- object_variable = self.mapping.new_individual_variable()
- property_expression = ce.get_property()
- assert isinstance(property_expression, OWLDataProperty)
- predicate = property_expression.to_string_id()
- filler = ce.get_filler()
-
- self.append_triple(self.current_variable, predicate, object_variable)
-
- var = self.mapping.new_individual_variable()
- cnt_var1 = self.new_count_var()
- self.append(f"{{ SELECT {subject} ( COUNT( {var} ) AS {cnt_var1} ) WHERE {{ ")
- self.append_triple(subject, predicate, var)
- with self.stack_variable(var):
- self.process(filler)
- self.append(f" }} GROUP BY {subject} }}")
-
- var = self.mapping.new_individual_variable()
- cnt_var2 = self.new_count_var()
- self.append(f"{{ SELECT {subject} ( COUNT( {var} ) AS {cnt_var2} ) WHERE {{ ")
- self.append_triple(subject, predicate, var)
- self.append(f" }} GROUP BY {subject} }}")
-
- self.append(f" FILTER( {cnt_var1} = {cnt_var2} )")
-
- @process.register
- def _(self, ce: OWLDataHasValue):
- property_expression = ce.get_property()
- value = ce.get_filler()
- assert isinstance(value, OWLDataProperty)
- self.append_triple(self.current_variable, property_expression, value)
-
- @process.register
- def _(self, node: OWLDatatype):
- if node != TopOWLDatatype:
- self.append(f" FILTER ( DATATYPE ( {self.current_variable} = <{node.to_string_id()}> ) ) ")
-
- @process.register
- def _(self, node: OWLDataOneOf):
- subject = self.current_variable
- if self.modal_depth == 1:
- self.append_triple(subject, "?p", "?o")
- self.append(f" FILTER ( {subject} IN ( ")
- first = True
- for value in node.values():
- if first:
- first = False
- else:
- self.append(",")
- if value:
- self.append(self.render(value))
- self.append(f" ) ) ")
-
- @process.register
- def _(self, node: OWLDatatypeRestriction):
- frs = node.get_facet_restrictions()
-
- for fr in frs:
- facet = fr.get_facet()
- value = fr.get_facet_value()
-
- if facet in _Variable_facet_comp:
- self.append(f' FILTER ( {self.current_variable} {_Variable_facet_comp[facet]}'
- f' "{value.get_literal()}"^^<{value.get_datatype().to_string_id()}> ) ')
-
-
-
-
-
-[docs]
- def append_triple(self, subject, predicate, object_):
- self.append(self.triple(subject, predicate, object_))
-
-
-
-
-
-
-[docs]
- def triple(self, subject, predicate, object_):
- return f"{self._maybe_quote(subject)} {self._maybe_quote_p(predicate)} {self._maybe_render(object_)} . "
-
-
-
-[docs]
- def as_query(self,
- root_variable: str,
- ce: OWLClassExpression,
- count: bool = False,
- values: Optional[Iterable[OWLNamedIndividual]] = None,
- named_individuals: bool = False)->str:
- """
- root variable: the variable that will be projected
- ce: the class expression to be transformed to a SPARQL query
- count: True, counts the results ; False, projects the individuals
- values: positive or negative examples from a class expression problem
- named_individuals: if set to True, the generated SPARQL query will return only entities that are instances
- of owl:NamedIndividual
-
- """
-
- qs = ["SELECT"]
- tp = self.convert(root_variable, ce, named_individuals)
- if count:
- qs.append(f" ( COUNT ( DISTINCT {root_variable} ) AS ?cnt ) WHERE {{ ")
- else:
- qs.append(f" DISTINCT {root_variable} WHERE {{ ")
- if values is not None and root_variable.startswith("?"):
- q = [f"VALUES {root_variable} {{ "]
- for x in values:
- q.append(f"<{x.to_string_id()}>")
- q.append(f"}} . ")
- qs.extend(q)
- qs.extend(tp)
- qs.append(f" }}")
-
-
- query = "\n".join(qs)
- parseQuery(query)
- return query
-
-
-
-
-converter = Owl2SparqlConverter()
-
-
-
-[docs]
-def owl_expression_to_sparql(root_variable: str = "?x",
- expression: OWLClassExpression = None,
- values: Optional[Iterable[OWLNamedIndividual]] = None,
- named_individuals: bool = False)->str:
- """Convert an OWL Class Expression (https://www.w3.org/TR/owl2-syntax/#Class_Expressions) into a SPARQL query
- root variable: the variable that will be projected
- expression: the class expression to be transformed to a SPARQL query
-
- values: positive or negative examples from a class expression problem. Unclear
- named_individuals: if set to True, the generated SPARQL query will return only entities
- that are instances of owl:NamedIndividual
- """
- assert expression is not None, "expression cannot be None"
- return converter.as_query(root_variable, expression, False, values, named_individuals)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/_modules/owlapy/owl_axiom.html b/_modules/owlapy/owl_axiom.html
index da294d7..be05a0b 100644
--- a/_modules/owlapy/owl_axiom.html
+++ b/_modules/owlapy/owl_axiom.html
@@ -82,7 +82,7 @@ Source code for owlapy.owl_axiom
from .owl_property import OWLDataPropertyExpression, OWLObjectPropertyExpression
from .owlobject import OWLObject, OWLEntity
from .types import OWLDatatype, OWLDataRange
-from .has import HasOperands
+from .meta_classes import HasOperands
from .owl_property import OWLPropertyExpression, OWLProperty
from .owl_class_expression import OWLClassExpression, OWLClass
from .owl_individual import OWLIndividual
diff --git a/_modules/owlapy/owl_class_expression.html b/_modules/owlapy/owl_class_expression.html
index 69d0b05..0836858 100644
--- a/_modules/owlapy/owl_class_expression.html
+++ b/_modules/owlapy/owl_class_expression.html
@@ -78,9 +78,14 @@
Source code for owlapy.owl_class_expression
from abc import abstractmethod, ABCMeta
from .owlobject import OWLObject, OWLEntity
-from .has import HasOperands
+from .meta_classes import HasOperands
from typing import Final, Iterable, Sequence
from .ranges import OWLPropertyRange, OWLDataRange
+from .owl_literal import OWLLiteral
+from typing import Final, Sequence, Union, Iterable
+from .owl_property import OWLDataPropertyExpression, OWLObjectProperty, OWLDataProperty
+
+from owlapy.vocab import OWLRDFVocabulary, XSDVocabulary
@@ -367,6 +372,118 @@ Source code for owlapy.owl_class_expression
_operands: Sequence[OWLClassExpression]
+
+
+
+[docs]
+class OWLDataComplementOf(OWLDataRange):
+ """Represents DataComplementOf in the OWL 2 Specification."""
+ type_index: Final = 4002
+
+ _data_range: OWLDataRange
+
+ def __init__(self, data_range: OWLDataRange):
+ """
+ Args:
+ data_range: Data range to complement.
+ """
+ self._data_range = data_range
+
+
+[docs]
+ def get_data_range(self) -> OWLDataRange:
+ """
+ Returns:
+ The wrapped data range.
+ """
+ return self._data_range
+
+
+
+
+
+
+[docs]
+ def __eq__(self, other):
+ if type(other) is type(self):
+ return self._data_range == other._data_range
+ return NotImplemented
+
+
+
+
+
+
+
+[docs]
+class OWLNaryDataRange(OWLDataRange, HasOperands[OWLDataRange]):
+ """OWLNaryDataRange."""
+ __slots__ = ()
+
+ _operands: Sequence[OWLDataRange]
+
+ def __init__(self, operands: Iterable[OWLDataRange]):
+ """
+ Args:
+ operands: Data ranges.
+ """
+ self._operands = tuple(operands)
+
+
+[docs]
+ def operands(self) -> Iterable[OWLDataRange]:
+ # documented in parent
+ yield from self._operands
+
+
+
+
+
+
+[docs]
+ def __eq__(self, other):
+ if type(other) == type(self):
+ return self._operands == other._operands
+ return NotImplemented
+
+
+
+
+
+
+[docs]
+class OWLDataUnionOf(OWLNaryDataRange):
+ """Represents a DataUnionOf data range in the OWL 2 Specification."""
+ __slots__ = '_operands'
+ type_index: Final = 4005
+
+ _operands: Sequence[OWLDataRange]
+
+
+[docs]
+class OWLDataIntersectionOf(OWLNaryDataRange):
+ """Represents DataIntersectionOf in the OWL 2 Specification."""
+ __slots__ = '_operands'
+ type_index: Final = 4004
+
+ _operands: Sequence[OWLDataRange]
+
+
+
+OWLThing: Final = OWLClass(OWLRDFVocabulary.OWL_THING.get_iri()) #: : :The OWL Class corresponding to owl:Thing
+OWLNothing: Final = OWLClass(OWLRDFVocabulary.OWL_NOTHING.get_iri()) #: : :The OWL Class corresponding to owl:Nothing
diff --git a/_modules/owlapy/owl_data.html b/_modules/owlapy/owl_data.html
deleted file mode 100644
index d959e54..0000000
--- a/_modules/owlapy/owl_data.html
+++ /dev/null
@@ -1,428 +0,0 @@
-
-
-
-
-
- owlapy.owl_data — OWLAPY 0.1.2 documentation
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Source code for owlapy.owl_data
-from .ranges import OWLDataRange
-
-from .owl_restriction import OWLHasValueRestriction, OWLDataRestriction, OWLDataCardinalityRestriction, OWLQuantifiedDataRestriction
-from .owl_literal import OWLLiteral
-from .has import HasOperands
-from typing import Final, Sequence, Union, Iterable
-from .owl_property import OWLDataPropertyExpression
-from .owl_class_expression import OWLClassExpression
-
-
-[docs]
-class OWLDataComplementOf(OWLDataRange):
- """Represents DataComplementOf in the OWL 2 Specification."""
- type_index: Final = 4002
-
- _data_range: OWLDataRange
-
- def __init__(self, data_range: OWLDataRange):
- """
- Args:
- data_range: Data range to complement.
- """
- self._data_range = data_range
-
-
-[docs]
- def get_data_range(self) -> OWLDataRange:
- """
- Returns:
- The wrapped data range.
- """
- return self._data_range
-
-
-
-
-
-
-[docs]
- def __eq__(self, other):
- if type(other) is type(self):
- return self._data_range == other._data_range
- return NotImplemented
-
-
-
-
-
-
-[docs]
-class OWLDataHasValue(OWLHasValueRestriction[OWLLiteral], OWLDataRestriction):
- """Represents DataHasValue restrictions in the OWL 2 Specification."""
- __slots__ = '_property'
-
- type_index: Final = 3014
-
- _property: OWLDataPropertyExpression
-
- def __init__(self, property: OWLDataPropertyExpression, value: OWLLiteral):
- """Gets an OWLDataHasValue restriction.
-
- Args:
- property: The data property that the restriction acts along.
- filler: The literal value.
-
- Returns:
- An OWLDataHasValue restriction along the specified property with the specified literal.
- """
- super().__init__(value)
- self._property = property
-
-
-[docs]
- def __repr__(self):
- return f"OWLDataHasValue(property={repr(self._property)},value={repr(self._v)})"
-
-
-
-[docs]
- def __eq__(self, other):
- if type(other) is type(self):
- return self._v == other._v and self._property == other._property
- return NotImplemented
-
-
-
-
-
-
-[docs]
- def as_some_values_from(self) -> OWLClassExpression:
- """A convenience method that obtains this restriction as an existential restriction with a nominal filler.
-
- Returns:
- The existential equivalent of this value restriction. simp(HasValue(p a)) = some(p {a}).
- """
- return OWLDataSomeValuesFrom(self.get_property(), OWLDataOneOf(self.get_filler()))
-
-
-
-[docs]
- def get_property(self) -> OWLDataPropertyExpression:
- # documented in parent
- return self._property
-
-
-
-
-[docs]
-class OWLDataMaxCardinality(OWLDataCardinalityRestriction):
- """Represents DataMaxCardinality restrictions in the OWL 2 Specification."""
- __slots__ = '_cardinality', '_filler', '_property'
-
- type_index: Final = 3017
-
- def __init__(self, cardinality: int, property: OWLDataPropertyExpression, filler: OWLDataRange):
- """
- Args:
- cardinality: Cannot be negative.
- property: The property that the restriction acts along.
- filler: Data range for restriction.
-
- Returns:
- A DataMaxCardinality on the specified property.
- """
- super().__init__(cardinality, property, filler)
-
-
-[docs]
-class OWLDataMinCardinality(OWLDataCardinalityRestriction):
- """Represents DataMinCardinality restrictions in the OWL 2 Specification."""
- __slots__ = '_cardinality', '_filler', '_property'
-
- type_index: Final = 3015
-
- def __init__(self, cardinality: int, property: OWLDataPropertyExpression, filler: OWLDataRange):
- """
- Args:
- cardinality: Cannot be negative.
- property: The property that the restriction acts along.
- filler: Data range for restriction.
-
- Returns:
- A DataMinCardinality on the specified property.
- """
- super().__init__(cardinality, property, filler)
-
-
-[docs]
-class OWLDataOneOf(OWLDataRange, HasOperands[OWLLiteral]):
- """Represents DataOneOf in the OWL 2 Specification."""
- type_index: Final = 4003
-
- _values: Sequence[OWLLiteral]
-
- def __init__(self, values: Union[OWLLiteral, Iterable[OWLLiteral]]):
- if isinstance(values, OWLLiteral):
- self._values = values,
- else:
- for _ in values:
- assert isinstance(_, OWLLiteral)
- self._values = tuple(values)
-
-
-[docs]
- def values(self) -> Iterable[OWLLiteral]:
- """Gets the values that are in the oneOf.
-
- Returns:
- The values of this {@code DataOneOf} class expression.
- """
- yield from self._values
-
-
-
-[docs]
- def operands(self) -> Iterable[OWLLiteral]:
- # documented in parent
- yield from self.values()
-
-
-
-
-
-
-[docs]
- def __eq__(self, other):
- if type(other) == type(self):
- return self._values == other._values
- return NotImplemented
-
-
-
-
-
-
-[docs]
-class OWLDataSomeValuesFrom(OWLQuantifiedDataRestriction):
- """Represents a DataSomeValuesFrom restriction in the OWL 2 Specification."""
- __slots__ = '_property'
-
- type_index: Final = 3012
-
- _property: OWLDataPropertyExpression
-
- def __init__(self, property: OWLDataPropertyExpression, filler: OWLDataRange):
- """Gets an OWLDataSomeValuesFrom restriction.
-
- Args:
- property: The data property that the restriction acts along.
- filler: The data range that is the filler.
-
- Returns:
- An OWLDataSomeValuesFrom restriction along the specified property with the specified filler.
- """
- super().__init__(filler)
- self._property = property
-
-
-[docs]
- def __repr__(self):
- return f"OWLDataSomeValuesFrom(property={repr(self._property)},filler={repr(self._filler)})"
-
-
-
-[docs]
- def __eq__(self, other):
- if type(other) is type(self):
- return self._filler == other._filler and self._property == other._property
- return NotImplemented
-
-
-
-
-
-
-[docs]
- def get_property(self) -> OWLDataPropertyExpression:
- # documented in parent
- return self._property
-
-
-
-[docs]
-class OWLNaryDataRange(OWLDataRange, HasOperands[OWLDataRange]):
- """OWLNaryDataRange."""
- __slots__ = ()
-
- _operands: Sequence[OWLDataRange]
-
- def __init__(self, operands: Iterable[OWLDataRange]):
- """
- Args:
- operands: Data ranges.
- """
- self._operands = tuple(operands)
-
-
-[docs]
- def operands(self) -> Iterable[OWLDataRange]:
- # documented in parent
- yield from self._operands
-
-
-
-
-
-
-[docs]
- def __eq__(self, other):
- if type(other) == type(self):
- return self._operands == other._operands
- return NotImplemented
-
-
-
-
-
-
-[docs]
-class OWLDataUnionOf(OWLNaryDataRange):
- """Represents a DataUnionOf data range in the OWL 2 Specification."""
- __slots__ = '_operands'
- type_index: Final = 4005
-
- _operands: Sequence[OWLDataRange]
-
-
-[docs]
-class OWLDataIntersectionOf(OWLNaryDataRange):
- """Represents DataIntersectionOf in the OWL 2 Specification."""
- __slots__ = '_operands'
- type_index: Final = 4004
-
- _operands: Sequence[OWLDataRange]
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/_modules/owlapy/owl_literal.html b/_modules/owlapy/owl_literal.html
index 25c32be..77c658f 100644
--- a/_modules/owlapy/owl_literal.html
+++ b/_modules/owlapy/owl_literal.html
@@ -83,7 +83,6 @@ Source code for owlapy.owl_literal
from .types import OWLDatatype
from datetime import datetime, date
from pandas import Timedelta
-from .owl_class_expression import OWLClass
from owlapy.vocab import OWLRDFVocabulary, XSDVocabulary
from .owl_property import OWLObjectProperty, OWLDataProperty
@@ -619,8 +618,6 @@ Source code for owlapy.owl_literal
def __repr__(self):
return f'OWLLiteral({repr(self._v)}, {self._datatype})'
-OWLThing: Final = OWLClass(OWLRDFVocabulary.OWL_THING.get_iri()) #: : :The OWL Class corresponding to owl:Thing
-OWLNothing: Final = OWLClass(OWLRDFVocabulary.OWL_NOTHING.get_iri()) #: : :The OWL Class corresponding to owl:Nothing
#: the built in top object property
OWLTopObjectProperty: Final = OWLObjectProperty(OWLRDFVocabulary.OWL_TOP_OBJECT_PROPERTY.get_iri())
#: the built in bottom object property
diff --git a/_modules/owlapy/owl_restriction.html b/_modules/owlapy/owl_restriction.html
index 017c2a1..8b4bbc7 100644
--- a/_modules/owlapy/owl_restriction.html
+++ b/_modules/owlapy/owl_restriction.html
@@ -77,14 +77,24 @@
Source code for owlapy.owl_restriction
from abc import ABCMeta, abstractmethod
-from .has import HasFiller, HasCardinality
-from typing import TypeVar, Generic, Final
+from .meta_classes import HasFiller, HasCardinality, HasOperands
+from typing import TypeVar, Generic, Final, Sequence, Union, Iterable
from .owl_class_expression import OWLAnonymousClassExpression, OWLClassExpression, OWLObjectIntersectionOf
from .owl_property import OWLPropertyExpression, OWLObjectPropertyExpression, OWLDataPropertyExpression
from .ranges import OWLPropertyRange, OWLDataRange
+from .owl_literal import OWLLiteral
+from .owl_individual import OWLIndividual
+from .types import OWLDatatype
+from .owlobject import OWLObject
+from owlapy.vocab import OWLRDFVocabulary, XSDVocabulary, OWLFacet
+from datetime import datetime, date
+from pandas import Timedelta
_T = TypeVar('_T') #:
_F = TypeVar('_F', bound=OWLPropertyRange) #:
+
+Literals = Union['OWLLiteral', int, float, bool, Timedelta, datetime, date, str] #:
+
[docs]
class OWLRestriction(OWLAnonymousClassExpression):
@@ -507,6 +517,7 @@ Source code for owlapy.owl_restriction
+
[docs]
class OWLQuantifiedDataRestriction(OWLQuantifiedRestriction[OWLDataRange],
@@ -576,6 +587,9 @@ Source code for owlapy.owl_restriction
return self._property
+
+
+
[docs]
class OWLDataCardinalityRestriction(OWLCardinalityRestriction[OWLDataRange],
@@ -622,6 +636,8 @@ Source code for owlapy.owl_restriction
+
+
[docs]
class OWLDataExactCardinality(OWLDataCardinalityRestriction):
@@ -654,6 +670,439 @@ Source code for owlapy.owl_restriction
return OWLObjectIntersectionOf((OWLDataMinCardinality(*args), OWLDataMaxCardinality(*args)))
+
+
+[docs]
+class OWLDataMaxCardinality(OWLDataCardinalityRestriction):
+ """Represents DataMaxCardinality restrictions in the OWL 2 Specification."""
+ __slots__ = '_cardinality', '_filler', '_property'
+
+ type_index: Final = 3017
+
+ def __init__(self, cardinality: int, property: OWLDataPropertyExpression, filler: OWLDataRange):
+ """
+ Args:
+ cardinality: Cannot be negative.
+ property: The property that the restriction acts along.
+ filler: Data range for restriction.
+
+ Returns:
+ A DataMaxCardinality on the specified property.
+ """
+ super().__init__(cardinality, property, filler)
+
+
+[docs]
+class OWLDataMinCardinality(OWLDataCardinalityRestriction):
+ """Represents DataMinCardinality restrictions in the OWL 2 Specification."""
+ __slots__ = '_cardinality', '_filler', '_property'
+
+ type_index: Final = 3015
+
+ def __init__(self, cardinality: int, property: OWLDataPropertyExpression, filler: OWLDataRange):
+ """
+ Args:
+ cardinality: Cannot be negative.
+ property: The property that the restriction acts along.
+ filler: Data range for restriction.
+
+ Returns:
+ A DataMinCardinality on the specified property.
+ """
+ super().__init__(cardinality, property, filler)
+
+
+
+
+[docs]
+class OWLDataSomeValuesFrom(OWLQuantifiedDataRestriction):
+ """Represents a DataSomeValuesFrom restriction in the OWL 2 Specification."""
+ __slots__ = '_property'
+
+ type_index: Final = 3012
+
+ _property: OWLDataPropertyExpression
+
+ def __init__(self, property: OWLDataPropertyExpression, filler: OWLDataRange):
+ """Gets an OWLDataSomeValuesFrom restriction.
+
+ Args:
+ property: The data property that the restriction acts along.
+ filler: The data range that is the filler.
+
+ Returns:
+ An OWLDataSomeValuesFrom restriction along the specified property with the specified filler.
+ """
+ super().__init__(filler)
+ self._property = property
+
+
+[docs]
+ def __repr__(self):
+ return f"OWLDataSomeValuesFrom(property={repr(self._property)},filler={repr(self._filler)})"
+
+
+
+[docs]
+ def __eq__(self, other):
+ if type(other) is type(self):
+ return self._filler == other._filler and self._property == other._property
+ return NotImplemented
+
+
+
+
+
+
+[docs]
+ def get_property(self) -> OWLDataPropertyExpression:
+ # documented in parent
+ return self._property
+
+
+
+
+[docs]
+class OWLDataHasValue(OWLHasValueRestriction[OWLLiteral], OWLDataRestriction):
+ """Represents DataHasValue restrictions in the OWL 2 Specification."""
+ __slots__ = '_property'
+
+ type_index: Final = 3014
+
+ _property: OWLDataPropertyExpression
+
+ def __init__(self, property: OWLDataPropertyExpression, value: OWLLiteral):
+ """Gets an OWLDataHasValue restriction.
+
+ Args:
+ property: The data property that the restriction acts along.
+ filler: The literal value.
+
+ Returns:
+ An OWLDataHasValue restriction along the specified property with the specified literal.
+ """
+ super().__init__(value)
+ self._property = property
+
+
+[docs]
+ def __repr__(self):
+ return f"OWLDataHasValue(property={repr(self._property)},value={repr(self._v)})"
+
+
+
+[docs]
+ def __eq__(self, other):
+ if type(other) is type(self):
+ return self._v == other._v and self._property == other._property
+ return NotImplemented
+
+
+
+
+
+
+[docs]
+ def as_some_values_from(self) -> OWLClassExpression:
+ """A convenience method that obtains this restriction as an existential restriction with a nominal filler.
+
+ Returns:
+ The existential equivalent of this value restriction. simp(HasValue(p a)) = some(p {a}).
+ """
+ return OWLDataSomeValuesFrom(self.get_property(), OWLDataOneOf(self.get_filler()))
+
+
+
+[docs]
+ def get_property(self) -> OWLDataPropertyExpression:
+ # documented in parent
+ return self._property
+
+
+
+
+
+
+[docs]
+class OWLObjectOneOf(OWLAnonymousClassExpression, HasOperands[OWLIndividual]):
+ """Represents an ObjectOneOf class expression in the OWL 2 Specification."""
+ __slots__ = '_values'
+ type_index: Final = 3004
+
+ def __init__(self, values: Union[OWLIndividual, Iterable[OWLIndividual]]):
+ if isinstance(values, OWLIndividual):
+ self._values = values,
+ else:
+ for _ in values:
+ assert isinstance(_, OWLIndividual)
+ self._values = tuple(values)
+
+
+[docs]
+ def individuals(self) -> Iterable[OWLIndividual]:
+ """Gets the individuals that are in the oneOf. These individuals represent the exact instances (extension)
+ of this class expression.
+
+ Returns:
+ The individuals that are the values of this {@code ObjectOneOf} class expression.
+ """
+ yield from self._values
+
+
+
+[docs]
+ def operands(self) -> Iterable[OWLIndividual]:
+ # documented in parent
+ yield from self.individuals()
+
+
+
+[docs]
+ def as_object_union_of(self) -> OWLClassExpression:
+ """Simplifies this enumeration to a union of singleton nominals.
+
+ Returns:
+ This enumeration in a more standard DL form.
+ simp({a}) = {a} simp({a0, ... , {an}) = unionOf({a0}, ... , {an})
+ """
+ if len(self._values) == 1:
+ return self
+ return OWLObjectUnionOf(map(lambda _: OWLObjectOneOf(_), self.individuals()))
+
+
+
+
+
+
+[docs]
+ def __eq__(self, other):
+ if type(other) == type(self):
+ return self._values == other._values
+ return NotImplemented
+
+
+
+
+
+
+
+
+[docs]
+class OWLDataOneOf(OWLDataRange, HasOperands[OWLLiteral]):
+ """Represents DataOneOf in the OWL 2 Specification."""
+ type_index: Final = 4003
+
+ _values: Sequence[OWLLiteral]
+
+ def __init__(self, values: Union[OWLLiteral, Iterable[OWLLiteral]]):
+ if isinstance(values, OWLLiteral):
+ self._values = values,
+ else:
+ for _ in values:
+ assert isinstance(_, OWLLiteral)
+ self._values = tuple(values)
+
+
+[docs]
+ def values(self) -> Iterable[OWLLiteral]:
+ """Gets the values that are in the oneOf.
+
+ Returns:
+ The values of this {@code DataOneOf} class expression.
+ """
+ yield from self._values
+
+
+
+[docs]
+ def operands(self) -> Iterable[OWLLiteral]:
+ # documented in parent
+ yield from self.values()
+
+
+
+
+
+
+[docs]
+ def __eq__(self, other):
+ if type(other) == type(self):
+ return self._values == other._values
+ return NotImplemented
+
+
+
+
+
+
+
+
+[docs]
+class OWLObjectHasValue(OWLHasValueRestriction[OWLIndividual], OWLObjectRestriction):
+ """Represents an ObjectHasValue class expression in the OWL 2 Specification."""
+ __slots__ = '_property', '_v'
+ type_index: Final = 3007
+
+ _property: OWLObjectPropertyExpression
+ _v: OWLIndividual
+
+ def __init__(self, property: OWLObjectPropertyExpression, individual: OWLIndividual):
+ """
+ Args:
+ property: The property that the restriction acts along.
+ individual: Individual for restriction.
+
+ Returns:
+ A HasValue restriction with specified property and value
+ """
+ super().__init__(individual)
+ self._property = property
+
+
+[docs]
+ def get_property(self) -> OWLObjectPropertyExpression:
+ # documented in parent
+ return self._property
+
+
+
+[docs]
+ def as_some_values_from(self) -> OWLClassExpression:
+ """A convenience method that obtains this restriction as an existential restriction with a nominal filler.
+
+ Returns:
+ The existential equivalent of this value restriction. simp(HasValue(p a)) = some(p {a}).
+ """
+ return OWLObjectSomeValuesFrom(self.get_property(), OWLObjectOneOf(self.get_filler()))
+
+
+
+[docs]
+ def __repr__(self):
+ return f'OWLObjectHasValue(property={self.get_property()}, individual={self._v})'
+
+
+
+[docs]
+class OWLDatatypeRestriction(OWLDataRange):
+ """Represents a DatatypeRestriction data range in the OWL 2 Specification."""
+ __slots__ = '_type', '_facet_restrictions'
+
+ type_index: Final = 4006
+
+ _type: OWLDatatype
+ _facet_restrictions: Sequence['OWLFacetRestriction']
+
+ def __init__(self, type_: OWLDatatype, facet_restrictions: Union['OWLFacetRestriction',
+ Iterable['OWLFacetRestriction']]):
+ self._type = type_
+ if isinstance(facet_restrictions, OWLFacetRestriction):
+ facet_restrictions = facet_restrictions,
+ self._facet_restrictions = tuple(facet_restrictions)
+
+
+
+
+
+[docs]
+ def get_facet_restrictions(self) -> Sequence['OWLFacetRestriction']:
+ return self._facet_restrictions
+
+
+
+[docs]
+ def __eq__(self, other):
+ if type(other) is type(self):
+ return self._type == other._type \
+ and self._facet_restrictions == other._facet_restrictions
+ return NotImplemented
+
+
+
+
+
+
+[docs]
+ def __repr__(self):
+ return f'OWLDatatypeRestriction({repr(self._type)}, {repr(self._facet_restrictions)})'
+
+
+
+[docs]
+class OWLFacetRestriction(OWLObject):
+ """A facet restriction is used to restrict a particular datatype."""
+
+ __slots__ = '_facet', '_literal'
+
+ type_index: Final = 4007
+
+ _facet: OWLFacet
+ _literal: 'OWLLiteral'
+
+ def __init__(self, facet: OWLFacet, literal: Literals):
+ self._facet = facet
+ if isinstance(literal, OWLLiteral):
+ self._literal = literal
+ else:
+ self._literal = OWLLiteral(literal)
+
+
+
+
+
+
+
+
+[docs]
+ def __eq__(self, other):
+ if type(other) is type(self):
+ return self._facet == other._facet and self._literal == other._literal
+ return NotImplemented
+
+
+
+
+
+
+
+
+
diff --git a/_modules/owlapy/owlobject.html b/_modules/owlapy/owlobject.html
index 46a6dc3..31f2af0 100644
--- a/_modules/owlapy/owlobject.html
+++ b/_modules/owlapy/owlobject.html
@@ -78,8 +78,7 @@
Source code for owlapy.owlobject
from abc import abstractmethod, ABCMeta
from typing import Optional
-from .has import HasIRI
-# from .iri import IRI
+from .meta_classes import HasIRI
class OWLObject(metaclass=ABCMeta):
"""Base interface for OWL objects"""
diff --git a/_modules/owlapy/parser.html b/_modules/owlapy/parser.html
index b45dadf..07725dd 100644
--- a/_modules/owlapy/parser.html
+++ b/_modules/owlapy/parser.html
@@ -88,17 +88,17 @@ Source code for owlapy.parser
from .vocab import OWLFacet, OWLRDFVocabulary
-from owlapy.model import OWLObjectHasSelf, OWLObjectIntersectionOf, OWLObjectMinCardinality, OWLObjectOneOf, \
- OWLObjectProperty, OWLObjectPropertyExpression, OWLObjectSomeValuesFrom, OWLObjectUnionOf, OWLClass, IRI, \
+from owlapy.model import OWLObjectHasSelf, OWLObjectIntersectionOf, OWLObjectMinCardinality, OWLObjectProperty, OWLObjectPropertyExpression, OWLObjectSomeValuesFrom, OWLObjectUnionOf, OWLClass, IRI, \
OWLClassExpression, OWLDataProperty, OWLNamedIndividual, OWLObjectComplementOf, OWLObjectExactCardinality, \
- OWLObjectHasValue, OWLQuantifiedDataRestriction, OWLQuantifiedObjectRestriction, StringOWLDatatype, \
+ OWLQuantifiedDataRestriction, OWLQuantifiedObjectRestriction, StringOWLDatatype, \
DateOWLDatatype, DateTimeOWLDatatype, DoubleOWLDatatype, DurationOWLDatatype, IntegerOWLDatatype, \
- OWLDataSomeValuesFrom, OWLDatatypeRestriction, OWLFacetRestriction, OWLDataExactCardinality, \
- OWLDataMaxCardinality, OWLObjectMaxCardinality, OWLDataIntersectionOf, OWLDataMinCardinality, OWLDataHasValue, \
- OWLLiteral, OWLDataRange, OWLDataUnionOf, OWLDataOneOf, OWLDatatype, OWLObjectCardinalityRestriction, \
- OWLDataCardinalityRestriction, OWLObjectAllValuesFrom, OWLDataAllValuesFrom, OWLDataComplementOf, BooleanOWLDatatype
-
+ OWLDataSomeValuesFrom, OWLDataExactCardinality, \
+ OWLDataMaxCardinality, OWLObjectMaxCardinality, OWLDataMinCardinality, OWLDataHasValue, \
+ OWLLiteral, OWLDataRange, OWLDataOneOf, OWLDatatype, OWLObjectCardinalityRestriction, \
+ OWLDataCardinalityRestriction, OWLObjectAllValuesFrom, OWLDataAllValuesFrom, BooleanOWLDatatype
+from owlapy.owl_class_expression import OWLDataIntersectionOf, OWLDataUnionOf, OWLDataComplementOf
+from owlapy.owl_restriction import OWLObjectHasValue, OWLDatatypeRestriction, OWLFacetRestriction, OWLObjectOneOf
MANCHESTER_GRAMMAR = Grammar(r"""
diff --git a/_modules/owlapy/render.html b/_modules/owlapy/render.html
index a7bb14d..f7edc64 100644
--- a/_modules/owlapy/render.html
+++ b/_modules/owlapy/render.html
@@ -89,16 +89,17 @@ Source code for owlapy.render
from .owl_class_expression import OWLClassExpression
# from owlapy.io import OWLObjectRenderer
-from owlapy.model import OWLLiteral, OWLNaryDataRange, OWLObject, OWLClass, OWLObjectSomeValuesFrom, \
+from owlapy.model import (OWLLiteral, OWLObject, OWLClass, OWLObjectSomeValuesFrom, \
OWLObjectAllValuesFrom, OWLObjectUnionOf, OWLBooleanClassExpression, OWLNaryBooleanClassExpression, \
OWLObjectIntersectionOf, OWLObjectComplementOf, OWLRestriction, \
- OWLObjectMinCardinality, OWLObjectExactCardinality, OWLObjectMaxCardinality, OWLObjectHasSelf, OWLObjectHasValue, \
- OWLObjectOneOf, OWLNamedIndividual, OWLEntity, IRI, OWLPropertyExpression, OWLDataSomeValuesFrom, \
- OWLFacetRestriction, OWLDatatypeRestriction, OWLDatatype, OWLDataAllValuesFrom, OWLDataComplementOf, \
- OWLDataUnionOf, OWLDataIntersectionOf, OWLDataHasValue, OWLDataOneOf, OWLDataMaxCardinality, \
- OWLDataMinCardinality, OWLDataExactCardinality
+ OWLObjectMinCardinality, OWLObjectExactCardinality, OWLObjectMaxCardinality, OWLObjectHasSelf,
+ OWLNamedIndividual, OWLEntity, IRI, OWLPropertyExpression, OWLDataSomeValuesFrom, \
+ OWLDatatype, OWLDataAllValuesFrom, \
+ OWLDataHasValue, OWLDataOneOf, OWLDataMaxCardinality, \
+ OWLDataMinCardinality, OWLDataExactCardinality)
from owlapy.vocab import OWLFacet
-
+from .owl_class_expression import OWLNaryDataRange, OWLDataComplementOf, OWLDataUnionOf, OWLDataIntersectionOf
+from .owl_restriction import OWLObjectHasValue, OWLFacetRestriction, OWLDatatypeRestriction, OWLObjectOneOf
_DL_SYNTAX = types.SimpleNamespace(
SUBCLASS="⊑",
diff --git a/_modules/owlapy/types.html b/_modules/owlapy/types.html
index 6726f4e..39278ca 100644
--- a/_modules/owlapy/types.html
+++ b/_modules/owlapy/types.html
@@ -79,7 +79,7 @@ Source code for owlapy.types
from .owlobject import OWLObject, OWLEntity
from .ranges import OWLDataRange
from .iri import IRI
-from .has import HasIRI
+from .meta_classes import HasIRI
from typing import Final, Union
diff --git a/_modules/owlapy/util.html b/_modules/owlapy/util.html
index fffccf4..b7caa68 100644
--- a/_modules/owlapy/util.html
+++ b/_modules/owlapy/util.html
@@ -83,14 +83,14 @@ Source code for owlapy.util
from .owl_property import OWLObjectInverseOf
from owlapy.model import HasIRI, OWLClassExpression, OWLClass, OWLObjectCardinalityRestriction, \
OWLObjectComplementOf, OWLNothing, OWLPropertyRange, OWLRestriction, OWLThing, OWLObjectSomeValuesFrom, \
- OWLObjectHasValue, OWLObjectMinCardinality, OWLObjectMaxCardinality, OWLObjectExactCardinality, OWLObjectHasSelf, \
- OWLObjectOneOf, OWLDataMaxCardinality, OWLDataMinCardinality, OWLDataExactCardinality, OWLDataHasValue, \
+ OWLObjectMinCardinality, OWLObjectMaxCardinality, OWLObjectExactCardinality, OWLObjectHasSelf, \
+ OWLDataMaxCardinality, OWLDataMinCardinality, OWLDataExactCardinality, OWLDataHasValue, \
OWLDataAllValuesFrom, OWLDataSomeValuesFrom, OWLObjectAllValuesFrom, HasFiller, HasCardinality, HasOperands, \
- OWLDatatypeRestriction, OWLDataComplementOf, OWLDatatype, OWLDataUnionOf, \
- OWLDataIntersectionOf, OWLDataOneOf, OWLFacetRestriction, OWLLiteral, OWLObjectIntersectionOf, \
- OWLDataCardinalityRestriction, OWLNaryBooleanClassExpression, OWLNaryDataRange, OWLObjectUnionOf, \
+ OWLDatatype,OWLDataOneOf, OWLLiteral, OWLObjectIntersectionOf, \
+ OWLDataCardinalityRestriction, OWLNaryBooleanClassExpression, OWLObjectUnionOf, \
OWLDataRange, OWLObject
-
+from .owl_class_expression import OWLDataComplementOf, OWLDataUnionOf, OWLDataIntersectionOf, OWLNaryDataRange
+from .owl_restriction import OWLObjectHasValue, OWLDatatypeRestriction, OWLFacetRestriction, OWLObjectOneOf
_HasIRI = TypeVar('_HasIRI', bound=HasIRI) #:
_HasIndex = TypeVar('_HasIndex', bound=HasIndex) #:
diff --git a/_modules/owlapy/vocab.html b/_modules/owlapy/vocab.html
index b1d7d88..3875e26 100644
--- a/_modules/owlapy/vocab.html
+++ b/_modules/owlapy/vocab.html
@@ -84,7 +84,7 @@ Source code for owlapy.vocab
from re import match
from owlapy import namespaces
-from .has import HasIRI
+from .meta_classes import HasIRI
from .iri import IRI
from owlapy.namespaces import Namespaces
diff --git a/_sources/autoapi/owlapy/has/index.rst.txt b/_sources/autoapi/owlapy/has/index.rst.txt
index 7eca705..dd74c6f 100644
--- a/_sources/autoapi/owlapy/has/index.rst.txt
+++ b/_sources/autoapi/owlapy/has/index.rst.txt
@@ -13,10 +13,6 @@ Classes
.. autoapisummary::
owlapy.has.HasIndex
- owlapy.has.HasIRI
- owlapy.has.HasOperands
- owlapy.has.HasFiller
- owlapy.has.HasCardinality
@@ -39,90 +35,3 @@ Classes
-.. py:class:: HasIRI
-
-
- Simple class to access the IRI.
-
- .. py:attribute:: __slots__
- :value: ()
-
-
-
- .. py:method:: get_iri() -> IRI
- :abstractmethod:
-
- Gets the IRI of this object.
-
- :returns: The IRI of this object.
-
-
-
-.. py:class:: HasOperands
-
-
- Bases: :py:obj:`Generic`\ [\ :py:obj:`_T`\ ]
-
- An interface to objects that have a collection of operands.
-
- :param _T: Operand type.
-
- .. py:attribute:: __slots__
- :value: ()
-
-
-
- .. py:method:: operands() -> Iterable[_T]
- :abstractmethod:
-
- Gets the operands - e.g., the individuals in a sameAs axiom, or the classes in an equivalent
- classes axiom.
-
- :returns: The operands.
-
-
-
-.. py:class:: HasFiller
-
-
- Bases: :py:obj:`Generic`\ [\ :py:obj:`_T`\ ]
-
- An interface to objects that have a filler.
-
- :param _T: Filler type.
-
- .. py:attribute:: __slots__
- :value: ()
-
-
-
- .. py:method:: get_filler() -> _T
- :abstractmethod:
-
- Gets the filler for this restriction. In the case of an object restriction this will be an individual, in
- the case of a data restriction this will be a constant (data value). For quantified restriction this will be
- a class expression or a data range.
-
- :returns: the value
-
-
-
-.. py:class:: HasCardinality
-
-
- An interface to objects that have a cardinality.
-
- .. py:attribute:: __slots__
- :value: ()
-
-
-
- .. py:method:: get_cardinality() -> int
- :abstractmethod:
-
- Gets the cardinality of a restriction.
-
- :returns: The cardinality. A non-negative integer.
-
-
-
diff --git a/_sources/autoapi/owlapy/index.rst.txt b/_sources/autoapi/owlapy/index.rst.txt
index 4d8dc4f..da3e788 100644
--- a/_sources/autoapi/owlapy/index.rst.txt
+++ b/_sources/autoapi/owlapy/index.rst.txt
@@ -22,11 +22,11 @@ Submodules
has/index.rst
iri/index.rst
+ meta_classes/index.rst
namespaces/index.rst
owl_annotation/index.rst
owl_axiom/index.rst
owl_class_expression/index.rst
- owl_data/index.rst
owl_individual/index.rst
owl_literal/index.rst
owl_property/index.rst
diff --git a/_sources/autoapi/owlapy/meta_classes/index.rst.txt b/_sources/autoapi/owlapy/meta_classes/index.rst.txt
new file mode 100644
index 0000000..53e9d66
--- /dev/null
+++ b/_sources/autoapi/owlapy/meta_classes/index.rst.txt
@@ -0,0 +1,109 @@
+:py:mod:`owlapy.meta_classes`
+=============================
+
+.. py:module:: owlapy.meta_classes
+
+
+Module Contents
+---------------
+
+Classes
+~~~~~~~
+
+.. autoapisummary::
+
+ owlapy.meta_classes.HasIRI
+ owlapy.meta_classes.HasOperands
+ owlapy.meta_classes.HasFiller
+ owlapy.meta_classes.HasCardinality
+
+
+
+
+.. py:class:: HasIRI
+
+
+ Simple class to access the IRI.
+
+ .. py:attribute:: __slots__
+ :value: ()
+
+
+
+ .. py:method:: get_iri() -> IRI
+ :abstractmethod:
+
+ Gets the IRI of this object.
+
+ :returns: The IRI of this object.
+
+
+
+.. py:class:: HasOperands
+
+
+ Bases: :py:obj:`Generic`\ [\ :py:obj:`_T`\ ]
+
+ An interface to objects that have a collection of operands.
+
+ :param _T: Operand type.
+
+ .. py:attribute:: __slots__
+ :value: ()
+
+
+
+ .. py:method:: operands() -> Iterable[_T]
+ :abstractmethod:
+
+ Gets the operands - e.g., the individuals in a sameAs axiom, or the classes in an equivalent
+ classes axiom.
+
+ :returns: The operands.
+
+
+
+.. py:class:: HasFiller
+
+
+ Bases: :py:obj:`Generic`\ [\ :py:obj:`_T`\ ]
+
+ An interface to objects that have a filler.
+
+ :param _T: Filler type.
+
+ .. py:attribute:: __slots__
+ :value: ()
+
+
+
+ .. py:method:: get_filler() -> _T
+ :abstractmethod:
+
+ Gets the filler for this restriction. In the case of an object restriction this will be an individual, in
+ the case of a data restriction this will be a constant (data value). For quantified restriction this will be
+ a class expression or a data range.
+
+ :returns: the value
+
+
+
+.. py:class:: HasCardinality
+
+
+ An interface to objects that have a cardinality.
+
+ .. py:attribute:: __slots__
+ :value: ()
+
+
+
+ .. py:method:: get_cardinality() -> int
+ :abstractmethod:
+
+ Gets the cardinality of a restriction.
+
+ :returns: The cardinality. A non-negative integer.
+
+
+
diff --git a/_sources/autoapi/owlapy/model/index.rst.txt b/_sources/autoapi/owlapy/model/index.rst.txt
index 2013ed0..ce77a09 100644
--- a/_sources/autoapi/owlapy/model/index.rst.txt
+++ b/_sources/autoapi/owlapy/model/index.rst.txt
@@ -67,6 +67,13 @@ Classes
owlapy.model.OWLObjectMaxCardinality
owlapy.model.OWLObjectExactCardinality
owlapy.model.OWLDataExactCardinality
+ owlapy.model.OWLDataMinCardinality
+ owlapy.model.OWLDataMaxCardinality
+ owlapy.model.OWLDataSomeValuesFrom
+ owlapy.model.OWLDataHasValue
+ owlapy.model.OWLDataOneOf
+ owlapy.model.OWLQuantifiedDataRestriction
+ owlapy.model.OWLDataCardinalityRestriction
owlapy.model.OWLNamedIndividual
owlapy.model.OWLIndividual
owlapy.model.OWLEquivalentClassesAxiom
@@ -77,23 +84,8 @@ Classes
owlapy.model.OWLObjectPropertyDomainAxiom
owlapy.model.OWLObjectPropertyRangeAxiom
owlapy.model.OWLDatatype
- owlapy.model.OWLDataMinCardinality
- owlapy.model.OWLDataMaxCardinality
- owlapy.model.OWLDataComplementOf
- owlapy.model.OWLDataIntersectionOf
- owlapy.model.OWLDataHasValue
- owlapy.model.OWLDataOneOf
- owlapy.model.OWLDataSomeValuesFrom
- owlapy.model.OWLDataUnionOf
- owlapy.model.OWLNaryDataRange
- owlapy.model.OWLQuantifiedDataRestriction
- owlapy.model.OWLDataCardinalityRestriction
owlapy.model.OWLLiteral
- owlapy.model.OWLObjectHasValue
- owlapy.model.OWLObjectOneOf
owlapy.model.OWLOntologyID
- owlapy.model.OWLDatatypeRestriction
- owlapy.model.OWLFacetRestriction
owlapy.model.OWLImportsDeclaration
owlapy.model.OWLOntology
owlapy.model.OWLOntologyChange
@@ -117,9 +109,9 @@ Attributes
.. autoapisummary::
- owlapy.model.Literals
owlapy.model.OWLThing
owlapy.model.OWLNothing
+ owlapy.model.Literals
owlapy.model.OWLTopObjectProperty
owlapy.model.OWLBottomObjectProperty
owlapy.model.OWLTopDataProperty
@@ -671,7 +663,7 @@ Attributes
.. py:class:: OWLNaryBooleanClassExpression(operands: Iterable[OWLClassExpression])
- Bases: :py:obj:`OWLBooleanClassExpression`, :py:obj:`owlapy.has.HasOperands`\ [\ :py:obj:`OWLClassExpression`\ ]
+ Bases: :py:obj:`OWLBooleanClassExpression`, :py:obj:`owlapy.meta_classes.HasOperands`\ [\ :py:obj:`OWLClassExpression`\ ]
OWLNaryBooleanClassExpression.
@@ -753,7 +745,7 @@ Attributes
.. py:class:: OWLObjectComplementOf(op: OWLClassExpression)
- Bases: :py:obj:`OWLBooleanClassExpression`, :py:obj:`owlapy.has.HasOperands`\ [\ :py:obj:`OWLClassExpression`\ ]
+ Bases: :py:obj:`OWLBooleanClassExpression`, :py:obj:`owlapy.meta_classes.HasOperands`\ [\ :py:obj:`OWLClassExpression`\ ]
Represents an ObjectComplementOf class expression in the OWL 2 Specification.
@@ -964,6 +956,16 @@ Attributes
+.. py:data:: OWLThing
+ :type: Final
+
+
+
+.. py:data:: OWLNothing
+ :type: Final
+
+
+
.. py:class:: OWLObjectPropertyExpression
@@ -1273,7 +1275,7 @@ Attributes
.. py:class:: OWLQuantifiedRestriction
- Bases: :py:obj:`Generic`\ [\ :py:obj:`_T`\ ], :py:obj:`OWLRestriction`, :py:obj:`owlapy.has.HasFiller`\ [\ :py:obj:`_T`\ ]
+ Bases: :py:obj:`Generic`\ [\ :py:obj:`_T`\ ], :py:obj:`OWLRestriction`, :py:obj:`owlapy.meta_classes.HasFiller`\ [\ :py:obj:`_T`\ ]
Represents a quantified restriction.
@@ -1336,7 +1338,7 @@ Attributes
.. py:class:: OWLHasValueRestriction(value: _T)
- Bases: :py:obj:`Generic`\ [\ :py:obj:`_T`\ ], :py:obj:`OWLRestriction`, :py:obj:`owlapy.has.HasFiller`\ [\ :py:obj:`_T`\ ]
+ Bases: :py:obj:`Generic`\ [\ :py:obj:`_T`\ ], :py:obj:`OWLRestriction`, :py:obj:`owlapy.meta_classes.HasFiller`\ [\ :py:obj:`_T`\ ]
OWLHasValueRestriction.
@@ -1390,7 +1392,7 @@ Attributes
.. py:class:: OWLCardinalityRestriction(cardinality: int, filler: _F)
- Bases: :py:obj:`Generic`\ [\ :py:obj:`_F`\ ], :py:obj:`OWLQuantifiedRestriction`\ [\ :py:obj:`_F`\ ], :py:obj:`owlapy.has.HasCardinality`
+ Bases: :py:obj:`Generic`\ [\ :py:obj:`_F`\ ], :py:obj:`OWLQuantifiedRestriction`\ [\ :py:obj:`_F`\ ], :py:obj:`owlapy.meta_classes.HasCardinality`
Base interface for owl min and max cardinality restriction.
@@ -1619,6 +1621,228 @@ Attributes
+.. py:class:: OWLDataMinCardinality(cardinality: int, property: owlapy.owl_property.OWLDataPropertyExpression, filler: owlapy.ranges.OWLDataRange)
+
+
+ Bases: :py:obj:`OWLDataCardinalityRestriction`
+
+ Represents DataMinCardinality restrictions in the OWL 2 Specification.
+
+ .. py:attribute:: __slots__
+ :value: ('_cardinality', '_filler', '_property')
+
+
+
+ .. py:attribute:: type_index
+ :type: Final
+ :value: 3015
+
+
+
+
+.. py:class:: OWLDataMaxCardinality(cardinality: int, property: owlapy.owl_property.OWLDataPropertyExpression, filler: owlapy.ranges.OWLDataRange)
+
+
+ Bases: :py:obj:`OWLDataCardinalityRestriction`
+
+ Represents DataMaxCardinality restrictions in the OWL 2 Specification.
+
+ .. py:attribute:: __slots__
+ :value: ('_cardinality', '_filler', '_property')
+
+
+
+ .. py:attribute:: type_index
+ :type: Final
+ :value: 3017
+
+
+
+
+.. py:class:: OWLDataSomeValuesFrom(property: owlapy.owl_property.OWLDataPropertyExpression, filler: owlapy.ranges.OWLDataRange)
+
+
+ Bases: :py:obj:`OWLQuantifiedDataRestriction`
+
+ Represents a DataSomeValuesFrom restriction in the OWL 2 Specification.
+
+ .. py:attribute:: __slots__
+ :value: '_property'
+
+
+
+ .. py:attribute:: type_index
+ :type: Final
+ :value: 3012
+
+
+
+ .. py:method:: __repr__()
+
+ Return repr(self).
+
+
+ .. py:method:: __eq__(other)
+
+ Return self==value.
+
+
+ .. py:method:: __hash__()
+
+ Return hash(self).
+
+
+ .. py:method:: get_property() -> owlapy.owl_property.OWLDataPropertyExpression
+
+ :returns: Property being restricted.
+
+
+
+.. py:class:: OWLDataHasValue(property: owlapy.owl_property.OWLDataPropertyExpression, value: owlapy.owl_literal.OWLLiteral)
+
+
+ Bases: :py:obj:`OWLHasValueRestriction`\ [\ :py:obj:`owlapy.owl_literal.OWLLiteral`\ ], :py:obj:`OWLDataRestriction`
+
+ Represents DataHasValue restrictions in the OWL 2 Specification.
+
+ .. py:attribute:: __slots__
+ :value: '_property'
+
+
+
+ .. py:attribute:: type_index
+ :type: Final
+ :value: 3014
+
+
+
+ .. py:method:: __repr__()
+
+ Return repr(self).
+
+
+ .. py:method:: __eq__(other)
+
+ Return self==value.
+
+
+ .. py:method:: __hash__()
+
+ Return hash(self).
+
+
+ .. py:method:: as_some_values_from() -> owlapy.owl_class_expression.OWLClassExpression
+
+ A convenience method that obtains this restriction as an existential restriction with a nominal filler.
+
+ :returns: The existential equivalent of this value restriction. simp(HasValue(p a)) = some(p {a}).
+
+
+ .. py:method:: get_property() -> owlapy.owl_property.OWLDataPropertyExpression
+
+ :returns: Property being restricted.
+
+
+
+.. py:class:: OWLDataOneOf(values: Union[owlapy.owl_literal.OWLLiteral, Iterable[owlapy.owl_literal.OWLLiteral]])
+
+
+ Bases: :py:obj:`owlapy.ranges.OWLDataRange`, :py:obj:`owlapy.meta_classes.HasOperands`\ [\ :py:obj:`owlapy.owl_literal.OWLLiteral`\ ]
+
+ Represents DataOneOf in the OWL 2 Specification.
+
+ .. py:attribute:: type_index
+ :type: Final
+ :value: 4003
+
+
+
+ .. py:method:: values() -> Iterable[owlapy.owl_literal.OWLLiteral]
+
+ Gets the values that are in the oneOf.
+
+ :returns: The values of this {@code DataOneOf} class expression.
+
+
+ .. py:method:: operands() -> Iterable[owlapy.owl_literal.OWLLiteral]
+
+ Gets the operands - e.g., the individuals in a sameAs axiom, or the classes in an equivalent
+ classes axiom.
+
+ :returns: The operands.
+
+
+ .. py:method:: __hash__()
+
+ Return hash(self).
+
+
+ .. py:method:: __eq__(other)
+
+ Return self==value.
+
+
+ .. py:method:: __repr__()
+
+ Return repr(self).
+
+
+
+.. py:class:: OWLQuantifiedDataRestriction(filler: owlapy.ranges.OWLDataRange)
+
+
+ Bases: :py:obj:`OWLQuantifiedRestriction`\ [\ :py:obj:`owlapy.ranges.OWLDataRange`\ ], :py:obj:`OWLDataRestriction`
+
+ Represents a quantified data restriction.
+
+ .. py:attribute:: __slots__
+ :value: ()
+
+
+
+ .. py:method:: get_filler() -> owlapy.ranges.OWLDataRange
+
+ Gets the filler for this restriction. In the case of an object restriction this will be an individual, in
+ the case of a data restriction this will be a constant (data value). For quantified restriction this will be
+ a class expression or a data range.
+
+ :returns: the value
+
+
+
+.. py:class:: OWLDataCardinalityRestriction(cardinality: int, property: owlapy.owl_property.OWLDataPropertyExpression, filler: owlapy.ranges.OWLDataRange)
+
+
+ Bases: :py:obj:`OWLCardinalityRestriction`\ [\ :py:obj:`owlapy.ranges.OWLDataRange`\ ], :py:obj:`OWLQuantifiedDataRestriction`, :py:obj:`OWLDataRestriction`
+
+ Represents Data Property Cardinality Restrictions in the OWL 2 specification.
+
+ .. py:attribute:: __slots__
+ :value: ()
+
+
+
+ .. py:method:: get_property() -> owlapy.owl_property.OWLDataPropertyExpression
+
+ :returns: Property being restricted.
+
+
+ .. py:method:: __repr__()
+
+ Return repr(self).
+
+
+ .. py:method:: __eq__(other)
+
+ Return self==value.
+
+
+ .. py:method:: __hash__()
+
+ Return hash(self).
+
+
+
.. py:class:: OWLNamedIndividual(iri: Union[owlapy.iri.IRI, str])
@@ -1782,7 +2006,7 @@ Attributes
-.. py:class:: OWLDatatype(iri: Union[owlapy.iri.IRI, owlapy.has.HasIRI])
+.. py:class:: OWLDatatype(iri: Union[owlapy.iri.IRI, owlapy.meta_classes.HasIRI])
Bases: :py:obj:`owlapy.owlobject.OWLEntity`, :py:obj:`owlapy.ranges.OWLDataRange`
@@ -1808,355 +2032,25 @@ Attributes
-.. py:class:: OWLDataMinCardinality(cardinality: int, property: owlapy.owl_property.OWLDataPropertyExpression, filler: owlapy.ranges.OWLDataRange)
+.. py:class:: OWLLiteral
- Bases: :py:obj:`owlapy.owl_restriction.OWLDataCardinalityRestriction`
+ Bases: :py:obj:`owlapy.owl_annotation.OWLAnnotationValue`
- Represents DataMinCardinality restrictions in the OWL 2 Specification.
+ Represents a Literal in the OWL 2 Specification.
.. py:attribute:: __slots__
- :value: ('_cardinality', '_filler', '_property')
+ :value: ()
.. py:attribute:: type_index
:type: Final
- :value: 3015
+ :value: 4008
-
-.. py:class:: OWLDataMaxCardinality(cardinality: int, property: owlapy.owl_property.OWLDataPropertyExpression, filler: owlapy.ranges.OWLDataRange)
-
-
- Bases: :py:obj:`owlapy.owl_restriction.OWLDataCardinalityRestriction`
-
- Represents DataMaxCardinality restrictions in the OWL 2 Specification.
-
- .. py:attribute:: __slots__
- :value: ('_cardinality', '_filler', '_property')
-
-
-
- .. py:attribute:: type_index
- :type: Final
- :value: 3017
-
-
-
-
-.. py:class:: OWLDataComplementOf(data_range: owlapy.ranges.OWLDataRange)
-
-
- Bases: :py:obj:`owlapy.ranges.OWLDataRange`
-
- Represents DataComplementOf in the OWL 2 Specification.
-
- .. py:attribute:: type_index
- :type: Final
- :value: 4002
-
-
-
- .. py:method:: get_data_range() -> owlapy.ranges.OWLDataRange
-
- :returns: The wrapped data range.
-
-
- .. py:method:: __repr__()
-
- Return repr(self).
-
-
- .. py:method:: __eq__(other)
-
- Return self==value.
-
-
- .. py:method:: __hash__()
-
- Return hash(self).
-
-
-
-.. py:class:: OWLDataIntersectionOf(operands: Iterable[owlapy.ranges.OWLDataRange])
-
-
- Bases: :py:obj:`OWLNaryDataRange`
-
- Represents DataIntersectionOf in the OWL 2 Specification.
-
- .. py:attribute:: __slots__
- :value: '_operands'
-
-
-
- .. py:attribute:: type_index
- :type: Final
- :value: 4004
-
-
-
-
-.. py:class:: OWLDataHasValue(property: owlapy.owl_property.OWLDataPropertyExpression, value: owlapy.owl_literal.OWLLiteral)
-
-
- Bases: :py:obj:`owlapy.owl_restriction.OWLHasValueRestriction`\ [\ :py:obj:`owlapy.owl_literal.OWLLiteral`\ ], :py:obj:`owlapy.owl_restriction.OWLDataRestriction`
-
- Represents DataHasValue restrictions in the OWL 2 Specification.
-
- .. py:attribute:: __slots__
- :value: '_property'
-
-
-
- .. py:attribute:: type_index
- :type: Final
- :value: 3014
-
-
-
- .. py:method:: __repr__()
-
- Return repr(self).
-
-
- .. py:method:: __eq__(other)
-
- Return self==value.
-
-
- .. py:method:: __hash__()
-
- Return hash(self).
-
-
- .. py:method:: as_some_values_from() -> owlapy.owl_class_expression.OWLClassExpression
-
- A convenience method that obtains this restriction as an existential restriction with a nominal filler.
-
- :returns: The existential equivalent of this value restriction. simp(HasValue(p a)) = some(p {a}).
-
-
- .. py:method:: get_property() -> owlapy.owl_property.OWLDataPropertyExpression
-
- :returns: Property being restricted.
-
-
-
-.. py:class:: OWLDataOneOf(values: Union[owlapy.owl_literal.OWLLiteral, Iterable[owlapy.owl_literal.OWLLiteral]])
-
-
- Bases: :py:obj:`owlapy.ranges.OWLDataRange`, :py:obj:`owlapy.has.HasOperands`\ [\ :py:obj:`owlapy.owl_literal.OWLLiteral`\ ]
-
- Represents DataOneOf in the OWL 2 Specification.
-
- .. py:attribute:: type_index
- :type: Final
- :value: 4003
-
-
-
- .. py:method:: values() -> Iterable[owlapy.owl_literal.OWLLiteral]
-
- Gets the values that are in the oneOf.
-
- :returns: The values of this {@code DataOneOf} class expression.
-
-
- .. py:method:: operands() -> Iterable[owlapy.owl_literal.OWLLiteral]
-
- Gets the operands - e.g., the individuals in a sameAs axiom, or the classes in an equivalent
- classes axiom.
-
- :returns: The operands.
-
-
- .. py:method:: __hash__()
-
- Return hash(self).
-
-
- .. py:method:: __eq__(other)
-
- Return self==value.
-
-
- .. py:method:: __repr__()
-
- Return repr(self).
-
-
-
-.. py:class:: OWLDataSomeValuesFrom(property: owlapy.owl_property.OWLDataPropertyExpression, filler: owlapy.ranges.OWLDataRange)
-
-
- Bases: :py:obj:`owlapy.owl_restriction.OWLQuantifiedDataRestriction`
-
- Represents a DataSomeValuesFrom restriction in the OWL 2 Specification.
-
- .. py:attribute:: __slots__
- :value: '_property'
-
-
-
- .. py:attribute:: type_index
- :type: Final
- :value: 3012
-
-
-
- .. py:method:: __repr__()
-
- Return repr(self).
-
-
- .. py:method:: __eq__(other)
-
- Return self==value.
-
-
- .. py:method:: __hash__()
-
- Return hash(self).
-
-
- .. py:method:: get_property() -> owlapy.owl_property.OWLDataPropertyExpression
-
- :returns: Property being restricted.
-
-
-
-.. py:class:: OWLDataUnionOf(operands: Iterable[owlapy.ranges.OWLDataRange])
-
-
- Bases: :py:obj:`OWLNaryDataRange`
-
- Represents a DataUnionOf data range in the OWL 2 Specification.
-
- .. py:attribute:: __slots__
- :value: '_operands'
-
-
-
- .. py:attribute:: type_index
- :type: Final
- :value: 4005
-
-
-
-
-.. py:class:: OWLNaryDataRange(operands: Iterable[owlapy.ranges.OWLDataRange])
-
-
- Bases: :py:obj:`owlapy.ranges.OWLDataRange`, :py:obj:`owlapy.has.HasOperands`\ [\ :py:obj:`owlapy.ranges.OWLDataRange`\ ]
-
- OWLNaryDataRange.
-
- .. py:attribute:: __slots__
- :value: ()
-
-
-
- .. py:method:: operands() -> Iterable[owlapy.ranges.OWLDataRange]
-
- Gets the operands - e.g., the individuals in a sameAs axiom, or the classes in an equivalent
- classes axiom.
-
- :returns: The operands.
-
-
- .. py:method:: __repr__()
-
- Return repr(self).
-
-
- .. py:method:: __eq__(other)
-
- Return self==value.
-
-
- .. py:method:: __hash__()
-
- Return hash(self).
-
-
-
-.. py:class:: OWLQuantifiedDataRestriction(filler: owlapy.ranges.OWLDataRange)
-
-
- Bases: :py:obj:`OWLQuantifiedRestriction`\ [\ :py:obj:`owlapy.ranges.OWLDataRange`\ ], :py:obj:`OWLDataRestriction`
-
- Represents a quantified data restriction.
-
- .. py:attribute:: __slots__
- :value: ()
-
-
-
- .. py:method:: get_filler() -> owlapy.ranges.OWLDataRange
-
- Gets the filler for this restriction. In the case of an object restriction this will be an individual, in
- the case of a data restriction this will be a constant (data value). For quantified restriction this will be
- a class expression or a data range.
-
- :returns: the value
-
-
-
-.. py:class:: OWLDataCardinalityRestriction(cardinality: int, property: owlapy.owl_property.OWLDataPropertyExpression, filler: owlapy.ranges.OWLDataRange)
-
-
- Bases: :py:obj:`OWLCardinalityRestriction`\ [\ :py:obj:`owlapy.ranges.OWLDataRange`\ ], :py:obj:`OWLQuantifiedDataRestriction`, :py:obj:`OWLDataRestriction`
-
- Represents Data Property Cardinality Restrictions in the OWL 2 specification.
-
- .. py:attribute:: __slots__
- :value: ()
-
-
-
- .. py:method:: get_property() -> owlapy.owl_property.OWLDataPropertyExpression
-
- :returns: Property being restricted.
-
-
- .. py:method:: __repr__()
-
- Return repr(self).
-
-
- .. py:method:: __eq__(other)
-
- Return self==value.
-
-
- .. py:method:: __hash__()
-
- Return hash(self).
-
-
-
-.. py:class:: OWLLiteral
-
-
- Bases: :py:obj:`owlapy.owl_annotation.OWLAnnotationValue`
-
- Represents a Literal in the OWL 2 Specification.
-
- .. py:attribute:: __slots__
- :value: ()
-
-
-
- .. py:attribute:: type_index
- :type: Final
- :value: 4008
-
-
-
- .. py:method:: get_literal() -> str
+ .. py:method:: get_literal() -> str
Gets the lexical value of this literal. Note that the language tag is not included.
@@ -2280,100 +2174,6 @@ Attributes
-.. py:class:: OWLObjectHasValue(property: owlapy.owl_property.OWLObjectPropertyExpression, individual: owlapy.owl_individual.OWLIndividual)
-
-
- Bases: :py:obj:`owlapy.owl_restriction.OWLHasValueRestriction`\ [\ :py:obj:`owlapy.owl_individual.OWLIndividual`\ ], :py:obj:`owlapy.owl_restriction.OWLObjectRestriction`
-
- Represents an ObjectHasValue class expression in the OWL 2 Specification.
-
- .. py:attribute:: __slots__
- :value: ('_property', '_v')
-
-
-
- .. py:attribute:: type_index
- :type: Final
- :value: 3007
-
-
-
- .. py:method:: get_property() -> owlapy.owl_property.OWLObjectPropertyExpression
-
- :returns: Property being restricted.
-
-
- .. py:method:: as_some_values_from() -> owlapy.owl_class_expression.OWLClassExpression
-
- A convenience method that obtains this restriction as an existential restriction with a nominal filler.
-
- :returns: The existential equivalent of this value restriction. simp(HasValue(p a)) = some(p {a}).
-
-
- .. py:method:: __repr__()
-
- Return repr(self).
-
-
-
-.. py:class:: OWLObjectOneOf(values: Union[owlapy.owl_individual.OWLIndividual, Iterable[owlapy.owl_individual.OWLIndividual]])
-
-
- Bases: :py:obj:`owlapy.owl_class_expression.OWLAnonymousClassExpression`, :py:obj:`owlapy.has.HasOperands`\ [\ :py:obj:`owlapy.owl_individual.OWLIndividual`\ ]
-
- Represents an ObjectOneOf class expression in the OWL 2 Specification.
-
- .. py:attribute:: __slots__
- :value: '_values'
-
-
-
- .. py:attribute:: type_index
- :type: Final
- :value: 3004
-
-
-
- .. py:method:: individuals() -> Iterable[owlapy.owl_individual.OWLIndividual]
-
- Gets the individuals that are in the oneOf. These individuals represent the exact instances (extension)
- of this class expression.
-
- :returns: The individuals that are the values of this {@code ObjectOneOf} class expression.
-
-
- .. py:method:: operands() -> Iterable[owlapy.owl_individual.OWLIndividual]
-
- Gets the operands - e.g., the individuals in a sameAs axiom, or the classes in an equivalent
- classes axiom.
-
- :returns: The operands.
-
-
- .. py:method:: as_object_union_of() -> owlapy.owl_class_expression.OWLClassExpression
-
- Simplifies this enumeration to a union of singleton nominals.
-
- :returns: This enumeration in a more standard DL form.
- simp({a}) = {a} simp({a0, ... , {an}) = unionOf({a0}, ... , {an})
-
-
- .. py:method:: __hash__()
-
- Return hash(self).
-
-
- .. py:method:: __eq__(other)
-
- Return self==value.
-
-
- .. py:method:: __repr__()
-
- Return repr(self).
-
-
-
.. py:class:: OWLOntologyID(ontology_iri: Optional[owlapy.iri.IRI] = None, version_iri: Optional[owlapy.iri.IRI] = None)
@@ -2425,90 +2225,10 @@ Attributes
-.. py:class:: OWLDatatypeRestriction(type_: owlapy.types.OWLDatatype, facet_restrictions: Union[OWLFacetRestriction, Iterable[OWLFacetRestriction]])
-
-
- Bases: :py:obj:`owlapy.owl_class_expression.OWLDataRange`
-
- Represents a DatatypeRestriction data range in the OWL 2 Specification.
-
- .. py:attribute:: __slots__
- :value: ('_type', '_facet_restrictions')
-
-
-
- .. py:attribute:: type_index
- :type: Final
- :value: 4006
-
-
-
- .. py:method:: get_datatype() -> owlapy.types.OWLDatatype
-
-
- .. py:method:: get_facet_restrictions() -> Sequence[OWLFacetRestriction]
-
-
- .. py:method:: __eq__(other)
-
- Return self==value.
-
-
- .. py:method:: __hash__()
-
- Return hash(self).
-
-
- .. py:method:: __repr__()
-
- Return repr(self).
-
-
-
-.. py:class:: OWLFacetRestriction(facet: owlapy.vocab.OWLFacet, literal: Literals)
-
-
- Bases: :py:obj:`owlapy.owlobject.OWLObject`
-
- A facet restriction is used to restrict a particular datatype.
-
- .. py:attribute:: __slots__
- :value: ('_facet', '_literal')
-
-
-
- .. py:attribute:: type_index
- :type: Final
- :value: 4007
-
-
-
- .. py:method:: get_facet() -> owlapy.vocab.OWLFacet
-
-
- .. py:method:: get_facet_value() -> owlapy.owl_literal.OWLLiteral
-
-
- .. py:method:: __eq__(other)
-
- Return self==value.
-
-
- .. py:method:: __hash__()
-
- Return hash(self).
-
-
- .. py:method:: __repr__()
-
- Return repr(self).
-
-
-
.. py:class:: OWLImportsDeclaration(import_iri: owlapy.iri.IRI)
- Bases: :py:obj:`owlapy.has.HasIRI`
+ Bases: :py:obj:`owlapy.meta_classes.HasIRI`
Represents an import statement in an ontology.
@@ -3115,16 +2835,6 @@ Attributes
-.. py:data:: OWLThing
- :type: Final
-
-
-
-.. py:data:: OWLNothing
- :type: Final
-
-
-
.. py:data:: OWLTopObjectProperty
:type: Final
diff --git a/_sources/autoapi/owlapy/model/providers/index.rst.txt b/_sources/autoapi/owlapy/model/providers/index.rst.txt
index b88c525..6afdf9d 100644
--- a/_sources/autoapi/owlapy/model/providers/index.rst.txt
+++ b/_sources/autoapi/owlapy/model/providers/index.rst.txt
@@ -39,32 +39,32 @@ Attributes
-.. py:function:: OWLDatatypeMaxExclusiveRestriction(max_: Restriction_Literals) -> owlapy.model.OWLDatatypeRestriction
+.. py:function:: OWLDatatypeMaxExclusiveRestriction(max_: Restriction_Literals) -> owlapy.owl_restriction.OWLDatatypeRestriction
Create a max exclusive restriction.
-.. py:function:: OWLDatatypeMinExclusiveRestriction(min_: Restriction_Literals) -> owlapy.model.OWLDatatypeRestriction
+.. py:function:: OWLDatatypeMinExclusiveRestriction(min_: Restriction_Literals) -> owlapy.owl_restriction.OWLDatatypeRestriction
Create a min exclusive restriction.
-.. py:function:: OWLDatatypeMaxInclusiveRestriction(max_: Restriction_Literals) -> owlapy.model.OWLDatatypeRestriction
+.. py:function:: OWLDatatypeMaxInclusiveRestriction(max_: Restriction_Literals) -> owlapy.owl_restriction.OWLDatatypeRestriction
Create a max inclusive restriction.
-.. py:function:: OWLDatatypeMinInclusiveRestriction(min_: Restriction_Literals) -> owlapy.model.OWLDatatypeRestriction
+.. py:function:: OWLDatatypeMinInclusiveRestriction(min_: Restriction_Literals) -> owlapy.owl_restriction.OWLDatatypeRestriction
Create a min inclusive restriction.
-.. py:function:: OWLDatatypeMinMaxExclusiveRestriction(min_: Restriction_Literals, max_: Restriction_Literals) -> owlapy.model.OWLDatatypeRestriction
+.. py:function:: OWLDatatypeMinMaxExclusiveRestriction(min_: Restriction_Literals, max_: Restriction_Literals) -> owlapy.owl_restriction.OWLDatatypeRestriction
Create a min-max exclusive restriction.
-.. py:function:: OWLDatatypeMinMaxInclusiveRestriction(min_: Restriction_Literals, max_: Restriction_Literals) -> owlapy.model.OWLDatatypeRestriction
+.. py:function:: OWLDatatypeMinMaxInclusiveRestriction(min_: Restriction_Literals, max_: Restriction_Literals) -> owlapy.owl_restriction.OWLDatatypeRestriction
Create a min-max inclusive restriction.
diff --git a/_sources/autoapi/owlapy/owl_axiom/index.rst.txt b/_sources/autoapi/owlapy/owl_axiom/index.rst.txt
index 26c536d..1b86560 100644
--- a/_sources/autoapi/owlapy/owl_axiom/index.rst.txt
+++ b/_sources/autoapi/owlapy/owl_axiom/index.rst.txt
@@ -253,7 +253,7 @@ Classes
.. py:class:: OWLHasKeyAxiom(class_expression: owlapy.owl_class_expression.OWLClassExpression, property_expressions: List[owlapy.owl_property.OWLPropertyExpression], annotations: Optional[Iterable[OWLAnnotation]] = None)
- Bases: :py:obj:`OWLLogicalAxiom`, :py:obj:`owlapy.has.HasOperands`\ [\ :py:obj:`owlapy.owl_property.OWLPropertyExpression`\ ]
+ Bases: :py:obj:`OWLLogicalAxiom`, :py:obj:`owlapy.meta_classes.HasOperands`\ [\ :py:obj:`owlapy.owl_property.OWLPropertyExpression`\ ]
Represents a HasKey axiom in the OWL 2 Specification.
diff --git a/_sources/autoapi/owlapy/owl_class_expression/index.rst.txt b/_sources/autoapi/owlapy/owl_class_expression/index.rst.txt
index 804de76..166a7f8 100644
--- a/_sources/autoapi/owlapy/owl_class_expression/index.rst.txt
+++ b/_sources/autoapi/owlapy/owl_class_expression/index.rst.txt
@@ -20,10 +20,23 @@ Classes
owlapy.owl_class_expression.OWLNaryBooleanClassExpression
owlapy.owl_class_expression.OWLObjectUnionOf
owlapy.owl_class_expression.OWLObjectIntersectionOf
+ owlapy.owl_class_expression.OWLDataComplementOf
+ owlapy.owl_class_expression.OWLNaryDataRange
+ owlapy.owl_class_expression.OWLDataUnionOf
+ owlapy.owl_class_expression.OWLDataIntersectionOf
+Attributes
+~~~~~~~~~~
+
+.. autoapisummary::
+
+ owlapy.owl_class_expression.OWLThing
+ owlapy.owl_class_expression.OWLNothing
+
+
.. py:class:: OWLClassExpression
@@ -123,7 +136,7 @@ Classes
.. py:class:: OWLObjectComplementOf(op: OWLClassExpression)
- Bases: :py:obj:`OWLBooleanClassExpression`, :py:obj:`owlapy.has.HasOperands`\ [\ :py:obj:`OWLClassExpression`\ ]
+ Bases: :py:obj:`OWLBooleanClassExpression`, :py:obj:`owlapy.meta_classes.HasOperands`\ [\ :py:obj:`OWLClassExpression`\ ]
Represents an ObjectComplementOf class expression in the OWL 2 Specification.
@@ -233,7 +246,7 @@ Classes
.. py:class:: OWLNaryBooleanClassExpression(operands: Iterable[OWLClassExpression])
- Bases: :py:obj:`OWLBooleanClassExpression`, :py:obj:`owlapy.has.HasOperands`\ [\ :py:obj:`OWLClassExpression`\ ]
+ Bases: :py:obj:`OWLBooleanClassExpression`, :py:obj:`owlapy.meta_classes.HasOperands`\ [\ :py:obj:`OWLClassExpression`\ ]
OWLNaryBooleanClassExpression.
@@ -304,3 +317,121 @@ Classes
+.. py:class:: OWLDataComplementOf(data_range: owlapy.ranges.OWLDataRange)
+
+
+ Bases: :py:obj:`owlapy.ranges.OWLDataRange`
+
+ Represents DataComplementOf in the OWL 2 Specification.
+
+ .. py:attribute:: type_index
+ :type: Final
+ :value: 4002
+
+
+
+ .. py:method:: get_data_range() -> owlapy.ranges.OWLDataRange
+
+ :returns: The wrapped data range.
+
+
+ .. py:method:: __repr__()
+
+ Return repr(self).
+
+
+ .. py:method:: __eq__(other)
+
+ Return self==value.
+
+
+ .. py:method:: __hash__()
+
+ Return hash(self).
+
+
+
+.. py:class:: OWLNaryDataRange(operands: Iterable[owlapy.ranges.OWLDataRange])
+
+
+ Bases: :py:obj:`owlapy.ranges.OWLDataRange`, :py:obj:`owlapy.meta_classes.HasOperands`\ [\ :py:obj:`owlapy.ranges.OWLDataRange`\ ]
+
+ OWLNaryDataRange.
+
+ .. py:attribute:: __slots__
+ :value: ()
+
+
+
+ .. py:method:: operands() -> Iterable[owlapy.ranges.OWLDataRange]
+
+ Gets the operands - e.g., the individuals in a sameAs axiom, or the classes in an equivalent
+ classes axiom.
+
+ :returns: The operands.
+
+
+ .. py:method:: __repr__()
+
+ Return repr(self).
+
+
+ .. py:method:: __eq__(other)
+
+ Return self==value.
+
+
+ .. py:method:: __hash__()
+
+ Return hash(self).
+
+
+
+.. py:class:: OWLDataUnionOf(operands: Iterable[owlapy.ranges.OWLDataRange])
+
+
+ Bases: :py:obj:`OWLNaryDataRange`
+
+ Represents a DataUnionOf data range in the OWL 2 Specification.
+
+ .. py:attribute:: __slots__
+ :value: '_operands'
+
+
+
+ .. py:attribute:: type_index
+ :type: Final
+ :value: 4005
+
+
+
+
+.. py:class:: OWLDataIntersectionOf(operands: Iterable[owlapy.ranges.OWLDataRange])
+
+
+ Bases: :py:obj:`OWLNaryDataRange`
+
+ Represents DataIntersectionOf in the OWL 2 Specification.
+
+ .. py:attribute:: __slots__
+ :value: '_operands'
+
+
+
+ .. py:attribute:: type_index
+ :type: Final
+ :value: 4004
+
+
+
+
+.. py:data:: OWLThing
+ :type: Final
+
+
+
+.. py:data:: OWLNothing
+ :type: Final
+
+
+
diff --git a/_sources/autoapi/owlapy/owl_data/index.rst.txt b/_sources/autoapi/owlapy/owl_data/index.rst.txt
deleted file mode 100644
index d32c62a..0000000
--- a/_sources/autoapi/owlapy/owl_data/index.rst.txt
+++ /dev/null
@@ -1,302 +0,0 @@
-:py:mod:`owlapy.owl_data`
-=========================
-
-.. py:module:: owlapy.owl_data
-
-
-Module Contents
----------------
-
-Classes
-~~~~~~~
-
-.. autoapisummary::
-
- owlapy.owl_data.OWLDataComplementOf
- owlapy.owl_data.OWLDataHasValue
- owlapy.owl_data.OWLDataMaxCardinality
- owlapy.owl_data.OWLDataMinCardinality
- owlapy.owl_data.OWLDataOneOf
- owlapy.owl_data.OWLDataSomeValuesFrom
- owlapy.owl_data.OWLNaryDataRange
- owlapy.owl_data.OWLDataUnionOf
- owlapy.owl_data.OWLDataIntersectionOf
-
-
-
-
-.. py:class:: OWLDataComplementOf(data_range: owlapy.ranges.OWLDataRange)
-
-
- Bases: :py:obj:`owlapy.ranges.OWLDataRange`
-
- Represents DataComplementOf in the OWL 2 Specification.
-
- .. py:attribute:: type_index
- :type: Final
- :value: 4002
-
-
-
- .. py:method:: get_data_range() -> owlapy.ranges.OWLDataRange
-
- :returns: The wrapped data range.
-
-
- .. py:method:: __repr__()
-
- Return repr(self).
-
-
- .. py:method:: __eq__(other)
-
- Return self==value.
-
-
- .. py:method:: __hash__()
-
- Return hash(self).
-
-
-
-.. py:class:: OWLDataHasValue(property: owlapy.owl_property.OWLDataPropertyExpression, value: owlapy.owl_literal.OWLLiteral)
-
-
- Bases: :py:obj:`owlapy.owl_restriction.OWLHasValueRestriction`\ [\ :py:obj:`owlapy.owl_literal.OWLLiteral`\ ], :py:obj:`owlapy.owl_restriction.OWLDataRestriction`
-
- Represents DataHasValue restrictions in the OWL 2 Specification.
-
- .. py:attribute:: __slots__
- :value: '_property'
-
-
-
- .. py:attribute:: type_index
- :type: Final
- :value: 3014
-
-
-
- .. py:method:: __repr__()
-
- Return repr(self).
-
-
- .. py:method:: __eq__(other)
-
- Return self==value.
-
-
- .. py:method:: __hash__()
-
- Return hash(self).
-
-
- .. py:method:: as_some_values_from() -> owlapy.owl_class_expression.OWLClassExpression
-
- A convenience method that obtains this restriction as an existential restriction with a nominal filler.
-
- :returns: The existential equivalent of this value restriction. simp(HasValue(p a)) = some(p {a}).
-
-
- .. py:method:: get_property() -> owlapy.owl_property.OWLDataPropertyExpression
-
- :returns: Property being restricted.
-
-
-
-.. py:class:: OWLDataMaxCardinality(cardinality: int, property: owlapy.owl_property.OWLDataPropertyExpression, filler: owlapy.ranges.OWLDataRange)
-
-
- Bases: :py:obj:`owlapy.owl_restriction.OWLDataCardinalityRestriction`
-
- Represents DataMaxCardinality restrictions in the OWL 2 Specification.
-
- .. py:attribute:: __slots__
- :value: ('_cardinality', '_filler', '_property')
-
-
-
- .. py:attribute:: type_index
- :type: Final
- :value: 3017
-
-
-
-
-.. py:class:: OWLDataMinCardinality(cardinality: int, property: owlapy.owl_property.OWLDataPropertyExpression, filler: owlapy.ranges.OWLDataRange)
-
-
- Bases: :py:obj:`owlapy.owl_restriction.OWLDataCardinalityRestriction`
-
- Represents DataMinCardinality restrictions in the OWL 2 Specification.
-
- .. py:attribute:: __slots__
- :value: ('_cardinality', '_filler', '_property')
-
-
-
- .. py:attribute:: type_index
- :type: Final
- :value: 3015
-
-
-
-
-.. py:class:: OWLDataOneOf(values: Union[owlapy.owl_literal.OWLLiteral, Iterable[owlapy.owl_literal.OWLLiteral]])
-
-
- Bases: :py:obj:`owlapy.ranges.OWLDataRange`, :py:obj:`owlapy.has.HasOperands`\ [\ :py:obj:`owlapy.owl_literal.OWLLiteral`\ ]
-
- Represents DataOneOf in the OWL 2 Specification.
-
- .. py:attribute:: type_index
- :type: Final
- :value: 4003
-
-
-
- .. py:method:: values() -> Iterable[owlapy.owl_literal.OWLLiteral]
-
- Gets the values that are in the oneOf.
-
- :returns: The values of this {@code DataOneOf} class expression.
-
-
- .. py:method:: operands() -> Iterable[owlapy.owl_literal.OWLLiteral]
-
- Gets the operands - e.g., the individuals in a sameAs axiom, or the classes in an equivalent
- classes axiom.
-
- :returns: The operands.
-
-
- .. py:method:: __hash__()
-
- Return hash(self).
-
-
- .. py:method:: __eq__(other)
-
- Return self==value.
-
-
- .. py:method:: __repr__()
-
- Return repr(self).
-
-
-
-.. py:class:: OWLDataSomeValuesFrom(property: owlapy.owl_property.OWLDataPropertyExpression, filler: owlapy.ranges.OWLDataRange)
-
-
- Bases: :py:obj:`owlapy.owl_restriction.OWLQuantifiedDataRestriction`
-
- Represents a DataSomeValuesFrom restriction in the OWL 2 Specification.
-
- .. py:attribute:: __slots__
- :value: '_property'
-
-
-
- .. py:attribute:: type_index
- :type: Final
- :value: 3012
-
-
-
- .. py:method:: __repr__()
-
- Return repr(self).
-
-
- .. py:method:: __eq__(other)
-
- Return self==value.
-
-
- .. py:method:: __hash__()
-
- Return hash(self).
-
-
- .. py:method:: get_property() -> owlapy.owl_property.OWLDataPropertyExpression
-
- :returns: Property being restricted.
-
-
-
-.. py:class:: OWLNaryDataRange(operands: Iterable[owlapy.ranges.OWLDataRange])
-
-
- Bases: :py:obj:`owlapy.ranges.OWLDataRange`, :py:obj:`owlapy.has.HasOperands`\ [\ :py:obj:`owlapy.ranges.OWLDataRange`\ ]
-
- OWLNaryDataRange.
-
- .. py:attribute:: __slots__
- :value: ()
-
-
-
- .. py:method:: operands() -> Iterable[owlapy.ranges.OWLDataRange]
-
- Gets the operands - e.g., the individuals in a sameAs axiom, or the classes in an equivalent
- classes axiom.
-
- :returns: The operands.
-
-
- .. py:method:: __repr__()
-
- Return repr(self).
-
-
- .. py:method:: __eq__(other)
-
- Return self==value.
-
-
- .. py:method:: __hash__()
-
- Return hash(self).
-
-
-
-.. py:class:: OWLDataUnionOf(operands: Iterable[owlapy.ranges.OWLDataRange])
-
-
- Bases: :py:obj:`OWLNaryDataRange`
-
- Represents a DataUnionOf data range in the OWL 2 Specification.
-
- .. py:attribute:: __slots__
- :value: '_operands'
-
-
-
- .. py:attribute:: type_index
- :type: Final
- :value: 4005
-
-
-
-
-.. py:class:: OWLDataIntersectionOf(operands: Iterable[owlapy.ranges.OWLDataRange])
-
-
- Bases: :py:obj:`OWLNaryDataRange`
-
- Represents DataIntersectionOf in the OWL 2 Specification.
-
- .. py:attribute:: __slots__
- :value: '_operands'
-
-
-
- .. py:attribute:: type_index
- :type: Final
- :value: 4004
-
-
-
-
diff --git a/_sources/autoapi/owlapy/owl_literal/index.rst.txt b/_sources/autoapi/owlapy/owl_literal/index.rst.txt
index e153715..3642431 100644
--- a/_sources/autoapi/owlapy/owl_literal/index.rst.txt
+++ b/_sources/autoapi/owlapy/owl_literal/index.rst.txt
@@ -23,8 +23,6 @@ Attributes
.. autoapisummary::
owlapy.owl_literal.Literals
- owlapy.owl_literal.OWLThing
- owlapy.owl_literal.OWLNothing
owlapy.owl_literal.OWLTopObjectProperty
owlapy.owl_literal.OWLBottomObjectProperty
owlapy.owl_literal.OWLTopDataProperty
@@ -183,16 +181,6 @@ Attributes
-.. py:data:: OWLThing
- :type: Final
-
-
-
-.. py:data:: OWLNothing
- :type: Final
-
-
-
.. py:data:: OWLTopObjectProperty
:type: Final
diff --git a/_sources/autoapi/owlapy/owl_restriction/index.rst.txt b/_sources/autoapi/owlapy/owl_restriction/index.rst.txt
index 552cbb4..a2c46bc 100644
--- a/_sources/autoapi/owlapy/owl_restriction/index.rst.txt
+++ b/_sources/autoapi/owlapy/owl_restriction/index.rst.txt
@@ -30,10 +30,31 @@ Classes
owlapy.owl_restriction.OWLDataAllValuesFrom
owlapy.owl_restriction.OWLDataCardinalityRestriction
owlapy.owl_restriction.OWLDataExactCardinality
+ owlapy.owl_restriction.OWLDataMaxCardinality
+ owlapy.owl_restriction.OWLDataMinCardinality
+ owlapy.owl_restriction.OWLDataSomeValuesFrom
+ owlapy.owl_restriction.OWLDataHasValue
+ owlapy.owl_restriction.OWLObjectOneOf
+ owlapy.owl_restriction.OWLDataOneOf
+ owlapy.owl_restriction.OWLObjectHasValue
+ owlapy.owl_restriction.OWLDatatypeRestriction
+ owlapy.owl_restriction.OWLFacetRestriction
+Attributes
+~~~~~~~~~~
+
+.. autoapisummary::
+
+ owlapy.owl_restriction.Literals
+
+
+.. py:data:: Literals
+
+
+
.. py:class:: OWLRestriction
@@ -116,7 +137,7 @@ Classes
.. py:class:: OWLHasValueRestriction(value: _T)
- Bases: :py:obj:`Generic`\ [\ :py:obj:`_T`\ ], :py:obj:`OWLRestriction`, :py:obj:`owlapy.has.HasFiller`\ [\ :py:obj:`_T`\ ]
+ Bases: :py:obj:`Generic`\ [\ :py:obj:`_T`\ ], :py:obj:`OWLRestriction`, :py:obj:`owlapy.meta_classes.HasFiller`\ [\ :py:obj:`_T`\ ]
OWLHasValueRestriction.
@@ -150,7 +171,7 @@ Classes
.. py:class:: OWLQuantifiedRestriction
- Bases: :py:obj:`Generic`\ [\ :py:obj:`_T`\ ], :py:obj:`OWLRestriction`, :py:obj:`owlapy.has.HasFiller`\ [\ :py:obj:`_T`\ ]
+ Bases: :py:obj:`Generic`\ [\ :py:obj:`_T`\ ], :py:obj:`OWLRestriction`, :py:obj:`owlapy.meta_classes.HasFiller`\ [\ :py:obj:`_T`\ ]
Represents a quantified restriction.
@@ -265,7 +286,7 @@ Classes
.. py:class:: OWLCardinalityRestriction(cardinality: int, filler: _F)
- Bases: :py:obj:`Generic`\ [\ :py:obj:`_F`\ ], :py:obj:`OWLQuantifiedRestriction`\ [\ :py:obj:`_F`\ ], :py:obj:`owlapy.has.HasCardinality`
+ Bases: :py:obj:`Generic`\ [\ :py:obj:`_F`\ ], :py:obj:`OWLQuantifiedRestriction`\ [\ :py:obj:`_F`\ ], :py:obj:`owlapy.meta_classes.HasCardinality`
Base interface for owl min and max cardinality restriction.
@@ -549,3 +570,344 @@ Classes
+.. py:class:: OWLDataMaxCardinality(cardinality: int, property: owlapy.owl_property.OWLDataPropertyExpression, filler: owlapy.ranges.OWLDataRange)
+
+
+ Bases: :py:obj:`OWLDataCardinalityRestriction`
+
+ Represents DataMaxCardinality restrictions in the OWL 2 Specification.
+
+ .. py:attribute:: __slots__
+ :value: ('_cardinality', '_filler', '_property')
+
+
+
+ .. py:attribute:: type_index
+ :type: Final
+ :value: 3017
+
+
+
+
+.. py:class:: OWLDataMinCardinality(cardinality: int, property: owlapy.owl_property.OWLDataPropertyExpression, filler: owlapy.ranges.OWLDataRange)
+
+
+ Bases: :py:obj:`OWLDataCardinalityRestriction`
+
+ Represents DataMinCardinality restrictions in the OWL 2 Specification.
+
+ .. py:attribute:: __slots__
+ :value: ('_cardinality', '_filler', '_property')
+
+
+
+ .. py:attribute:: type_index
+ :type: Final
+ :value: 3015
+
+
+
+
+.. py:class:: OWLDataSomeValuesFrom(property: owlapy.owl_property.OWLDataPropertyExpression, filler: owlapy.ranges.OWLDataRange)
+
+
+ Bases: :py:obj:`OWLQuantifiedDataRestriction`
+
+ Represents a DataSomeValuesFrom restriction in the OWL 2 Specification.
+
+ .. py:attribute:: __slots__
+ :value: '_property'
+
+
+
+ .. py:attribute:: type_index
+ :type: Final
+ :value: 3012
+
+
+
+ .. py:method:: __repr__()
+
+ Return repr(self).
+
+
+ .. py:method:: __eq__(other)
+
+ Return self==value.
+
+
+ .. py:method:: __hash__()
+
+ Return hash(self).
+
+
+ .. py:method:: get_property() -> owlapy.owl_property.OWLDataPropertyExpression
+
+ :returns: Property being restricted.
+
+
+
+.. py:class:: OWLDataHasValue(property: owlapy.owl_property.OWLDataPropertyExpression, value: owlapy.owl_literal.OWLLiteral)
+
+
+ Bases: :py:obj:`OWLHasValueRestriction`\ [\ :py:obj:`owlapy.owl_literal.OWLLiteral`\ ], :py:obj:`OWLDataRestriction`
+
+ Represents DataHasValue restrictions in the OWL 2 Specification.
+
+ .. py:attribute:: __slots__
+ :value: '_property'
+
+
+
+ .. py:attribute:: type_index
+ :type: Final
+ :value: 3014
+
+
+
+ .. py:method:: __repr__()
+
+ Return repr(self).
+
+
+ .. py:method:: __eq__(other)
+
+ Return self==value.
+
+
+ .. py:method:: __hash__()
+
+ Return hash(self).
+
+
+ .. py:method:: as_some_values_from() -> owlapy.owl_class_expression.OWLClassExpression
+
+ A convenience method that obtains this restriction as an existential restriction with a nominal filler.
+
+ :returns: The existential equivalent of this value restriction. simp(HasValue(p a)) = some(p {a}).
+
+
+ .. py:method:: get_property() -> owlapy.owl_property.OWLDataPropertyExpression
+
+ :returns: Property being restricted.
+
+
+
+.. py:class:: OWLObjectOneOf(values: Union[owlapy.owl_individual.OWLIndividual, Iterable[owlapy.owl_individual.OWLIndividual]])
+
+
+ Bases: :py:obj:`owlapy.owl_class_expression.OWLAnonymousClassExpression`, :py:obj:`owlapy.meta_classes.HasOperands`\ [\ :py:obj:`owlapy.owl_individual.OWLIndividual`\ ]
+
+ Represents an ObjectOneOf class expression in the OWL 2 Specification.
+
+ .. py:attribute:: __slots__
+ :value: '_values'
+
+
+
+ .. py:attribute:: type_index
+ :type: Final
+ :value: 3004
+
+
+
+ .. py:method:: individuals() -> Iterable[owlapy.owl_individual.OWLIndividual]
+
+ Gets the individuals that are in the oneOf. These individuals represent the exact instances (extension)
+ of this class expression.
+
+ :returns: The individuals that are the values of this {@code ObjectOneOf} class expression.
+
+
+ .. py:method:: operands() -> Iterable[owlapy.owl_individual.OWLIndividual]
+
+ Gets the operands - e.g., the individuals in a sameAs axiom, or the classes in an equivalent
+ classes axiom.
+
+ :returns: The operands.
+
+
+ .. py:method:: as_object_union_of() -> owlapy.owl_class_expression.OWLClassExpression
+
+ Simplifies this enumeration to a union of singleton nominals.
+
+ :returns: This enumeration in a more standard DL form.
+ simp({a}) = {a} simp({a0, ... , {an}) = unionOf({a0}, ... , {an})
+
+
+ .. py:method:: __hash__()
+
+ Return hash(self).
+
+
+ .. py:method:: __eq__(other)
+
+ Return self==value.
+
+
+ .. py:method:: __repr__()
+
+ Return repr(self).
+
+
+
+.. py:class:: OWLDataOneOf(values: Union[owlapy.owl_literal.OWLLiteral, Iterable[owlapy.owl_literal.OWLLiteral]])
+
+
+ Bases: :py:obj:`owlapy.ranges.OWLDataRange`, :py:obj:`owlapy.meta_classes.HasOperands`\ [\ :py:obj:`owlapy.owl_literal.OWLLiteral`\ ]
+
+ Represents DataOneOf in the OWL 2 Specification.
+
+ .. py:attribute:: type_index
+ :type: Final
+ :value: 4003
+
+
+
+ .. py:method:: values() -> Iterable[owlapy.owl_literal.OWLLiteral]
+
+ Gets the values that are in the oneOf.
+
+ :returns: The values of this {@code DataOneOf} class expression.
+
+
+ .. py:method:: operands() -> Iterable[owlapy.owl_literal.OWLLiteral]
+
+ Gets the operands - e.g., the individuals in a sameAs axiom, or the classes in an equivalent
+ classes axiom.
+
+ :returns: The operands.
+
+
+ .. py:method:: __hash__()
+
+ Return hash(self).
+
+
+ .. py:method:: __eq__(other)
+
+ Return self==value.
+
+
+ .. py:method:: __repr__()
+
+ Return repr(self).
+
+
+
+.. py:class:: OWLObjectHasValue(property: owlapy.owl_property.OWLObjectPropertyExpression, individual: owlapy.owl_individual.OWLIndividual)
+
+
+ Bases: :py:obj:`OWLHasValueRestriction`\ [\ :py:obj:`owlapy.owl_individual.OWLIndividual`\ ], :py:obj:`OWLObjectRestriction`
+
+ Represents an ObjectHasValue class expression in the OWL 2 Specification.
+
+ .. py:attribute:: __slots__
+ :value: ('_property', '_v')
+
+
+
+ .. py:attribute:: type_index
+ :type: Final
+ :value: 3007
+
+
+
+ .. py:method:: get_property() -> owlapy.owl_property.OWLObjectPropertyExpression
+
+ :returns: Property being restricted.
+
+
+ .. py:method:: as_some_values_from() -> owlapy.owl_class_expression.OWLClassExpression
+
+ A convenience method that obtains this restriction as an existential restriction with a nominal filler.
+
+ :returns: The existential equivalent of this value restriction. simp(HasValue(p a)) = some(p {a}).
+
+
+ .. py:method:: __repr__()
+
+ Return repr(self).
+
+
+
+.. py:class:: OWLDatatypeRestriction(type_: owlapy.types.OWLDatatype, facet_restrictions: Union[OWLFacetRestriction, Iterable[OWLFacetRestriction]])
+
+
+ Bases: :py:obj:`owlapy.ranges.OWLDataRange`
+
+ Represents a DatatypeRestriction data range in the OWL 2 Specification.
+
+ .. py:attribute:: __slots__
+ :value: ('_type', '_facet_restrictions')
+
+
+
+ .. py:attribute:: type_index
+ :type: Final
+ :value: 4006
+
+
+
+ .. py:method:: get_datatype() -> owlapy.types.OWLDatatype
+
+
+ .. py:method:: get_facet_restrictions() -> Sequence[OWLFacetRestriction]
+
+
+ .. py:method:: __eq__(other)
+
+ Return self==value.
+
+
+ .. py:method:: __hash__()
+
+ Return hash(self).
+
+
+ .. py:method:: __repr__()
+
+ Return repr(self).
+
+
+
+.. py:class:: OWLFacetRestriction(facet: owlapy.vocab.OWLFacet, literal: Literals)
+
+
+ Bases: :py:obj:`owlapy.owlobject.OWLObject`
+
+ A facet restriction is used to restrict a particular datatype.
+
+ .. py:attribute:: __slots__
+ :value: ('_facet', '_literal')
+
+
+
+ .. py:attribute:: type_index
+ :type: Final
+ :value: 4007
+
+
+
+ .. py:method:: get_facet() -> owlapy.vocab.OWLFacet
+
+
+ .. py:method:: get_facet_value() -> owlapy.owl_literal.OWLLiteral
+
+
+ .. py:method:: __eq__(other)
+
+ Return self==value.
+
+
+ .. py:method:: __hash__()
+
+ Return hash(self).
+
+
+ .. py:method:: __repr__()
+
+ Return repr(self).
+
+
+
diff --git a/_sources/autoapi/owlapy/owlobject/index.rst.txt b/_sources/autoapi/owlapy/owlobject/index.rst.txt
index 4a512e8..1ca1123 100644
--- a/_sources/autoapi/owlapy/owlobject/index.rst.txt
+++ b/_sources/autoapi/owlapy/owlobject/index.rst.txt
@@ -97,7 +97,7 @@ Classes
.. py:class:: OWLNamedObject
- Bases: :py:obj:`OWLObject`, :py:obj:`owlapy.has.HasIRI`
+ Bases: :py:obj:`OWLObject`, :py:obj:`owlapy.meta_classes.HasIRI`
Represents a named object for example, class, property, ontology etc. - i.e. anything that has an
IRI as its name.
diff --git a/_sources/autoapi/owlapy/parser/index.rst.txt b/_sources/autoapi/owlapy/parser/index.rst.txt
index 8827053..87e51ab 100644
--- a/_sources/autoapi/owlapy/parser/index.rst.txt
+++ b/_sources/autoapi/owlapy/parser/index.rst.txt
@@ -90,7 +90,7 @@ Attributes
.. py:method:: visit_cardinality_res(node, children) -> owlapy.model.OWLObjectCardinalityRestriction
- .. py:method:: visit_value_res(node, children) -> owlapy.model.OWLObjectHasValue
+ .. py:method:: visit_value_res(node, children) -> owlapy.owl_restriction.OWLObjectHasValue
.. py:method:: visit_has_self(node, children) -> owlapy.model.OWLObjectHasSelf
@@ -102,7 +102,7 @@ Attributes
.. py:method:: visit_class_expression(node, children) -> owlapy.model.OWLClassExpression
- .. py:method:: visit_individual_list(node, children) -> owlapy.model.OWLObjectOneOf
+ .. py:method:: visit_individual_list(node, children) -> owlapy.owl_restriction.OWLObjectOneOf
.. py:method:: visit_data_primary(node, children) -> owlapy.model.OWLDataRange
@@ -129,13 +129,13 @@ Attributes
.. py:method:: visit_data_parentheses(node, children) -> owlapy.model.OWLDataRange
- .. py:method:: visit_datatype_restriction(node, children) -> owlapy.model.OWLDatatypeRestriction
+ .. py:method:: visit_datatype_restriction(node, children) -> owlapy.owl_restriction.OWLDatatypeRestriction
- .. py:method:: visit_facet_restrictions(node, children) -> List[owlapy.model.OWLFacetRestriction]
+ .. py:method:: visit_facet_restrictions(node, children) -> List[owlapy.owl_restriction.OWLFacetRestriction]
- .. py:method:: visit_facet_restriction(node, children) -> owlapy.model.OWLFacetRestriction
+ .. py:method:: visit_facet_restriction(node, children) -> owlapy.owl_restriction.OWLFacetRestriction
.. py:method:: visit_literal(node, children) -> owlapy.model.OWLLiteral
@@ -276,7 +276,7 @@ Attributes
.. py:method:: visit_cardinality_res(node, children) -> owlapy.model.OWLObjectCardinalityRestriction
- .. py:method:: visit_value_res(node, children) -> owlapy.model.OWLObjectHasValue
+ .. py:method:: visit_value_res(node, children) -> owlapy.owl_restriction.OWLObjectHasValue
.. py:method:: visit_has_self(node, children) -> owlapy.model.OWLObjectHasSelf
@@ -288,7 +288,7 @@ Attributes
.. py:method:: visit_class_expression(node, children) -> owlapy.model.OWLClassExpression
- .. py:method:: visit_individual_list(node, children) -> owlapy.model.OWLObjectOneOf
+ .. py:method:: visit_individual_list(node, children) -> owlapy.owl_restriction.OWLObjectOneOf
.. py:method:: visit_data_primary(node, children) -> owlapy.model.OWLDataRange
@@ -315,13 +315,13 @@ Attributes
.. py:method:: visit_data_parentheses(node, children) -> owlapy.model.OWLDataRange
- .. py:method:: visit_datatype_restriction(node, children) -> owlapy.model.OWLDatatypeRestriction
+ .. py:method:: visit_datatype_restriction(node, children) -> owlapy.owl_restriction.OWLDatatypeRestriction
- .. py:method:: visit_facet_restrictions(node, children) -> List[owlapy.model.OWLFacetRestriction]
+ .. py:method:: visit_facet_restrictions(node, children) -> List[owlapy.owl_restriction.OWLFacetRestriction]
- .. py:method:: visit_facet_restriction(node, children) -> owlapy.model.OWLFacetRestriction
+ .. py:method:: visit_facet_restriction(node, children) -> owlapy.owl_restriction.OWLFacetRestriction
.. py:method:: visit_literal(node, children) -> owlapy.model.OWLLiteral
diff --git a/_sources/autoapi/owlapy/types/index.rst.txt b/_sources/autoapi/owlapy/types/index.rst.txt
index a2b6339..163195d 100644
--- a/_sources/autoapi/owlapy/types/index.rst.txt
+++ b/_sources/autoapi/owlapy/types/index.rst.txt
@@ -17,7 +17,7 @@ Classes
-.. py:class:: OWLDatatype(iri: Union[owlapy.iri.IRI, owlapy.has.HasIRI])
+.. py:class:: OWLDatatype(iri: Union[owlapy.iri.IRI, owlapy.meta_classes.HasIRI])
Bases: :py:obj:`owlapy.owlobject.OWLEntity`, :py:obj:`owlapy.ranges.OWLDataRange`
diff --git a/autoapi/owlapy/has/index.html b/autoapi/owlapy/has/index.html
index 9b615ba..7793247 100644
--- a/autoapi/owlapy/has/index.html
+++ b/autoapi/owlapy/has/index.html
@@ -58,10 +58,6 @@
- Module Contents
@@ -69,11 +65,11 @@
owlapy.iri
+owlapy.meta_classes
owlapy.namespaces
owlapy.owl_annotation
owlapy.owl_axiom
owlapy.owl_class_expression
-owlapy.owl_data
owlapy.owl_individual
owlapy.owl_literal
owlapy.owl_property
@@ -128,18 +124,6 @@ Classes
Interface for types with an index; this is used to group objects by type when sorting.
-
-Simple class to access the IRI.
-
-
-An interface to objects that have a collection of operands.
-
-
-An interface to objects that have a filler.
-
-
-An interface to objects that have a cardinality.
-
-
-
-
--
-class owlapy.has.HasOperands[source]
-Bases: Generic
[_T
]
-An interface to objects that have a collection of operands.
-
-- Parameters:
-_T – Operand type.
-
-
-
--
-__slots__ = ()
-
-
-
-
-
-
-
--
-class owlapy.has.HasFiller[source]
-Bases: Generic
[_T
]
-An interface to objects that have a filler.
-
-- Parameters:
-_T – Filler type.
-
-
-
--
-__slots__ = ()
-
-
-
--
-abstract get_filler() _T [source]
-Gets the filler for this restriction. In the case of an object restriction this will be an individual, in
-the case of a data restriction this will be a constant (data value). For quantified restriction this will be
-a class expression or a data range.
-
-- Returns:
-the value
-
-
-
-
-
-
-
--
-class owlapy.has.HasCardinality[source]
-An interface to objects that have a cardinality.
-
--
-__slots__ = ()
-
-
-
-
-
-
diff --git a/autoapi/owlapy/index.html b/autoapi/owlapy/index.html
index 0b357af..bdcff4c 100644
--- a/autoapi/owlapy/index.html
+++ b/autoapi/owlapy/index.html
@@ -60,11 +60,11 @@
- Submodules
owlapy.iri
+owlapy.meta_classes
owlapy.namespaces
owlapy.owl_annotation
owlapy.owl_axiom
owlapy.owl_class_expression
-owlapy.owl_data
owlapy.owl_individual
owlapy.owl_literal
owlapy.owl_property
diff --git a/autoapi/owlapy/iri/index.html b/autoapi/owlapy/iri/index.html
index b265679..2e35c90 100644
--- a/autoapi/owlapy/iri/index.html
+++ b/autoapi/owlapy/iri/index.html
@@ -25,7 +25,7 @@
-
+
@@ -65,11 +65,11 @@
+owlapy.meta_classes
owlapy.namespaces
owlapy.owl_annotation
owlapy.owl_axiom
owlapy.owl_class_expression
-owlapy.owl_data
owlapy.owl_individual
owlapy.owl_literal
owlapy.owl_property
@@ -276,7 +276,7 @@ Classes
diff --git a/autoapi/owlapy/owl_data/index.html b/autoapi/owlapy/owl_data/index.html
deleted file mode 100644
index fc8faec..0000000
--- a/autoapi/owlapy/owl_data/index.html
+++ /dev/null
@@ -1,500 +0,0 @@
-
-
-
-
-
-
- owlapy.owl_data — OWLAPY 0.1.2 documentation
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-owlapy.owl_data
-
-Module Contents
-
-Classes
-
-
-
-Represents DataComplementOf in the OWL 2 Specification.
-
-
-Represents DataHasValue restrictions in the OWL 2 Specification.
-
-
-Represents DataMaxCardinality restrictions in the OWL 2 Specification.
-
-
-Represents DataMinCardinality restrictions in the OWL 2 Specification.
-
-
-Represents DataOneOf in the OWL 2 Specification.
-
-
-Represents a DataSomeValuesFrom restriction in the OWL 2 Specification.
-
-
-OWLNaryDataRange.
-
-
-Represents a DataUnionOf data range in the OWL 2 Specification.
-
-
-Represents DataIntersectionOf in the OWL 2 Specification.
-
-
-
-
--
-class owlapy.owl_data.OWLDataComplementOf(data_range: owlapy.ranges.OWLDataRange)[source]
-Bases: owlapy.ranges.OWLDataRange
-Represents DataComplementOf in the OWL 2 Specification.
-
--
-type_index: Final = 4002
-
-
-
--
-get_data_range() owlapy.ranges.OWLDataRange [source]
-
-- Returns:
-The wrapped data range.
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-class owlapy.owl_data.OWLDataHasValue(property: owlapy.owl_property.OWLDataPropertyExpression, value: owlapy.owl_literal.OWLLiteral)[source]
-Bases: owlapy.owl_restriction.OWLHasValueRestriction
[owlapy.owl_literal.OWLLiteral
], owlapy.owl_restriction.OWLDataRestriction
-Represents DataHasValue restrictions in the OWL 2 Specification.
-
--
-__slots__ = '_property'
-
-
-
--
-type_index: Final = 3014
-
-
-
-
-
-
-
-
-
--
-as_some_values_from() owlapy.owl_class_expression.OWLClassExpression [source]
-A convenience method that obtains this restriction as an existential restriction with a nominal filler.
-
-- Returns:
-The existential equivalent of this value restriction. simp(HasValue(p a)) = some(p {a}).
-
-
-
-
-
--
-get_property() owlapy.owl_property.OWLDataPropertyExpression [source]
-
-- Returns:
-Property being restricted.
-
-
-
-
-
-
-
--
-class owlapy.owl_data.OWLDataMaxCardinality(cardinality: int, property: owlapy.owl_property.OWLDataPropertyExpression, filler: owlapy.ranges.OWLDataRange)[source]
-Bases: owlapy.owl_restriction.OWLDataCardinalityRestriction
-Represents DataMaxCardinality restrictions in the OWL 2 Specification.
-
--
-__slots__ = ('_cardinality', '_filler', '_property')
-
-
-
--
-type_index: Final = 3017
-
-
-
-
-
--
-class owlapy.owl_data.OWLDataMinCardinality(cardinality: int, property: owlapy.owl_property.OWLDataPropertyExpression, filler: owlapy.ranges.OWLDataRange)[source]
-Bases: owlapy.owl_restriction.OWLDataCardinalityRestriction
-Represents DataMinCardinality restrictions in the OWL 2 Specification.
-
--
-__slots__ = ('_cardinality', '_filler', '_property')
-
-
-
--
-type_index: Final = 3015
-
-
-
-
-
--
-class owlapy.owl_data.OWLDataOneOf(values: owlapy.owl_literal.OWLLiteral | Iterable[owlapy.owl_literal.OWLLiteral])[source]
-Bases: owlapy.ranges.OWLDataRange
, owlapy.has.HasOperands
[owlapy.owl_literal.OWLLiteral
]
-Represents DataOneOf in the OWL 2 Specification.
-
--
-type_index: Final = 4003
-
-
-
--
-values() Iterable[owlapy.owl_literal.OWLLiteral] [source]
-Gets the values that are in the oneOf.
-
-- Returns:
-The values of this {@code DataOneOf} class expression.
-
-
-
-
-
--
-operands() Iterable[owlapy.owl_literal.OWLLiteral] [source]
-Gets the operands - e.g., the individuals in a sameAs axiom, or the classes in an equivalent
-classes axiom.
-
-- Returns:
-The operands.
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-class owlapy.owl_data.OWLDataSomeValuesFrom(property: owlapy.owl_property.OWLDataPropertyExpression, filler: owlapy.ranges.OWLDataRange)[source]
-Bases: owlapy.owl_restriction.OWLQuantifiedDataRestriction
-Represents a DataSomeValuesFrom restriction in the OWL 2 Specification.
-
--
-__slots__ = '_property'
-
-
-
--
-type_index: Final = 3012
-
-
-
-
-
-
-
-
-
--
-get_property() owlapy.owl_property.OWLDataPropertyExpression [source]
-
-- Returns:
-Property being restricted.
-
-
-
-
-
-
-
--
-class owlapy.owl_data.OWLNaryDataRange(operands: Iterable[owlapy.ranges.OWLDataRange])[source]
-Bases: owlapy.ranges.OWLDataRange
, owlapy.has.HasOperands
[owlapy.ranges.OWLDataRange
]
-OWLNaryDataRange.
-
--
-__slots__ = ()
-
-
-
--
-operands() Iterable[owlapy.ranges.OWLDataRange] [source]
-Gets the operands - e.g., the individuals in a sameAs axiom, or the classes in an equivalent
-classes axiom.
-
-- Returns:
-The operands.
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-class owlapy.owl_data.OWLDataUnionOf(operands: Iterable[owlapy.ranges.OWLDataRange])[source]
-Bases: OWLNaryDataRange
-Represents a DataUnionOf data range in the OWL 2 Specification.
-
--
-__slots__ = '_operands'
-
-
-
--
-type_index: Final = 4005
-
-
-
-
-
--
-class owlapy.owl_data.OWLDataIntersectionOf(operands: Iterable[owlapy.ranges.OWLDataRange])[source]
-Bases: OWLNaryDataRange
-Represents DataIntersectionOf in the OWL 2 Specification.
-
--
-__slots__ = '_operands'
-
-
-
--
-type_index: Final = 4004
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- © Copyright .
-
-
- Built with Sphinx using a
- theme
- provided by Read the Docs.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/autoapi/owlapy/owl_individual/index.html b/autoapi/owlapy/owl_individual/index.html
index ef2026b..d8aaf47 100644
--- a/autoapi/owlapy/owl_individual/index.html
+++ b/autoapi/owlapy/owl_individual/index.html
@@ -26,7 +26,7 @@
-
+
@@ -56,11 +56,11 @@
- Submodules
- Submodules
owlapy.has
owlapy.iri
+owlapy.meta_classes
owlapy.namespaces
owlapy.owl_annotation
owlapy.owl_axiom
owlapy.owl_class_expression
-owlapy.owl_data
owlapy.owl_individual
owlapy.owl_literal
- Module Contents
@@ -68,8 +68,6 @@
- Attributes
Literals
OWLLiteral
-OWLThing
-OWLNothing
OWLTopObjectProperty
OWLBottomObjectProperty
OWLTopDataProperty
@@ -152,12 +150,6 @@ Attributes
-
-
-
-
-
-
@@ -397,16 +389,6 @@ Attributes
--
-owlapy.owl_literal.OWLThing: Final
-
-
-
--
-owlapy.owl_literal.OWLNothing: Final
-
-
-
owlapy.owl_literal.OWLTopObjectProperty: Final
diff --git a/autoapi/owlapy/owl_property/index.html b/autoapi/owlapy/owl_property/index.html
index 48ccb21..09c0065 100644
--- a/autoapi/owlapy/owl_property/index.html
+++ b/autoapi/owlapy/owl_property/index.html
@@ -56,11 +56,11 @@
- Submodules
owlapy.has
owlapy.iri
+owlapy.meta_classes
owlapy.namespaces
owlapy.owl_annotation
owlapy.owl_axiom
owlapy.owl_class_expression
-owlapy.owl_data
owlapy.owl_individual
owlapy.owl_literal
owlapy.owl_property
diff --git a/autoapi/owlapy/owl_restriction/index.html b/autoapi/owlapy/owl_restriction/index.html
index 19302a6..9927c86 100644
--- a/autoapi/owlapy/owl_restriction/index.html
+++ b/autoapi/owlapy/owl_restriction/index.html
@@ -56,17 +56,19 @@
- Submodules
owlapy.has
owlapy.iri
+owlapy.meta_classes
owlapy.namespaces
owlapy.owl_annotation
owlapy.owl_axiom
owlapy.owl_class_expression
-owlapy.owl_data
owlapy.owl_individual
owlapy.owl_literal
owlapy.owl_property
owlapy.owl_restriction
- Module Contents
-- Classes
+- Classes
+- Attributes
+Literals
OWLRestriction
OWLDataRestriction
OWLObjectRestriction
@@ -85,6 +87,15 @@
OWLDataAllValuesFrom
OWLDataCardinalityRestriction
OWLDataExactCardinality
+OWLDataMaxCardinality
+OWLDataMinCardinality
+OWLDataSomeValuesFrom
+OWLDataHasValue
+OWLObjectOneOf
+OWLDataOneOf
+OWLObjectHasValue
+OWLDatatypeRestriction
+OWLFacetRestriction
@@ -192,8 +203,50 @@ Classes
Represents DataExactCardinality restrictions in the OWL 2 Specification.
+
+Represents DataMaxCardinality restrictions in the OWL 2 Specification.
+
+
+Represents DataMinCardinality restrictions in the OWL 2 Specification.
+
+
+Represents a DataSomeValuesFrom restriction in the OWL 2 Specification.
+
+
+Represents DataHasValue restrictions in the OWL 2 Specification.
+
+
+Represents an ObjectOneOf class expression in the OWL 2 Specification.
+
+
+Represents DataOneOf in the OWL 2 Specification.
+
+
+Represents an ObjectHasValue class expression in the OWL 2 Specification.
+
+
+Represents a DatatypeRestriction data range in the OWL 2 Specification.
+
+
+A facet restriction is used to restrict a particular datatype.
+
+
+
+Attributes
+
+
+
+
+
+
+
+
+-
+owlapy.owl_restriction.Literals
+
+
-
class owlapy.owl_restriction.OWLRestriction[source]
@@ -297,7 +350,7 @@ Classes
-
class owlapy.owl_restriction.OWLHasValueRestriction(value: _T)[source]
-Bases: Generic
[_T
], OWLRestriction
, owlapy.has.HasFiller
[_T
]
+Bases: Generic
[_T
], OWLRestriction
, owlapy.meta_classes.HasFiller
[_T
]
OWLHasValueRestriction.
- Parameters:
@@ -339,7 +392,7 @@ Classes
-
class owlapy.owl_restriction.OWLQuantifiedRestriction[source]
-Bases: Generic
[_T
], OWLRestriction
, owlapy.has.HasFiller
[_T
]
+Bases: Generic
[_T
], OWLRestriction
, owlapy.meta_classes.HasFiller
[_T
]
Represents a quantified restriction.
- Parameters:
@@ -471,7 +524,7 @@ Classes
-
class owlapy.owl_restriction.OWLCardinalityRestriction(cardinality: int, filler: _F)[source]
-Bases: Generic
[_F
], OWLQuantifiedRestriction
[_F
], owlapy.has.HasCardinality
+Bases: Generic
[_F
], OWLQuantifiedRestriction
[_F
], owlapy.meta_classes.HasCardinality
Base interface for owl min and max cardinality restriction.
+
+-
+class owlapy.owl_restriction.OWLDataMaxCardinality(cardinality: int, property: owlapy.owl_property.OWLDataPropertyExpression, filler: owlapy.ranges.OWLDataRange)[source]
+Bases: OWLDataCardinalityRestriction
+Represents DataMaxCardinality restrictions in the OWL 2 Specification.
+
+-
+__slots__ = ('_cardinality', '_filler', '_property')
+
+
+
+-
+type_index: Final = 3017
+
+
+
+
+
+-
+class owlapy.owl_restriction.OWLDataMinCardinality(cardinality: int, property: owlapy.owl_property.OWLDataPropertyExpression, filler: owlapy.ranges.OWLDataRange)[source]
+Bases: OWLDataCardinalityRestriction
+Represents DataMinCardinality restrictions in the OWL 2 Specification.
+
+-
+__slots__ = ('_cardinality', '_filler', '_property')
+
+
+
+-
+type_index: Final = 3015
+
+
+
+
+
+-
+class owlapy.owl_restriction.OWLDataSomeValuesFrom(property: owlapy.owl_property.OWLDataPropertyExpression, filler: owlapy.ranges.OWLDataRange)[source]
+Bases: OWLQuantifiedDataRestriction
+Represents a DataSomeValuesFrom restriction in the OWL 2 Specification.
+
+-
+__slots__ = '_property'
+
+
+
+-
+type_index: Final = 3012
+
+
+
+
+
+
+
+
+
+-
+get_property() owlapy.owl_property.OWLDataPropertyExpression [source]
+
+- Returns:
+Property being restricted.
+
+
+
+
+
+
+
+-
+class owlapy.owl_restriction.OWLDataHasValue(property: owlapy.owl_property.OWLDataPropertyExpression, value: owlapy.owl_literal.OWLLiteral)[source]
+Bases: OWLHasValueRestriction
[owlapy.owl_literal.OWLLiteral
], OWLDataRestriction
+Represents DataHasValue restrictions in the OWL 2 Specification.
+
+-
+__slots__ = '_property'
+
+
+
+-
+type_index: Final = 3014
+
+
+
+
+
+
+
+
+
+-
+as_some_values_from() owlapy.owl_class_expression.OWLClassExpression [source]
+A convenience method that obtains this restriction as an existential restriction with a nominal filler.
+
+- Returns:
+The existential equivalent of this value restriction. simp(HasValue(p a)) = some(p {a}).
+
+
+
+
+
+-
+get_property() owlapy.owl_property.OWLDataPropertyExpression [source]
+
+- Returns:
+Property being restricted.
+
+
+
+
+
+
+
+-
+class owlapy.owl_restriction.OWLObjectOneOf(values: owlapy.owl_individual.OWLIndividual | Iterable[owlapy.owl_individual.OWLIndividual])[source]
+Bases: owlapy.owl_class_expression.OWLAnonymousClassExpression
, owlapy.meta_classes.HasOperands
[owlapy.owl_individual.OWLIndividual
]
+Represents an ObjectOneOf class expression in the OWL 2 Specification.
+
+-
+__slots__ = '_values'
+
+
+
+-
+type_index: Final = 3004
+
+
+
+-
+individuals() Iterable[owlapy.owl_individual.OWLIndividual] [source]
+Gets the individuals that are in the oneOf. These individuals represent the exact instances (extension)
+of this class expression.
+
+- Returns:
+The individuals that are the values of this {@code ObjectOneOf} class expression.
+
+
+
+
+
+-
+operands() Iterable[owlapy.owl_individual.OWLIndividual] [source]
+Gets the operands - e.g., the individuals in a sameAs axiom, or the classes in an equivalent
+classes axiom.
+
+- Returns:
+The operands.
+
+
+
+
+
+-
+as_object_union_of() owlapy.owl_class_expression.OWLClassExpression [source]
+Simplifies this enumeration to a union of singleton nominals.
+
+- Returns:
+This enumeration in a more standard DL form.
+simp({a}) = {a} simp({a0, … , {an}) = unionOf({a0}, … , {an})
+
+
+
+
+
+
+
+
+
+
+
+
+
+-
+class owlapy.owl_restriction.OWLDataOneOf(values: owlapy.owl_literal.OWLLiteral | Iterable[owlapy.owl_literal.OWLLiteral])[source]
+Bases: owlapy.ranges.OWLDataRange
, owlapy.meta_classes.HasOperands
[owlapy.owl_literal.OWLLiteral
]
+Represents DataOneOf in the OWL 2 Specification.
+
+-
+type_index: Final = 4003
+
+
+
+-
+values() Iterable[owlapy.owl_literal.OWLLiteral] [source]
+Gets the values that are in the oneOf.
+
+- Returns:
+The values of this {@code DataOneOf} class expression.
+
+
+
+
+
+-
+operands() Iterable[owlapy.owl_literal.OWLLiteral] [source]
+Gets the operands - e.g., the individuals in a sameAs axiom, or the classes in an equivalent
+classes axiom.
+
+- Returns:
+The operands.
+
+
+
+
+
+
+
+
+
+
+
+
+
+-
+class owlapy.owl_restriction.OWLObjectHasValue(property: owlapy.owl_property.OWLObjectPropertyExpression, individual: owlapy.owl_individual.OWLIndividual)[source]
+Bases: OWLHasValueRestriction
[owlapy.owl_individual.OWLIndividual
], OWLObjectRestriction
+Represents an ObjectHasValue class expression in the OWL 2 Specification.
+
+-
+__slots__ = ('_property', '_v')
+
+
+
+-
+type_index: Final = 3007
+
+
+
+-
+get_property() owlapy.owl_property.OWLObjectPropertyExpression [source]
+
+- Returns:
+Property being restricted.
+
+
+
+
+
+-
+as_some_values_from() owlapy.owl_class_expression.OWLClassExpression [source]
+A convenience method that obtains this restriction as an existential restriction with a nominal filler.
+
+- Returns:
+The existential equivalent of this value restriction. simp(HasValue(p a)) = some(p {a}).
+
+
+
+
+
+
+
+
+
+-
+class owlapy.owl_restriction.OWLDatatypeRestriction(type_: owlapy.types.OWLDatatype, facet_restrictions: OWLFacetRestriction | Iterable[OWLFacetRestriction])[source]
+Bases: owlapy.ranges.OWLDataRange
+Represents a DatatypeRestriction data range in the OWL 2 Specification.
+
+-
+__slots__ = ('_type', '_facet_restrictions')
+
+
+
+-
+type_index: Final = 4006
+
+
+
+-
+get_datatype() owlapy.types.OWLDatatype [source]
+
+
+
+-
+get_facet_restrictions() Sequence[OWLFacetRestriction] [source]
+
+
+
+
+
+
+
+
+
+
+
+-
+class owlapy.owl_restriction.OWLFacetRestriction(facet: owlapy.vocab.OWLFacet, literal: Literals)[source]
+Bases: owlapy.owlobject.OWLObject
+A facet restriction is used to restrict a particular datatype.
+
+-
+__slots__ = ('_facet', '_literal')
+
+
+
+-
+type_index: Final = 4007
+
+
+
+-
+get_facet() owlapy.vocab.OWLFacet [source]
+
+
+
+-
+get_facet_value() owlapy.owl_literal.OWLLiteral [source]
+
+
+
+
+
+
+
+
+
+
diff --git a/autoapi/owlapy/owlobject/index.html b/autoapi/owlapy/owlobject/index.html
index e9ec8d2..e920529 100644
--- a/autoapi/owlapy/owlobject/index.html
+++ b/autoapi/owlapy/owlobject/index.html
@@ -56,11 +56,11 @@
- Submodules
owlapy.has
owlapy.iri
+owlapy.meta_classes
owlapy.namespaces
owlapy.owl_annotation
owlapy.owl_axiom
owlapy.owl_class_expression
-owlapy.owl_data
owlapy.owl_individual
owlapy.owl_literal
owlapy.owl_property
@@ -230,7 +230,7 @@ Classes
-
class owlapy.owlobject.OWLNamedObject[source]
-Bases: OWLObject
, owlapy.has.HasIRI
+Bases: OWLObject
, owlapy.meta_classes.HasIRI
Represents a named object for example, class, property, ontology etc. - i.e. anything that has an
IRI as its name.
diff --git a/autoapi/owlapy/parser/index.html b/autoapi/owlapy/parser/index.html
index 9897cee..7c5418f 100644
--- a/autoapi/owlapy/parser/index.html
+++ b/autoapi/owlapy/parser/index.html
@@ -56,11 +56,11 @@
- Submodules
owlapy.has
owlapy.iri
+owlapy.meta_classes
owlapy.namespaces
owlapy.owl_annotation
owlapy.owl_axiom
owlapy.owl_class_expression
-owlapy.owl_data
owlapy.owl_individual
owlapy.owl_literal
owlapy.owl_property
@@ -233,7 +233,7 @@ Attributes
-
-visit_value_res(node, children) owlapy.model.OWLObjectHasValue [source]
+visit_value_res(node, children) owlapy.owl_restriction.OWLObjectHasValue [source]
@@ -253,7 +253,7 @@ Attributes
-
-visit_individual_list(node, children) owlapy.model.OWLObjectOneOf [source]
+visit_individual_list(node, children) owlapy.owl_restriction.OWLObjectOneOf [source]
@@ -298,17 +298,17 @@ Attributes
-
-visit_datatype_restriction(node, children) owlapy.model.OWLDatatypeRestriction [source]
+visit_datatype_restriction(node, children) owlapy.owl_restriction.OWLDatatypeRestriction [source]
-
-visit_facet_restrictions(node, children) List[owlapy.model.OWLFacetRestriction] [source]
+visit_facet_restrictions(node, children) List[owlapy.owl_restriction.OWLFacetRestriction] [source]
-
-visit_facet_restriction(node, children) owlapy.model.OWLFacetRestriction [source]
+visit_facet_restriction(node, children) owlapy.owl_restriction.OWLFacetRestriction [source]
@@ -517,7 +517,7 @@ Attributes
-
-visit_value_res(node, children) owlapy.model.OWLObjectHasValue [source]
+visit_value_res(node, children) owlapy.owl_restriction.OWLObjectHasValue [source]
@@ -537,7 +537,7 @@ Attributes
-
-visit_individual_list(node, children) owlapy.model.OWLObjectOneOf [source]
+visit_individual_list(node, children) owlapy.owl_restriction.OWLObjectOneOf [source]
@@ -582,17 +582,17 @@ Attributes
-
-visit_datatype_restriction(node, children) owlapy.model.OWLDatatypeRestriction [source]
+visit_datatype_restriction(node, children) owlapy.owl_restriction.OWLDatatypeRestriction [source]
-
-visit_facet_restrictions(node, children) List[owlapy.model.OWLFacetRestriction] [source]
+visit_facet_restrictions(node, children) List[owlapy.owl_restriction.OWLFacetRestriction] [source]
-
-visit_facet_restriction(node, children) owlapy.model.OWLFacetRestriction [source]
+visit_facet_restriction(node, children) owlapy.owl_restriction.OWLFacetRestriction [source]
diff --git a/autoapi/owlapy/ranges/index.html b/autoapi/owlapy/ranges/index.html
index 57d3879..8f02a99 100644
--- a/autoapi/owlapy/ranges/index.html
+++ b/autoapi/owlapy/ranges/index.html
@@ -56,11 +56,11 @@
- Submodules
owlapy.has
owlapy.iri
+owlapy.meta_classes
owlapy.namespaces
owlapy.owl_annotation
owlapy.owl_axiom
owlapy.owl_class_expression
-owlapy.owl_data
owlapy.owl_individual
owlapy.owl_literal
owlapy.owl_property
diff --git a/autoapi/owlapy/render/index.html b/autoapi/owlapy/render/index.html
index f85bb67..1adfc8d 100644
--- a/autoapi/owlapy/render/index.html
+++ b/autoapi/owlapy/render/index.html
@@ -56,11 +56,11 @@
- Submodules
owlapy.has
owlapy.iri
+owlapy.meta_classes
owlapy.namespaces
owlapy.owl_annotation
owlapy.owl_axiom
owlapy.owl_class_expression
-owlapy.owl_data
owlapy.owl_individual
owlapy.owl_literal
owlapy.owl_property
diff --git a/autoapi/owlapy/types/index.html b/autoapi/owlapy/types/index.html
index 153a5e7..a6d09b4 100644
--- a/autoapi/owlapy/types/index.html
+++ b/autoapi/owlapy/types/index.html
@@ -56,11 +56,11 @@
- Submodules
owlapy.has
owlapy.iri
+owlapy.meta_classes
owlapy.namespaces
owlapy.owl_annotation
owlapy.owl_axiom
owlapy.owl_class_expression
-owlapy.owl_data
owlapy.owl_individual
owlapy.owl_literal
owlapy.owl_property
@@ -128,7 +128,7 @@ Classes
-
-class owlapy.types.OWLDatatype(iri: owlapy.iri.IRI | owlapy.has.HasIRI)[source]
+class owlapy.types.OWLDatatype(iri: owlapy.iri.IRI | owlapy.meta_classes.HasIRI)[source]
Bases: owlapy.owlobject.OWLEntity
, owlapy.ranges.OWLDataRange
Represents a Datatype (named data range) in the OWL 2 Specification.
diff --git a/autoapi/owlapy/util/index.html b/autoapi/owlapy/util/index.html
index 7b9d936..0193818 100644
--- a/autoapi/owlapy/util/index.html
+++ b/autoapi/owlapy/util/index.html
@@ -56,11 +56,11 @@
- Submodules
owlapy.has
owlapy.iri
+owlapy.meta_classes
owlapy.namespaces
owlapy.owl_annotation
owlapy.owl_axiom
owlapy.owl_class_expression
-owlapy.owl_data
owlapy.owl_individual
owlapy.owl_literal
owlapy.owl_property
diff --git a/autoapi/owlapy/vocab/index.html b/autoapi/owlapy/vocab/index.html
index 2a7d7f6..d4bf49c 100644
--- a/autoapi/owlapy/vocab/index.html
+++ b/autoapi/owlapy/vocab/index.html
@@ -55,11 +55,11 @@
- Submodules
owlapy.has
owlapy.iri
+owlapy.meta_classes
owlapy.namespaces
owlapy.owl_annotation
owlapy.owl_axiom
owlapy.owl_class_expression
-owlapy.owl_data
owlapy.owl_individual
owlapy.owl_literal
owlapy.owl_property
diff --git a/genindex.html b/genindex.html
index f7dddde..2a55f0e 100644
--- a/genindex.html
+++ b/genindex.html
@@ -122,24 +122,16 @@ _
- (owlapy.model.OWLDataAllValuesFrom method)
- (owlapy.model.OWLDataCardinalityRestriction method)
-
- - (owlapy.model.OWLDataComplementOf method)
- (owlapy.model.OWLDataHasValue method)
- (owlapy.model.OWLDataOneOf method)
- (owlapy.model.OWLDataSomeValuesFrom method)
-
- - (owlapy.model.OWLDatatypeRestriction method)
-
- - (owlapy.model.OWLFacetRestriction method)
- (owlapy.model.OWLHasValueRestriction method)
- (owlapy.model.OWLNaryBooleanClassExpression method)
-
- - (owlapy.model.OWLNaryDataRange method)
- (owlapy.model.OWLObject method)
@@ -150,8 +142,6 @@ _
- (owlapy.model.OWLObjectComplementOf method)
- (owlapy.model.OWLObjectHasSelf method)
-
- - (owlapy.model.OWLObjectOneOf method)
- (owlapy.model.OWLObjectSomeValuesFrom method)
@@ -198,26 +188,30 @@ _
- (owlapy.owl_axiom.OWLSubClassOfAxiom method)
- (owlapy.owl_axiom.OWLSubPropertyAxiom method)
+
+ - (owlapy.owl_class_expression.OWLDataComplementOf method)
- (owlapy.owl_class_expression.OWLNaryBooleanClassExpression method)
+
+ - (owlapy.owl_class_expression.OWLNaryDataRange method)
- (owlapy.owl_class_expression.OWLObjectComplementOf method)
- - (owlapy.owl_data.OWLDataComplementOf method)
+
- (owlapy.owl_property.OWLObjectInverseOf method)
- - (owlapy.owl_data.OWLDataHasValue method)
+
- (owlapy.owl_restriction.OWLDataAllValuesFrom method)
- - (owlapy.owl_data.OWLDataOneOf method)
+
- (owlapy.owl_restriction.OWLDataCardinalityRestriction method)
- - (owlapy.owl_data.OWLDataSomeValuesFrom method)
+
- (owlapy.owl_restriction.OWLDataHasValue method)
- - (owlapy.owl_data.OWLNaryDataRange method)
+
- (owlapy.owl_restriction.OWLDataOneOf method)
- - (owlapy.owl_property.OWLObjectInverseOf method)
+
- (owlapy.owl_restriction.OWLDataSomeValuesFrom method)
- - (owlapy.owl_restriction.OWLDataAllValuesFrom method)
+
- (owlapy.owl_restriction.OWLDatatypeRestriction method)
- - (owlapy.owl_restriction.OWLDataCardinalityRestriction method)
+
- (owlapy.owl_restriction.OWLFacetRestriction method)
- (owlapy.owl_restriction.OWLHasValueRestriction method)
@@ -226,6 +220,8 @@ _
- (owlapy.owl_restriction.OWLObjectCardinalityRestriction method)
- (owlapy.owl_restriction.OWLObjectHasSelf method)
+
+ - (owlapy.owl_restriction.OWLObjectOneOf method)
- (owlapy.owl_restriction.OWLObjectSomeValuesFrom method)
@@ -250,24 +246,16 @@ _
- (owlapy.model.OWLDataAllValuesFrom method)
- (owlapy.model.OWLDataCardinalityRestriction method)
-
- - (owlapy.model.OWLDataComplementOf method)
- (owlapy.model.OWLDataHasValue method)
- (owlapy.model.OWLDataOneOf method)
- (owlapy.model.OWLDataSomeValuesFrom method)
-
- - (owlapy.model.OWLDatatypeRestriction method)
-
- - (owlapy.model.OWLFacetRestriction method)
- (owlapy.model.OWLHasValueRestriction method)
- (owlapy.model.OWLNaryBooleanClassExpression method)
-
- - (owlapy.model.OWLNaryDataRange method)
- (owlapy.model.OWLObject method)
@@ -278,8 +266,6 @@ _
- (owlapy.model.OWLObjectComplementOf method)
- (owlapy.model.OWLObjectHasSelf method)
-
- - (owlapy.model.OWLObjectOneOf method)
- (owlapy.model.OWLObjectSomeValuesFrom method)
@@ -324,26 +310,30 @@ _
- (owlapy.owl_axiom.OWLSubClassOfAxiom method)
- (owlapy.owl_axiom.OWLSubPropertyAxiom method)
+
+ - (owlapy.owl_class_expression.OWLDataComplementOf method)
- (owlapy.owl_class_expression.OWLNaryBooleanClassExpression method)
+
+ - (owlapy.owl_class_expression.OWLNaryDataRange method)
- (owlapy.owl_class_expression.OWLObjectComplementOf method)
- - (owlapy.owl_data.OWLDataComplementOf method)
+
- (owlapy.owl_property.OWLObjectInverseOf method)
- - (owlapy.owl_data.OWLDataHasValue method)
+
- (owlapy.owl_restriction.OWLDataAllValuesFrom method)
- - (owlapy.owl_data.OWLDataOneOf method)
+
- (owlapy.owl_restriction.OWLDataCardinalityRestriction method)
- - (owlapy.owl_data.OWLDataSomeValuesFrom method)
+
- (owlapy.owl_restriction.OWLDataHasValue method)
- - (owlapy.owl_data.OWLNaryDataRange method)
+
- (owlapy.owl_restriction.OWLDataOneOf method)
- - (owlapy.owl_property.OWLObjectInverseOf method)
+
- (owlapy.owl_restriction.OWLDataSomeValuesFrom method)
- - (owlapy.owl_restriction.OWLDataAllValuesFrom method)
+
- (owlapy.owl_restriction.OWLDatatypeRestriction method)
- - (owlapy.owl_restriction.OWLDataCardinalityRestriction method)
+
- (owlapy.owl_restriction.OWLFacetRestriction method)
- (owlapy.owl_restriction.OWLHasValueRestriction method)
@@ -352,6 +342,8 @@ _
- (owlapy.owl_restriction.OWLObjectCardinalityRestriction method)
- (owlapy.owl_restriction.OWLObjectHasSelf method)
+
+ - (owlapy.owl_restriction.OWLObjectOneOf method)
- (owlapy.owl_restriction.OWLObjectSomeValuesFrom method)
@@ -374,22 +366,14 @@ _
- (owlapy.model.OWLDataAllValuesFrom method)
- (owlapy.model.OWLDataCardinalityRestriction method)
-
- - (owlapy.model.OWLDataComplementOf method)
- (owlapy.model.OWLDataHasValue method)
- (owlapy.model.OWLDataOneOf method)
- (owlapy.model.OWLDataSomeValuesFrom method)
-
- - (owlapy.model.OWLDatatypeRestriction method)
-
- - (owlapy.model.OWLFacetRestriction method)
- (owlapy.model.OWLNaryBooleanClassExpression method)
-
- - (owlapy.model.OWLNaryDataRange method)
- (owlapy.model.OWLObject method)
@@ -400,10 +384,6 @@ _
- (owlapy.model.OWLObjectComplementOf method)
- (owlapy.model.OWLObjectHasSelf method)
-
- - (owlapy.model.OWLObjectHasValue method)
-
- - (owlapy.model.OWLObjectOneOf method)
- (owlapy.model.OWLObjectSomeValuesFrom method)
@@ -452,32 +432,40 @@ _
- (owlapy.owl_axiom.OWLSubClassOfAxiom method)
- (owlapy.owl_axiom.OWLSubPropertyAxiom method)
+
+ - (owlapy.owl_class_expression.OWLDataComplementOf method)
- (owlapy.owl_class_expression.OWLNaryBooleanClassExpression method)
+
+ - (owlapy.owl_class_expression.OWLNaryDataRange method)
- (owlapy.owl_class_expression.OWLObjectComplementOf method)
- - (owlapy.owl_data.OWLDataComplementOf method)
+
- (owlapy.owl_property.OWLObjectInverseOf method)
- - (owlapy.owl_data.OWLDataHasValue method)
+
- (owlapy.owl_restriction.OWLDataAllValuesFrom method)
- - (owlapy.owl_data.OWLDataOneOf method)
+
- (owlapy.owl_restriction.OWLDataCardinalityRestriction method)
- - (owlapy.owl_data.OWLDataSomeValuesFrom method)
+
- (owlapy.owl_restriction.OWLDataHasValue method)
- - (owlapy.owl_data.OWLNaryDataRange method)
+
- (owlapy.owl_restriction.OWLDataOneOf method)
- - (owlapy.owl_property.OWLObjectInverseOf method)
+
- (owlapy.owl_restriction.OWLDataSomeValuesFrom method)
- - (owlapy.owl_restriction.OWLDataAllValuesFrom method)
+
- (owlapy.owl_restriction.OWLDatatypeRestriction method)
- - (owlapy.owl_restriction.OWLDataCardinalityRestriction method)
+
- (owlapy.owl_restriction.OWLFacetRestriction method)
- (owlapy.owl_restriction.OWLObjectAllValuesFrom method)
- (owlapy.owl_restriction.OWLObjectCardinalityRestriction method)
- (owlapy.owl_restriction.OWLObjectHasSelf method)
+
+ - (owlapy.owl_restriction.OWLObjectHasValue method)
+
+ - (owlapy.owl_restriction.OWLObjectOneOf method)
- (owlapy.owl_restriction.OWLObjectSomeValuesFrom method)
@@ -488,16 +476,16 @@ _
- __setitem__() (owlapy.util.LRUCache method)
- - __slots__ (owlapy.has.HasCardinality attribute)
+
- __slots__ (owlapy.iri.IRI attribute)
- - (owlapy.has.HasFiller attribute)
+
- (owlapy.meta_classes.HasCardinality attribute)
- - (owlapy.has.HasIRI attribute)
+
- (owlapy.meta_classes.HasFiller attribute)
- - (owlapy.has.HasOperands attribute)
+
- (owlapy.meta_classes.HasIRI attribute)
- - (owlapy.iri.IRI attribute)
+
- (owlapy.meta_classes.HasOperands attribute)
- (owlapy.model.AddImport attribute)
@@ -536,8 +524,6 @@ _
- (owlapy.model.OWLDataExactCardinality attribute)
- (owlapy.model.OWLDataHasValue attribute)
-
- - (owlapy.model.OWLDataIntersectionOf attribute)
- (owlapy.model.OWLDataMaxCardinality attribute)
@@ -556,16 +542,10 @@ _
- (owlapy.model.OWLDataSomeValuesFrom attribute)
- (owlapy.model.OWLDatatype attribute)
-
- - (owlapy.model.OWLDatatypeRestriction attribute)
-
- - (owlapy.model.OWLDataUnionOf attribute)
- (owlapy.model.OWLEntity attribute)
- (owlapy.model.OWLEquivalentClassesAxiom attribute)
-
- - (owlapy.model.OWLFacetRestriction attribute)
- (owlapy.model.OWLHasValueRestriction attribute)
@@ -578,8 +558,6 @@ _
- (owlapy.model.OWLNamedIndividual attribute)
- (owlapy.model.OWLNaryBooleanClassExpression attribute)
-
- - (owlapy.model.OWLNaryDataRange attribute)
- (owlapy.model.OWLObject attribute)
@@ -592,16 +570,12 @@ _
- (owlapy.model.OWLObjectExactCardinality attribute)
- (owlapy.model.OWLObjectHasSelf attribute)
-
- - (owlapy.model.OWLObjectHasValue attribute)
- (owlapy.model.OWLObjectIntersectionOf attribute)
- (owlapy.model.OWLObjectMaxCardinality attribute)
- (owlapy.model.OWLObjectMinCardinality attribute)
-
- - (owlapy.model.OWLObjectOneOf attribute)
- (owlapy.model.OWLObjectProperty attribute)
@@ -770,28 +744,20 @@ _
- (owlapy.owl_class_expression.OWLClass attribute)
- (owlapy.owl_class_expression.OWLClassExpression attribute)
+
+ - (owlapy.owl_class_expression.OWLDataIntersectionOf attribute)
+
+ - (owlapy.owl_class_expression.OWLDataUnionOf attribute)
- (owlapy.owl_class_expression.OWLNaryBooleanClassExpression attribute)
+
+ - (owlapy.owl_class_expression.OWLNaryDataRange attribute)
- (owlapy.owl_class_expression.OWLObjectComplementOf attribute)
- (owlapy.owl_class_expression.OWLObjectIntersectionOf attribute)
- (owlapy.owl_class_expression.OWLObjectUnionOf attribute)
-
- - (owlapy.owl_data.OWLDataHasValue attribute)
-
- - (owlapy.owl_data.OWLDataIntersectionOf attribute)
-
- - (owlapy.owl_data.OWLDataMaxCardinality attribute)
-
- - (owlapy.owl_data.OWLDataMinCardinality attribute)
-
- - (owlapy.owl_data.OWLDataSomeValuesFrom attribute)
-
- - (owlapy.owl_data.OWLDataUnionOf attribute)
-
- - (owlapy.owl_data.OWLNaryDataRange attribute)
- (owlapy.owl_individual.OWLIndividual attribute)
@@ -820,8 +786,20 @@ _
- (owlapy.owl_restriction.OWLDataCardinalityRestriction attribute)
- (owlapy.owl_restriction.OWLDataExactCardinality attribute)
+
+ - (owlapy.owl_restriction.OWLDataHasValue attribute)
+
+ - (owlapy.owl_restriction.OWLDataMaxCardinality attribute)
+
+ - (owlapy.owl_restriction.OWLDataMinCardinality attribute)
- (owlapy.owl_restriction.OWLDataRestriction attribute)
+
+ - (owlapy.owl_restriction.OWLDataSomeValuesFrom attribute)
+
+ - (owlapy.owl_restriction.OWLDatatypeRestriction attribute)
+
+ - (owlapy.owl_restriction.OWLFacetRestriction attribute)
- (owlapy.owl_restriction.OWLHasValueRestriction attribute)
@@ -832,10 +810,14 @@ _
- (owlapy.owl_restriction.OWLObjectExactCardinality attribute)
- (owlapy.owl_restriction.OWLObjectHasSelf attribute)
+
+ - (owlapy.owl_restriction.OWLObjectHasValue attribute)
- (owlapy.owl_restriction.OWLObjectMaxCardinality attribute)
- (owlapy.owl_restriction.OWLObjectMinCardinality attribute)
+
+ - (owlapy.owl_restriction.OWLObjectOneOf attribute)
- (owlapy.owl_restriction.OWLObjectRestriction attribute)
@@ -930,7 +912,7 @@ A
- (owlapy.owl_literal.OWLLiteral method)
- - as_object_union_of() (owlapy.model.OWLObjectOneOf method)
+
- as_object_union_of() (owlapy.owl_restriction.OWLObjectOneOf method)
- as_pairwise_axioms() (owlapy.owl_axiom.OWLNaryAxiom method)
@@ -947,9 +929,9 @@
A
- as_some_values_from() (owlapy.model.OWLDataHasValue method)
- as_str() (owlapy.iri.IRI method)
@@ -1188,7 +1170,7 @@
G
- (owlapy.parser.ManchesterOWLSyntaxParser method)
- - get_cardinality() (owlapy.has.HasCardinality method)
+
- get_cardinality() (owlapy.meta_classes.HasCardinality method)
- (owlapy.model.HasCardinality method)
@@ -1208,22 +1190,18 @@
G
- get_class_nnf() (owlapy.util.NNF method)
- - get_data_range() (owlapy.model.OWLDataComplementOf method)
-
-
- get_datarange() (owlapy.owl_axiom.OWLDatatypeDefinitionAxiom method)
- - get_datatype() (owlapy.model.OWLDatatypeRestriction method)
+
- get_datatype() (owlapy.model.OWLLiteral method)
- get_default_document_iri() (owlapy.model.OWLOntologyID method)
@@ -1236,13 +1214,13 @@
G
- get_entity() (owlapy.owl_axiom.OWLDeclarationAxiom method)
- - get_facet() (owlapy.model.OWLFacetRestriction method)
+
- get_facet() (owlapy.owl_restriction.OWLFacetRestriction method)
- - get_facet_restrictions() (owlapy.model.OWLDatatypeRestriction method)
+
- get_facet_restrictions() (owlapy.owl_restriction.OWLDatatypeRestriction method)
- - get_facet_value() (owlapy.model.OWLFacetRestriction method)
+
- get_facet_value() (owlapy.owl_restriction.OWLFacetRestriction method)
- - get_filler() (owlapy.has.HasFiller method)
+
- get_filler() (owlapy.meta_classes.HasFiller method)
- (owlapy.model.HasFiller method)
@@ -1284,7 +1262,7 @@
G
- (owlapy.owl_property.OWLObjectPropertyExpression method)
- - get_iri() (owlapy.has.HasIRI method)
+
- get_iri() (owlapy.meta_classes.HasIRI method)
- (owlapy.model.HasIRI method)
@@ -1404,8 +1382,6 @@
G
- (owlapy.model.OWLObjectCardinalityRestriction method)
- (owlapy.model.OWLObjectHasSelf method)
-
- - (owlapy.model.OWLObjectHasValue method)
- (owlapy.model.OWLObjectRestriction method)
@@ -1424,20 +1400,22 @@ G
- (owlapy.owl_axiom.OWLPropertyAssertionAxiom method)
- (owlapy.owl_axiom.OWLUnaryPropertyAxiom method)
-
- - (owlapy.owl_data.OWLDataHasValue method)
-
- - (owlapy.owl_data.OWLDataSomeValuesFrom method)
- (owlapy.owl_restriction.OWLDataAllValuesFrom method)
- (owlapy.owl_restriction.OWLDataCardinalityRestriction method)
+
+ - (owlapy.owl_restriction.OWLDataHasValue method)
+
+ - (owlapy.owl_restriction.OWLDataSomeValuesFrom method)
- (owlapy.owl_restriction.OWLObjectAllValuesFrom method)
- (owlapy.owl_restriction.OWLObjectCardinalityRestriction method)
- (owlapy.owl_restriction.OWLObjectHasSelf method)
+
+ - (owlapy.owl_restriction.OWLObjectHasValue method)
- (owlapy.owl_restriction.OWLObjectRestriction method)
@@ -1514,13 +1492,13 @@ G
H
- - HasIRI (class in owlapy.has)
+
- HasIRI (class in owlapy.meta_classes)
- - HasOperands (class in owlapy.has)
+
- HasOperands (class in owlapy.meta_classes)
- (class in owlapy.model)
@@ -1554,10 +1532,10 @@
H
I
@@ -1901,6 +1881,8 @@ M
- owlapy.has
- owlapy.iri
+
+ - owlapy.meta_classes
- owlapy.model
@@ -1917,8 +1899,6 @@ M
- owlapy.owl_axiom
- owlapy.owl_class_expression
-
- - owlapy.owl_data
- owlapy.owl_individual
@@ -2011,7 +1991,7 @@ O
- object_property_values() (owlapy.model.OWLReasoner method)
- - operands() (owlapy.has.HasOperands method)
+
- operands() (owlapy.meta_classes.HasOperands method)
- (owlapy.model.HasOperands method)
@@ -2019,22 +1999,20 @@
O
- (owlapy.model.OWLDataOneOf method)
- (owlapy.model.OWLNaryBooleanClassExpression method)
-
- - (owlapy.model.OWLNaryDataRange method)
- (owlapy.model.OWLObjectComplementOf method)
-
- - (owlapy.model.OWLObjectOneOf method)
- (owlapy.owl_axiom.OWLHasKeyAxiom method)
- (owlapy.owl_class_expression.OWLNaryBooleanClassExpression method)
+
+ - (owlapy.owl_class_expression.OWLNaryDataRange method)
- (owlapy.owl_class_expression.OWLObjectComplementOf method)
- - (owlapy.owl_data.OWLDataOneOf method)
+
- (owlapy.owl_restriction.OWLDataOneOf method)
- - (owlapy.owl_data.OWLNaryDataRange method)
+
- (owlapy.owl_restriction.OWLObjectOneOf method)
- operator (owlapy.model.OWLFacet property)
@@ -2165,6 +2143,13 @@
O
- module
+
+
+ -
+ owlapy.meta_classes
+
+
+ - module
-
@@ -2221,13 +2206,6 @@
O
- module
-
-
- -
- owlapy.owl_data
-
-
- - module
-
@@ -2371,12 +2349,8 @@
O
- (class in owlapy.owl_restriction)
- - OWLDataComplementOf (class in owlapy.model)
-
-
- OWLDataExactCardinality (class in owlapy.model)
@@ -2386,31 +2360,27 @@ O
- OWLDataHasValue (class in owlapy.model)
- - OWLDataIntersectionOf (class in owlapy.model)
-
-
- OWLDataMaxCardinality (class in owlapy.model)
- OWLDataMinCardinality (class in owlapy.model)
- OWLDataOneOf (class in owlapy.model)
- OWLDataProperty (class in owlapy.model)
@@ -2460,7 +2430,7 @@
O
- OWLDataSomeValuesFrom (class in owlapy.model)
- OWLDatatype (class in owlapy.model)
@@ -2483,14 +2453,10 @@
O
- OWLDatatypeMinMaxInclusiveRestriction() (in module owlapy.model.providers)
- - OWLDatatypeRestriction (class in owlapy.model)
+
- OWLDatatypeRestriction (class in owlapy.owl_restriction)
- - OWLDataUnionOf (class in owlapy.model)
-
-
- OWLDeclarationAxiom (class in owlapy.owl_axiom)
- OWLDifferentIndividualsAxiom (class in owlapy.owl_axiom)
@@ -2525,7 +2491,7 @@
O
- (class in owlapy.vocab)
- - OWLFacetRestriction (class in owlapy.model)
+
- OWLFacetRestriction (class in owlapy.owl_restriction)
- OWLFunctionalDataPropertyAxiom (class in owlapy.owl_axiom)
@@ -2581,12 +2547,8 @@ O
- OWLNaryClassAxiom (class in owlapy.owl_axiom)
- - OWLNaryDataRange (class in owlapy.model)
-
-
- OWLNaryIndividualAxiom (class in owlapy.owl_axiom)
- OWLNaryPropertyAxiom (class in owlapy.owl_axiom)
@@ -2598,7 +2560,7 @@
O
- OWLNothing (in module owlapy.model)
- OWLObject (class in owlapy.model)
@@ -2637,7 +2599,7 @@
O
- (class in owlapy.owl_restriction)
- - OWLObjectHasValue (class in owlapy.model)
+
- OWLObjectHasValue (class in owlapy.owl_restriction)
- OWLObjectIntersectionOf (class in owlapy.model)
@@ -2659,7 +2621,7 @@
O
- (class in owlapy.owl_restriction)
- - OWLObjectOneOf (class in owlapy.model)
+
- OWLObjectOneOf (class in owlapy.owl_restriction)
- OWLObjectParser (class in owlapy.owlobject)
@@ -2798,7 +2760,7 @@ O
- OWLThing (in module owlapy.model)
- OWLTopDataProperty (in module owlapy.model)
@@ -3077,14 +3039,10 @@
T
- (owlapy.model.OWLClass attribute)
- (owlapy.model.OWLDataAllValuesFrom attribute)
-
- - (owlapy.model.OWLDataComplementOf attribute)
- (owlapy.model.OWLDataExactCardinality attribute)
- (owlapy.model.OWLDataHasValue attribute)
-
- - (owlapy.model.OWLDataIntersectionOf attribute)
- (owlapy.model.OWLDataMaxCardinality attribute)
@@ -3097,12 +3055,6 @@ T
- (owlapy.model.OWLDataSomeValuesFrom attribute)
- (owlapy.model.OWLDatatype attribute)
-
- - (owlapy.model.OWLDatatypeRestriction attribute)
-
- - (owlapy.model.OWLDataUnionOf attribute)
-
- - (owlapy.model.OWLFacetRestriction attribute)
- (owlapy.model.OWLLiteral attribute)
@@ -3115,16 +3067,12 @@ T
- (owlapy.model.OWLObjectExactCardinality attribute)
- (owlapy.model.OWLObjectHasSelf attribute)
-
- - (owlapy.model.OWLObjectHasValue attribute)
- (owlapy.model.OWLObjectIntersectionOf attribute)
- (owlapy.model.OWLObjectMaxCardinality attribute)
- (owlapy.model.OWLObjectMinCardinality attribute)
-
- - (owlapy.model.OWLObjectOneOf attribute)
- (owlapy.model.OWLObjectProperty attribute)
@@ -3136,27 +3084,17 @@ T
- (owlapy.owl_class_expression.OWLClass attribute)
- - (owlapy.owl_class_expression.OWLObjectComplementOf attribute)
-
- - (owlapy.owl_class_expression.OWLObjectIntersectionOf attribute)
+
- (owlapy.owl_class_expression.OWLDataComplementOf attribute)
- - (owlapy.owl_class_expression.OWLObjectUnionOf attribute)
+
- (owlapy.owl_class_expression.OWLDataIntersectionOf attribute)
- - (owlapy.owl_data.OWLDataComplementOf attribute)
+
- (owlapy.owl_class_expression.OWLDataUnionOf attribute)
- - (owlapy.owl_data.OWLDataHasValue attribute)
-
- - (owlapy.owl_data.OWLDataIntersectionOf attribute)
-
- - (owlapy.owl_data.OWLDataMaxCardinality attribute)
-
- - (owlapy.owl_data.OWLDataMinCardinality attribute)
-
- - (owlapy.owl_data.OWLDataOneOf attribute)
+
- (owlapy.owl_class_expression.OWLObjectComplementOf attribute)
- - (owlapy.owl_data.OWLDataSomeValuesFrom attribute)
+
- (owlapy.owl_class_expression.OWLObjectIntersectionOf attribute)
- - (owlapy.owl_data.OWLDataUnionOf attribute)
+
- (owlapy.owl_class_expression.OWLObjectUnionOf attribute)
- (owlapy.owl_individual.OWLNamedIndividual attribute)
@@ -3171,16 +3109,34 @@ T
- (owlapy.owl_restriction.OWLDataAllValuesFrom attribute)
- (owlapy.owl_restriction.OWLDataExactCardinality attribute)
+
+ - (owlapy.owl_restriction.OWLDataHasValue attribute)
+
+ - (owlapy.owl_restriction.OWLDataMaxCardinality attribute)
+
+ - (owlapy.owl_restriction.OWLDataMinCardinality attribute)
+
+ - (owlapy.owl_restriction.OWLDataOneOf attribute)
+
+ - (owlapy.owl_restriction.OWLDataSomeValuesFrom attribute)
+
+ - (owlapy.owl_restriction.OWLDatatypeRestriction attribute)
+
+ - (owlapy.owl_restriction.OWLFacetRestriction attribute)
- (owlapy.owl_restriction.OWLObjectAllValuesFrom attribute)
- (owlapy.owl_restriction.OWLObjectExactCardinality attribute)
- (owlapy.owl_restriction.OWLObjectHasSelf attribute)
+
+ - (owlapy.owl_restriction.OWLObjectHasValue attribute)
- (owlapy.owl_restriction.OWLObjectMaxCardinality attribute)
- (owlapy.owl_restriction.OWLObjectMinCardinality attribute)
+
+ - (owlapy.owl_restriction.OWLObjectOneOf attribute)
- (owlapy.owl_restriction.OWLObjectSomeValuesFrom attribute)
@@ -3200,7 +3156,7 @@ V
- values() (owlapy.model.OWLDataOneOf method)
- variable_entities (owlapy.owl2sparql.converter.Owl2SparqlConverter attribute)
diff --git a/objects.inv b/objects.inv
index 053235d..6f702ca 100644
Binary files a/objects.inv and b/objects.inv differ
diff --git a/owlapy.pdf b/owlapy.pdf
index 76faef2..7d38c59 100644
Binary files a/owlapy.pdf and b/owlapy.pdf differ
diff --git a/py-modindex.html b/py-modindex.html
index e00b25f..e032f98 100644
--- a/py-modindex.html
+++ b/py-modindex.html
@@ -109,6 +109,11 @@
Python Module Index
owlapy.iri
+
+
+
+ owlapy.meta_classes
+
@@ -149,11 +154,6 @@ Python Module Index
owlapy.owl_class_expression
-
-
-
- owlapy.owl_data
-
diff --git a/searchindex.js b/searchindex.js
index e18d25e..57f6437 100644
--- a/searchindex.js
+++ b/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"docnames": ["autoapi/owlapy/_utils/index", "autoapi/owlapy/has/index", "autoapi/owlapy/index", "autoapi/owlapy/iri/index", "autoapi/owlapy/model/index", "autoapi/owlapy/model/providers/index", "autoapi/owlapy/namespaces/index", "autoapi/owlapy/owl2sparql/converter/index", "autoapi/owlapy/owl2sparql/index", "autoapi/owlapy/owl_annotation/index", "autoapi/owlapy/owl_axiom/index", "autoapi/owlapy/owl_class_expression/index", "autoapi/owlapy/owl_data/index", "autoapi/owlapy/owl_individual/index", "autoapi/owlapy/owl_literal/index", "autoapi/owlapy/owl_property/index", "autoapi/owlapy/owl_restriction/index", "autoapi/owlapy/owlobject/index", "autoapi/owlapy/parser/index", "autoapi/owlapy/ranges/index", "autoapi/owlapy/render/index", "autoapi/owlapy/types/index", "autoapi/owlapy/util/index", "autoapi/owlapy/vocab/index", "index", "usage/main"], "filenames": ["autoapi/owlapy/_utils/index.rst", "autoapi/owlapy/has/index.rst", "autoapi/owlapy/index.rst", "autoapi/owlapy/iri/index.rst", "autoapi/owlapy/model/index.rst", "autoapi/owlapy/model/providers/index.rst", "autoapi/owlapy/namespaces/index.rst", "autoapi/owlapy/owl2sparql/converter/index.rst", "autoapi/owlapy/owl2sparql/index.rst", "autoapi/owlapy/owl_annotation/index.rst", "autoapi/owlapy/owl_axiom/index.rst", "autoapi/owlapy/owl_class_expression/index.rst", "autoapi/owlapy/owl_data/index.rst", "autoapi/owlapy/owl_individual/index.rst", "autoapi/owlapy/owl_literal/index.rst", "autoapi/owlapy/owl_property/index.rst", "autoapi/owlapy/owl_restriction/index.rst", "autoapi/owlapy/owlobject/index.rst", "autoapi/owlapy/parser/index.rst", "autoapi/owlapy/ranges/index.rst", "autoapi/owlapy/render/index.rst", "autoapi/owlapy/types/index.rst", "autoapi/owlapy/util/index.rst", "autoapi/owlapy/vocab/index.rst", "index.rst", "usage/main.md"], "titles": ["owlapy._utils
", "owlapy.has
", "owlapy
", "owlapy.iri
", "owlapy.model
", "owlapy.model.providers
", "owlapy.namespaces
", "owlapy.owl2sparql.converter
", "owlapy.owl2sparql
", "owlapy.owl_annotation
", "owlapy.owl_axiom
", "owlapy.owl_class_expression
", "owlapy.owl_data
", "owlapy.owl_individual
", "owlapy.owl_literal
", "owlapy.owl_property
", "owlapy.owl_restriction
", "owlapy.owlobject
", "owlapy.parser
", "owlapy.ranges
", "owlapy.render
", "owlapy.types
", "owlapy.util
", "owlapy.vocab
", "Welcome to OWLAPY!", "OWLAPY"], "terms": {"move": [0, 4], "arg": [0, 4], "sourc": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "an": [0, 1, 3, 4, 7, 9, 10, 11, 12, 14, 15, 16, 17, 18, 22], "import": [0, 4, 10], "class": 0, "current": [0, 4], "set": [0, 4, 7, 10, 14, 15], "__module__": [0, 4], "attribut": 0, "thi": [0, 1, 3, 4, 10, 11, 12, 13, 14, 15, 16, 18, 21, 22], "i": [0, 1, 3, 4, 9, 10, 11, 14, 15, 16, 17, 18, 22], "us": [0, 1, 4, 7, 10, 15, 18, 22], "document": [0, 4], "purpos": [0, 4], "hide": [0, 4], "intern": [0, 4], "packag": [0, 24], "sphinx": [0, 4], "paramet": [0, 1, 4, 7, 10, 16, 17, 18, 20, 22], "list": [0, 4, 7, 10, 18], "hasindex": [1, 4, 22], "base": [1, 3, 4, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "protocol": [1, 4], "interfac": [1, 4, 9, 10, 15, 16, 17], "type": [1, 2, 4, 7, 10, 11, 14, 15, 16, 22], "index": [1, 4], "group": [1, 4], "object": [1, 4, 9, 10, 11, 13, 15, 16, 17, 18, 19, 20, 21, 22, 24], "when": [1, 4], "sort": [1, 4, 10, 22], "type_index": [1, 3, 4, 11, 12, 13, 14, 15, 16, 21, 22], "classvar": [1, 4], "int": [1, 4, 7, 12, 14, 16, 18, 22], "__eq__": [1, 3, 4, 6, 10, 11, 12, 15, 16, 17, 22], "other": [1, 3, 4, 6, 10, 11, 12, 15, 16, 17, 22], "return": [1, 3, 4, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22], "self": [1, 3, 4, 6, 10, 11, 12, 15, 16, 17, 22], "valu": [1, 3, 4, 6, 7, 9, 10, 11, 12, 14, 15, 16, 17, 22], "hasiri": [1, 4, 17, 21], "simpl": [1, 4], "access": [1, 4], "iri": [1, 2, 4, 9, 10, 11, 13, 15, 17, 18, 21], "__slots__": [1, 3, 4, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22], "abstract": [1, 4, 7, 10, 11, 14, 15, 16, 17, 18, 22], "get_iri": [1, 4, 10, 11, 13, 15, 21], "get": [1, 3, 4, 10, 11, 12, 13, 14, 15, 16, 21], "The": [1, 3, 4, 7, 10, 11, 12, 13, 14, 15, 16, 17, 18, 21, 22], "hasoperand": [1, 4, 10, 11, 12], "gener": [1, 4, 7, 10, 16, 22], "_t": [1, 4, 16], "have": [1, 4], "collect": [1, 4], "operand": [1, 4, 10, 11, 12, 22], "iter": [1, 4, 7, 10, 11, 12, 22], "e": [1, 4, 7, 10, 11, 12, 15, 17, 22], "g": [1, 4, 10, 11, 12, 15, 22], "individu": [1, 4, 7, 9, 10, 11, 12, 13, 16], "samea": [1, 4, 10, 11, 12], "axiom": [1, 4, 10, 11, 12], "equival": [1, 4, 10, 11, 12, 16], "hasfil": [1, 4, 16], "filler": [1, 4, 12, 16], "get_fil": [1, 4, 16], "restrict": [1, 4, 5, 12, 15, 16], "In": [1, 4, 16], "case": [1, 4, 16, 18], "data": [1, 4, 10, 12, 15, 16, 21], "constant": [1, 4, 16, 22], "For": [1, 4, 15, 16], "quantifi": [1, 4, 16], "express": [1, 4, 7, 10, 11, 12, 15, 16, 17, 18, 22], "rang": [1, 2, 4, 11, 12, 16, 21], "hascardin": [1, 4, 16], "cardin": [1, 4, 12, 16], "get_cardin": [1, 4, 16], "A": [1, 3, 4, 6, 9, 10, 11, 12, 14, 15, 16, 22], "non": [1, 4, 16], "neg": [1, 4, 7, 16], "integ": [1, 4, 14, 16, 23], "model": [2, 7, 18, 20, 22], "provid": [2, 4, 17, 20], "owl2sparql": 2, "convert": [2, 8, 22], "ha": [2, 4, 10, 11, 12, 16, 17, 21, 22], "namespac": [2, 3, 4, 18, 23], "owl_annot": [2, 3, 4, 10, 14], "owl_axiom": [2, 4], "owl_class_express": [2, 4, 10, 12, 16], "owl_data": 2, "owl_individu": [2, 4, 10], "owl_liter": [2, 4, 10, 12], "owl_properti": [2, 4, 10, 12, 16], "owl_restrict": [2, 4, 12], "owlobject": [2, 4, 9, 10, 11, 13, 15, 18, 19, 20, 21, 22], "parser": 2, "render": [2, 7, 17], "util": 2, "vocab": [2, 4, 18], "__version__": 2, "0": [2, 3, 4, 22], "1": [2, 4, 7, 16, 22], "3": [2, 22], "str": [3, 4, 6, 7, 11, 13, 14, 15, 17, 18, 20, 23], "remaind": [3, 4, 23], "owlannotationsubject": [3, 4, 9, 10], "owlannotationvalu": [3, 4, 9, 10, 14], "consist": [3, 4], "properti": [3, 4, 6, 7, 10, 11, 12, 13, 15, 16, 17, 19, 23], "string": [3, 4, 14, 17, 18, 20, 23], "specifi": [3, 4], "remind": [3, 4, 11], "correspond": [3, 4, 15], "_namespac": [3, 4], "_remaind": [3, 4], "__weakref__": [3, 4], "final": [3, 4, 6, 11, 12, 13, 14, 15, 16, 21, 23], "static": [3, 4, 23], "creat": [3, 4, 5], "__repr__": [3, 4, 6, 10, 11, 12, 15, 16, 17], "repr": [3, 4, 6, 10, 11, 12, 15, 16, 17], "__hash__": [3, 4, 6, 10, 11, 12, 15, 16, 17], "hash": [3, 4, 6, 10, 11, 12, 15, 16, 17], "is_noth": [3, 4], "determin": [3, 4, 11, 15, 16], "equal": [3, 4], "owl": [3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24], "noth": [3, 4, 11], "name": [3, 4, 7, 11, 13, 15, 17, 21, 22, 23], "true": [3, 4, 7, 9, 11, 14, 15, 16], "http": [3, 4, 7, 14, 18], "www": [3, 4, 7, 14, 18], "w3": [3, 4, 7, 14, 18], "org": [3, 4, 7, 14, 18], "2002": [3, 4], "07": [3, 4], "otherwis": [3, 4, 9, 14], "fals": [3, 4, 7, 20, 22], "is_th": [3, 4], "thing": [3, 4, 11, 15], "is_reserved_vocabulari": [3, 4], "bool": [3, 4, 7, 9, 10, 11, 14, 15, 16, 17, 22, 23], "reserv": [3, 4], "vocabulari": [3, 4, 23], "start": [3, 4], "1999": [3, 4], "02": [3, 4], "22": [3, 4], "rdf": [3, 4, 6, 23], "syntax": [3, 4, 7, 18, 20], "n": [3, 4, 6, 18], "2000": [3, 4], "01": [3, 4], "schema": [3, 4], "2001": [3, 4, 14], "xmlschema": [3, 4, 14], "as_iri": [3, 4, 9], "mone": [3, 4, 9], "as_str": [3, 4], "cd": [3, 4], "should": [3, 4, 14, 22], "deprec": [3, 4], "get_short_form": [3, 4], "short": [3, 4, 17, 20], "form": [3, 4, 11, 15, 16, 17, 20, 22], "repres": [3, 4, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21], "get_namespac": [3, 4], "get_remaind": [3, 4], "coincid": [3, 4], "ncname": [3, 4], "usual": [3, 4], "owlrdfvocabulari": [4, 23], "_vocabulari": [4, 23], "enum": [4, 23], "enumer": [4, 23], "owl_th": [4, 23], "owl_noth": [4, 23], "owl_class": [4, 23], "owl_named_individu": [4, 23], "owl_top_object_properti": [4, 23], "owl_bottom_object_properti": [4, 23], "owl_top_data_properti": [4, 23], "owl_bottom_data_properti": [4, 23], "rdfs_liter": [4, 23], "xsdvocabulari": [4, 23], "xsd": [4, 6, 23], "decim": [4, 23], "long": [4, 23], "doubl": [4, 14, 23], "float": [4, 14, 23], "boolean": [4, 11, 14, 23], "date": [4, 14, 23], "date_tim": [4, 23], "datetim": [4, 14, 23], "date_time_stamp": [4, 23], "datetimestamp": [4, 23], "durat": [4, 14, 23], "owlfacet": [4, 18, 23], "symbolic_form": [4, 23], "oper": [4, 23], "callabl": [4, 20, 23], "_x": [4, 23], "facet": [4, 23], "min_inclus": [4, 23], "mininclus": [4, 23], "min_exclus": [4, 23], "minexclus": [4, 23], "max_inclus": [4, 23], "maxinclus": [4, 23], "max_exclus": [4, 23], "maxexclus": [4, 23], "length": [4, 23], "min_length": [4, 23], "minlength": [4, 23], "max_length": [4, 23], "maxlength": [4, 23], "pattern": [4, 23], "total_digit": [4, 23], "totaldigit": [4, 23], "fraction_digit": [4, 23], "fractiondigit": [4, 23], "from_str": [4, 23], "modul": 4, "is_anonym": [4, 17], "owlent": [4, 7, 10, 11, 13, 15, 17, 20, 21], "owlnamedobject": [4, 17], "entiti": [4, 7, 10, 17], "2": [4, 10, 11, 12, 13, 14, 15, 16, 17, 19, 21, 22], "specif": [4, 10, 11, 12, 13, 14, 15, 16, 17, 19, 21], "to_string_id": [4, 17], "owlannotationobject": [4, 9], "marker": [4, 9, 15], "annot": [4, 9, 10, 14], "none": [4, 7, 9, 10, 14, 17, 18, 20, 22], "as_anonymous_individu": [4, 9], "anonym": [4, 9, 11, 13], "subject": [4, 7, 9, 10], "which": [4, 9, 10, 11, 14, 15, 17, 18], "can": [4, 9, 10, 15, 19, 22], "either": [4, 9, 10, 15], "uri": [4, 9], "liter": [4, 9, 14], "is_liter": [4, 9, 14], "as_liter": [4, 9, 14], "owlliter": [4, 9, 10, 12, 14, 18], "owlnarybooleanclassexpress": [4, 11], "owlclassexpress": [4, 7, 10, 11, 12, 16, 18, 22], "owlbooleanclassexpress": [4, 11], "owlpropertyrang": [4, 11, 19], "is_owl_th": [4, 11], "built": [4, 11], "method": [4, 11, 12, 17, 18], "doe": [4, 11], "is_owl_noth": [4, 11], "get_object_complement_of": [4, 11], "owlobjectcomplementof": [4, 11], "complement": [4, 11], "get_nnf": [4, 11], "negat": [4, 11, 22], "normal": [4, 11, 22], "nnf": [4, 11, 22], "op": [4, 11], "objectcomplementof": [4, 11], "_operand": [4, 11, 12], "3003": [4, 11], "get_operand": [4, 11], "wrap": [4, 11, 12], "owlanonymousclassexpress": [4, 11, 16], "owldatarang": [4, 10, 12, 16, 18, 19, 21, 22], "datarang": [4, 10, 19], "owlclass": [4, 10, 11, 18], "_iri": [4, 10, 11, 13, 15, 21], "_is_noth": [4, 11], "_is_th": [4, 11], "1001": [4, 11], "owlobjectunionof": [4, 11, 22], "objectunionof": [4, 11], "3002": [4, 11], "owlobjectintersectionof": [4, 11, 16], "3001": [4, 11], "owlobjectpropertyexpress": [4, 10, 15, 16, 18], "owlpropertyexpress": [4, 10, 15, 16], "high": [4, 15], "level": [4, 10, 15, 22], "describ": [4, 15], "differ": [4, 15, 20], "get_inverse_properti": [4, 15], "obtain": [4, 12, 15, 16], "invers": [4, 15], "note": [4, 14, 15], "necessarili": [4, 15], "simplest": [4, 15], "get_named_properti": [4, 15], "owlobjectproperti": [4, 15, 18], "p": [4, 12, 15], "inv": [4, 15], "is_object_property_express": [4, 15], "owlproperti": [4, 10, 15], "aren": [4, 15], "t": [4, 10, 15], "By": [4, 15], "definit": [4, 15], "ar": [4, 7, 10, 12, 15], "possibli": [4, 15], "is_data_property_express": [4, 15], "is_owl_top_object_properti": [4, 15], "topobjectproperti": [4, 15], "is_owl_top_data_properti": [4, 15], "topdataproperti": [4, 15], "owldatapropertyexpress": [4, 10, 12, 15, 16], "owldataproperti": [4, 15, 18], "1004": [4, 15], "1002": [4, 15], "owlobjectinverseof": [4, 15], "owlrestrict": [4, 16], "get_properti": [4, 10, 12, 16], "being": [4, 12, 16], "is_data_restrict": [4, 16], "is_object_restrict": [4, 16], "owlobjectallvaluesfrom": [4, 16], "owlquantifiedobjectrestrict": [4, 16, 18], "objectallvaluesfrom": [4, 16], "_properti": [4, 10, 12, 16], "_filler": [4, 12, 16], "3006": [4, 16], "owlobjectsomevaluesfrom": [4, 16], "objectsomevaluesfrom": [4, 16], "3005": [4, 16], "owlquantifiedrestrict": [4, 16], "owlobjectrestrict": [4, 16], "owlhasvaluerestrict": [4, 12, 16], "owldatarestrict": [4, 12, 16], "owlcardinalityrestrict": [4, 16], "_f": [4, 16], "min": [4, 5, 16], "max": [4, 5, 16], "owlobjectmincardin": [4, 16], "owlobjectcardinalityrestrict": [4, 16, 18], "objectmincardin": [4, 16], "_cardin": [4, 12, 16], "3008": [4, 16], "owldataallvaluesfrom": [4, 16], "owlquantifieddatarestrict": [4, 12, 16, 18], "dataallvaluesfrom": [4, 16], "3013": [4, 16], "owlobjecthasself": [4, 16, 18], "objecthasself": [4, 16], "3011": [4, 16], "owlobjectmaxcardin": [4, 16], "objectmaxcardin": [4, 16], "3010": [4, 16], "owlobjectexactcardin": [4, 16], "objectexactcardin": [4, 16], "3009": [4, 16], "as_intersection_of_min_max": [4, 16], "conjunct": [4, 16, 22], "semant": [4, 16], "structur": [4, 16], "simpler": [4, 16], "r": [4, 16], "c": [4, 16, 22], "owldataexactcardin": [4, 16], "owldatacardinalityrestrict": [4, 12, 16, 18], "dataexactcardin": [4, 16], "3016": [4, 16], "d": [4, 16], "owlnamedindividu": [4, 7, 13, 18], "owlindividu": [4, 10, 13], "1005": [4, 13], "owlequivalentclassesaxiom": [4, 10], "class_express": [4, 7, 10], "owlannot": [4, 10], "owlnaryclassaxiom": [4, 10], "equivalentclass": [4, 10], "contains_named_equivalent_class": [4, 10], "contains_owl_noth": [4, 10], "contains_owl_th": [4, 10], "named_class": [4, 10], "owlclassaxiom": [4, 10], "owllogicalaxiom": [4, 10], "owldatapropertydomainaxiom": [4, 10], "property_": [4, 10], "domain": [4, 10], "owlpropertydomainaxiom": [4, 10], "datapropertydomain": [4, 10], "owlaxiom": [4, 10], "ontologi": [4, 10, 17], "contain": [4, 10, 22], "These": [4, 10], "declar": [4, 10], "logic": [4, 10, 18], "_annot": [4, 10], "is_annot": [4, 10], "is_logical_axiom": [4, 10], "is_annotation_axiom": [4, 10], "owldatapropertyrangeaxiom": [4, 10], "range_": [4, 10], "owlpropertyrangeaxiom": [4, 10], "datapropertyrang": [4, 10], "owlobjectpropertydomainaxiom": [4, 10], "objectpropertydomain": [4, 10], "owlobjectpropertyrangeaxiom": [4, 10], "objectpropertyrang": [4, 10], "owldatatyp": [4, 10, 14, 18, 21], "datatyp": [4, 5, 10, 14, 21], "4001": [4, 21], "owldatamincardin": [4, 12], "datamincardin": [4, 12], "3015": [4, 12], "owldatamaxcardin": [4, 12], "datamaxcardin": [4, 12], "3017": [4, 12], "owldatacomplementof": [4, 12], "data_rang": [4, 12], "datacomplementof": [4, 12], "4002": [4, 12], "get_data_rang": [4, 12], "owldataintersectionof": [4, 12], "owlnarydatarang": [4, 12], "dataintersectionof": [4, 12], "4004": [4, 12], "owldatahasvalu": [4, 12, 18], "datahasvalu": [4, 12], "3014": [4, 12], "as_some_values_from": [4, 12], "conveni": [4, 12], "existenti": [4, 12], "nomin": [4, 12], "simp": [4, 12], "hasvalu": [4, 12], "some": [4, 12, 15], "owldataoneof": [4, 12, 18], "dataoneof": [4, 12], "4003": [4, 12], "oneof": [4, 12], "code": [4, 12], "owldatasomevaluesfrom": [4, 12], "datasomevaluesfrom": [4, 12], "3012": [4, 12], "owldataunionof": [4, 12], "dataunionof": [4, 12], "4005": [4, 12], "4008": [4, 14], "get_liter": [4, 14], "lexic": [4, 14], "languag": [4, 14], "tag": [4, 14], "includ": [4, 10, 14], "is_boolean": [4, 14], "whether": [4, 10, 14, 22], "parse_boolean": [4, 14], "pars": [4, 14, 17, 18], "space": [4, 14], "is_doubl": [4, 14], "parse_doubl": [4, 14], "is_integ": [4, 14], "parse_integ": [4, 14], "is_str": [4, 14], "parse_str": [4, 14], "is_dat": [4, 14], "parse_d": [4, 14], "is_datetim": [4, 14], "parse_datetim": [4, 14], "is_dur": [4, 14], "parse_dur": [4, 14], "panda": [4, 14], "timedelta": [4, 14], "to_python": [4, 14], "get_datatyp": [4, 10, 14], "owlobjecthasvalu": [4, 18], "objecthasvalu": 4, "_v": [4, 22], "3007": 4, "owlobjectoneof": [4, 18], "objectoneof": 4, "_valu": [4, 10], "3004": 4, "exact": 4, "instanc": [4, 7, 22], "extens": 4, "as_object_union_of": 4, "simplifi": 4, "union": 4, "singleton": 4, "more": [4, 10], "standard": 4, "dl": [4, 20], "a0": 4, "unionof": 4, "owlontologyid": 4, "ontology_iri": 4, "version_iri": 4, "identifi": 4, "sinc": 4, "do": 4, "thei": 4, "option": 4, "also": [4, 10], "version": 4, "bundl": 4, "inform": 4, "togeth": 4, "If": [4, 7], "doesn": [4, 10], "we": [4, 18], "sai": 4, "_ontology_iri": 4, "_version_iri": 4, "get_ontology_iri": 4, "get_version_iri": 4, "get_default_document_iri": 4, "default": [4, 18], "represent": [4, 24], "id": 4, "els": 4, "see": 4, "owldatatyperestrict": [4, 5, 18], "type_": 4, "facet_restrict": 4, "owlfacetrestrict": [4, 18], "datatyperestrict": 4, "_type": 4, "_facet_restrict": 4, "4006": 4, "get_facet_restrict": 4, "sequenc": 4, "particular": 4, "_facet": 4, "_liter": 4, "4007": 4, "get_facet": 4, "get_facet_valu": 4, "owlimportsdeclar": 4, "import_iri": 4, "statement": 4, "point": 4, "might": 4, "its": [4, 6, 10, 17], "mandat": 4, "exampl": [4, 7, 15, 17], "resolv": 4, "deploi": 4, "url": 4, "owlontologi": 4, "empti": 4, "mai": 4, "need": 4, "cannot": 4, "modifi": 4, "directli": 4, "chang": 4, "must": 4, "appli": 4, "via": 4, "owlontologymanag": 4, "classes_in_signatur": 4, "signatur": 4, "data_properties_in_signatur": 4, "object_properties_in_signatur": 4, "individuals_in_signatur": 4, "equivalent_classes_axiom": 4, "all": [4, 10, 18, 22], "retriev": 4, "general_class_axiom": 4, "subclass": [4, 18], "complex": 4, "sub": [4, 10], "disjointclass": [4, 10], "onli": [4, 7, 10], "data_property_domain_axiom": 4, "where": 4, "match": 4, "search": 4, "data_property_range_axiom": 4, "object_property_domain_axiom": 4, "object_property_range_axiom": 4, "get_owl_ontology_manag": 4, "_m": 4, "manag": 4, "get_ontology_id": 4, "belong": 4, "check": 4, "owlontologychang": 4, "get_ontologi": 4, "wa": 4, "applic": 4, "addimport": 4, "import_declar": 4, "ad": 4, "_ont": 4, "_declar": 4, "get_import_declar": 4, "pertain": 4, "It": [4, 10], "main": 4, "load": 4, "create_ontologi": 4, "new": 4, "newli": 4, "alreadi": 4, "exist": 4, "load_ontologi": 4, "assum": 4, "map": [4, 7], "expect": 4, "although": 4, "api": 4, "toler": 4, "situat": 4, "apply_chang": 4, "just": 4, "one": [4, 15], "through": 4, "implement": [4, 18], "call": 4, "rais": 4, "changeappli": 4, "unsuccessfulli": 4, "successfulli": 4, "add_axiom": 4, "add": 4, "singl": 4, "remove_axiom": 4, "remov": 4, "from": [4, 7, 22], "save_ontologi": 4, "document_iri": 4, "save": 4, "how": 4, "owlreason": 4, "reason": 4, "over": 4, "closur": 4, "root": [4, 7], "data_property_domain": 4, "pe": 4, "direct": 4, "indirect": 4, "respect": 4, "whose": 4, "let": 4, "equivalent_class": 4, "result": [4, 7, 18, 22], "super_class": [4, 10], "top": [4, 10, 22], "object_property_domain": 4, "object_property_rang": 4, "objectinverseof": [4, 15], "ce": [4, 7, 22], "only_nam": 4, "entail": 4, "unsatisfi": 4, "bottom": 4, "node": [4, 18], "disjoint_class": 4, "disjoint": 4, "strictsubclassof": 4, "different_individu": 4, "ind": 4, "x": [4, 7], "differentindividu": [4, 10], "same_individu": 4, "same": [4, 22], "sameindividu": [4, 10], "equivalent_object_properti": 4, "equivalentobjectproperti": [4, 10], "bottomdataproperti": 4, "equivalent_data_properti": 4, "dp": 4, "equivalentdataproperti": [4, 10], "data_property_valu": 4, "so": [4, 18], "taken": 4, "account": 4, "each": 4, "l": 4, "datapropertyassert": [4, 10], "object_property_valu": 4, "j": 4, "objectpropertyassert": [4, 10], "flush": 4, "ani": 4, "store": 4, "buffer": 4, "caus": 4, "take": 4, "consider": 4, "directclassassert": 4, "classassert": [4, 10], "sub_class": [4, 10], "strict": 4, "potenti": 4, "descend": 4, "directsubclassof": 4, "disjoint_object_properti": 4, "objectpropertycomplementof": 4, "strictsubobjectpropertyof": 4, "disjoint_data_properti": 4, "datapropertycomplementof": 4, "strictsubdatapropertyof": 4, "sub_data_properti": 4, "subproperti": 4, "directsubdatapropertyof": 4, "super_data_properti": 4, "stream": [4, 10], "super": [4, 10], "ancestor": 4, "sub_object_properti": 4, "directsubobjectpropertyof": 4, "bottomobjectproperti": 4, "super_object_properti": 4, "get_root_ontologi": 4, "": [4, 18], "is_isol": 4, "isol": 4, "is_using_triplestor": 4, "triplestor": 4, "owlth": [4, 14], "owlnoth": [4, 14], "owltopobjectproperti": [4, 14], "owlbottomobjectproperti": [4, 14], "owltopdataproperti": [4, 14], "owlbottomdataproperti": [4, 14], "doubleowldatatyp": [4, 14], "integerowldatatyp": [4, 14], "booleanowldatatyp": [4, 14], "stringowldatatyp": [4, 14], "dateowldatatyp": [4, 14], "datetimeowldatatyp": [4, 14], "durationowldatatyp": [4, 14], "topowldatatyp": [4, 14], "numeric_datatyp": [4, 14], "time_datatyp": [4, 14], "constructor": 5, "restriction_liter": 5, "owldatatypemaxexclusiverestrict": 5, "max_": 5, "exclus": 5, "owldatatypeminexclusiverestrict": 5, "min_": 5, "owldatatypemaxinclusiverestrict": 5, "inclus": 5, "owldatatypemininclusiverestrict": 5, "owldatatypeminmaxexclusiverestrict": 5, "owldatatypeminmaxinclusiverestrict": 5, "prefix": 6, "_prefix": 6, "_n": 6, "format": 7, "peek": 7, "last": 7, "element": [7, 22], "arrai": 7, "arr": 7, "variablesmap": 7, "helper": 7, "sparql": [7, 8], "convers": 7, "class_cnt": 7, "prop_cnt": 7, "ind_cnt": 7, "dict": 7, "get_vari": 7, "new_individual_vari": 7, "new_property_vari": 7, "__contains__": [7, 22], "item": [7, 22], "__getitem__": [7, 22], "owl2sparqlconvert": 7, "modal_depth": 7, "current_vari": 7, "variabl": 7, "parent": 7, "parent_var": 7, "variable_ent": 7, "cnt": 7, "grouping_var": 7, "having_condit": 7, "root_vari": 7, "named_individu": 7, "queri": 7, "namedindividu": 7, "stack_vari": 7, "var": 7, "stack_par": 7, "process": 7, "new_count_var": 7, "append_tripl": 7, "predic": 7, "object_": [7, 10], "append": 7, "frag": 7, "tripl": 7, "as_queri": 7, "count": [7, 22], "project": 7, "transform": [7, 22], "posit": 7, "problem": 7, "owl_expression_to_sparql": 7, "tr": [7, 18], "owl2": [7, 18], "unclear": 7, "affect": 10, "mean": 10, "exclud": 10, "owlpropertyaxiom": 10, "owlobjectpropertyaxiom": 10, "owldatapropertyaxiom": 10, "owlindividualaxiom": 10, "owldeclarationaxiom": 10, "_entiti": 10, "get_ent": 10, "owldatatypedefinitionaxiom": 10, "datatypedefinit": 10, "_datatyp": 10, "_datarang": 10, "get_datarang": 10, "owlhaskeyaxiom": 10, "property_express": 10, "haskei": 10, "_class_express": 10, "_property_express": 10, "get_class_express": 10, "get_property_express": 10, "owlnaryaxiom": 10, "_c": 10, "two": 10, "could": 10, "multipl": 10, "pairwis": 10, "as_pairwise_axiom": 10, "appear": 10, "itself": 10, "unchang": 10, "owldisjointclassesaxiom": 10, "owlnaryindividualaxiom": 10, "_individu": 10, "owldifferentindividualsaxiom": 10, "owlsameindividualaxiom": 10, "owlnarypropertyaxiom": 10, "_p": 10, "owlequivalentobjectpropertiesaxiom": 10, "owldisjointobjectpropertiesaxiom": 10, "disjointobjectproperti": 10, "owlinverseobjectpropertiesaxiom": 10, "first": 10, "second": 10, "inverseobjectproperti": 10, "_first": 10, "_second": 10, "get_first_properti": 10, "get_second_properti": 10, "owlequivalentdatapropertiesaxiom": 10, "owldisjointdatapropertiesaxiom": 10, "disjointdataproperti": 10, "owlsubclassofaxiom": 10, "subclassof": 10, "_sub_class": 10, "_super_class": 10, "get_sub_class": 10, "get_super_class": 10, "owldisjointunionaxiom": 10, "cls_": 10, "disjointunion": 10, "_cl": 10, "get_owl_class": 10, "get_owl_equivalent_classes_axiom": 10, "get_owl_disjoint_classes_axiom": 10, "owlclassassertionaxiom": 10, "get_individu": 10, "owlannotationproperti": 10, "annotationproperti": 10, "variou": 10, "bind": 10, "act": 10, "along": 10, "get_valu": 10, "depend": [10, 22], "upon": 10, "owlanonymousindividu": 10, "owlannotationaxiom": 10, "owlannotationassertionaxiom": 10, "annotationassert": 10, "_subject": 10, "get_subject": 10, "owlsubannotationpropertyofaxiom": 10, "sub_properti": 10, "super_properti": 10, "subannotationpropertyof": 10, "_sub_properti": 10, "_super_properti": 10, "get_sub_properti": 10, "get_super_properti": 10, "owlannotationpropertydomainaxiom": 10, "annotationpropertydomain": 10, "_domain": 10, "get_domain": 10, "owlannotationpropertyrangeaxiom": 10, "annotationpropertyrang": 10, "_rang": 10, "get_rang": 10, "owlsubpropertyaxiom": 10, "owlsubobjectpropertyofaxiom": 10, "subobjectpropertyof": 10, "owlsubdatapropertyofaxiom": 10, "subdatapropertyof": 10, "owlpropertyassertionaxiom": 10, "propertyassert": 10, "_object": 10, "get_object": 10, "owlobjectpropertyassertionaxiom": 10, "owlnegativeobjectpropertyassertionaxiom": 10, "negativeobjectpropertyassert": 10, "owldatapropertyassertionaxiom": 10, "owlnegativedatapropertyassertionaxiom": 10, "negativedatapropertyassert": 10, "owlunarypropertyaxiom": 10, "unari": 10, "owlobjectpropertycharacteristicaxiom": 10, "function": 10, "owlfunctionalobjectpropertyaxiom": 10, "functionalobjectproperti": 10, "owlasymmetricobjectpropertyaxiom": 10, "asymmetricobjectproperti": 10, "owlinversefunctionalobjectpropertyaxiom": 10, "inversefunctionalobjectproperti": 10, "owlirreflexiveobjectpropertyaxiom": 10, "irreflexiveobjectproperti": 10, "owlreflexiveobjectpropertyaxiom": 10, "reflexiveobjectproperti": 10, "owlsymmetricobjectpropertyaxiom": 10, "symmetricobjectproperti": 10, "owltransitiveobjectpropertyaxiom": 10, "transitiveobjectproperti": 10, "owldatapropertycharacteristicaxiom": 10, "owlfunctionaldatapropertyaxiom": 10, "functionaldataproperti": 10, "_r": 10, "refer": 15, "without": 15, "actual": 15, "consid": 15, "haspart": 15, "ispartof": 15, "inverseof": 15, "car": 15, "part": 15, "least": 15, "_inverse_properti": 15, "1003": 15, "get_invers": 15, "owlobjectrender": [17, 20], "set_short_form_provid": [17, 20], "short_form_provid": [17, 20], "configur": [17, 20], "shorten": [17, 20, 22], "dure": [17, 20], "o": [17, 20, 22], "rendit": [17, 20], "owlobjectpars": [17, 18], "parse_express": [17, 18], "expression_str": [17, 18], "etc": 17, "anyth": 17, "__lt__": [17, 22], "manchester_grammar": 18, "manchesterowlsyntaxpars": 18, "grammar": 18, "parsimoni": 18, "nodevisitor": 18, "manchest": [18, 20], "follow": [18, 22], "slot": 18, "visit_union": 18, "children": 18, "visit_intersect": 18, "visit_primari": 18, "visit_some_only_r": 18, "visit_cardinality_r": 18, "visit_value_r": 18, "visit_has_self": 18, "visit_object_properti": 18, "visit_class_express": 18, "visit_individual_list": 18, "visit_data_primari": 18, "visit_data_some_only_r": 18, "visit_data_cardinality_r": 18, "visit_data_value_r": 18, "visit_data_union": 18, "visit_data_intersect": 18, "visit_literal_list": 18, "visit_data_parenthes": 18, "visit_datatype_restrict": 18, "visit_facet_restrict": 18, "visit_liter": 18, "visit_typed_liter": 18, "visit_string_literal_languag": 18, "visit_string_literal_no_languag": 18, "visit_quoted_str": 18, "visit_float_liter": 18, "visit_decimal_liter": 18, "visit_integer_liter": 18, "visit_boolean_liter": 18, "visit_datetime_liter": 18, "visit_duration_liter": 18, "visit_date_liter": 18, "visit_non_negative_integ": 18, "visit_datatype_iri": 18, "visit_datatyp": 18, "visit_facet": 18, "visit_class_iri": 18, "visit_individual_iri": 18, "visit_object_property_iri": 18, "visit_data_property_iri": 18, "visit_iri": 18, "visit_full_iri": 18, "visit_abbreviated_iri": 18, "visit_simple_iri": 18, "visit_parenthes": 18, "generic_visit": 18, "visitor": 18, "re": 18, "visit": 18, "visited_children": 18, "m": 18, "sure": 18, "make": 18, "sens": 18, "across": 18, "even": 18, "most": 18, "leav": 18, "now": 18, "dl_grammar": 18, "dlsyntaxpars": 18, "descript": 18, "dlparser": 18, "manchesterpars": 18, "dl_to_owl_express": 18, "dl_express": 18, "manchester_to_owl_express": 18, "manchester_express": 18, "dlsyntaxobjectrender": 20, "_simple_short_form_provid": 20, "_sfp": 20, "manchesterowlsyntaxowlobjectrender": 20, "no_render_th": 20, "_no_render_th": 20, "dlrender": 20, "manchesterrender": 20, "owl_expression_to_dl": 20, "owl_expression_to_manchest": 20, "orderedowlobject": 22, "_hasindex": 22, "holder": 22, "python": [22, 24], "order": 22, "impl": 22, "recurs": 22, "compon": 22, "_chain": 22, "get_class_nnf": 22, "toplevelcnf": 22, "get_top_level_cnf": 22, "topleveldnf": 22, "disjunct": 22, "get_top_level_dnf": 22, "combine_nary_express": 22, "combin": 22, "nest": 22, "nari": 22, "b": 22, "iter_count": 22, "number": 22, "as_index": 22, "cast": 22, "lrucach": 22, "maxsiz": 22, "_k": 22, "share": 22, "lru": 22, "cach": 22, "adapt": 22, "functool": 22, "lru_cach": 22, "sentinel": 22, "uniqu": 22, "signal": 22, "miss": 22, "prev": 22, "link": 22, "field": 22, "next": 22, "kei": 22, "__setitem__": 22, "cache_info": 22, "report": 22, "statist": 22, "cache_clear": 22, "clear": 22, "subpackag": 24, "submodul": 24, "placehold": 25}, "objects": {"": [[2, 0, 0, "-", "owlapy"]], "owlapy": [[2, 1, 1, "", "__version__"], [0, 0, 0, "-", "_utils"], [1, 0, 0, "-", "has"], [3, 0, 0, "-", "iri"], [4, 0, 0, "-", "model"], [6, 0, 0, "-", "namespaces"], [8, 0, 0, "-", "owl2sparql"], [9, 0, 0, "-", "owl_annotation"], [10, 0, 0, "-", "owl_axiom"], [11, 0, 0, "-", "owl_class_expression"], [12, 0, 0, "-", "owl_data"], [13, 0, 0, "-", "owl_individual"], [14, 0, 0, "-", "owl_literal"], [15, 0, 0, "-", "owl_property"], [16, 0, 0, "-", "owl_restriction"], [17, 0, 0, "-", "owlobject"], [18, 0, 0, "-", "parser"], [19, 0, 0, "-", "ranges"], [20, 0, 0, "-", "render"], [21, 0, 0, "-", "types"], [22, 0, 0, "-", "util"], [23, 0, 0, "-", "vocab"]], "owlapy._utils": [[0, 2, 1, "", "MOVE"]], "owlapy.has": [[1, 3, 1, "", "HasCardinality"], [1, 3, 1, "", "HasFiller"], [1, 3, 1, "", "HasIRI"], [1, 3, 1, "", "HasIndex"], [1, 3, 1, "", "HasOperands"]], "owlapy.has.HasCardinality": [[1, 4, 1, "", "__slots__"], [1, 5, 1, "", "get_cardinality"]], "owlapy.has.HasFiller": [[1, 4, 1, "", "__slots__"], [1, 5, 1, "", "get_filler"]], "owlapy.has.HasIRI": [[1, 4, 1, "", "__slots__"], [1, 5, 1, "", "get_iri"]], "owlapy.has.HasIndex": [[1, 5, 1, "", "__eq__"], [1, 4, 1, "", "type_index"]], "owlapy.has.HasOperands": [[1, 4, 1, "", "__slots__"], [1, 5, 1, "", "operands"]], "owlapy.iri": [[3, 3, 1, "", "IRI"]], "owlapy.iri.IRI": [[3, 5, 1, "", "__eq__"], [3, 5, 1, "", "__hash__"], [3, 5, 1, "", "__repr__"], [3, 4, 1, "", "__slots__"], [3, 5, 1, "", "as_iri"], [3, 5, 1, "", "as_str"], [3, 5, 1, "", "create"], [3, 5, 1, "", "get_namespace"], [3, 5, 1, "", "get_remainder"], [3, 5, 1, "", "get_short_form"], [3, 5, 1, "", "is_nothing"], [3, 5, 1, "", "is_reserved_vocabulary"], [3, 5, 1, "", "is_thing"], [3, 6, 1, "", "reminder"], [3, 6, 1, "", "str"], [3, 4, 1, "", "type_index"]], "owlapy.model": [[4, 3, 1, "", "AddImport"], [4, 1, 1, "", "BooleanOWLDatatype"], [4, 1, 1, "", "DateOWLDatatype"], [4, 1, 1, "", "DateTimeOWLDatatype"], [4, 1, 1, "", "DoubleOWLDatatype"], [4, 1, 1, "", "DurationOWLDatatype"], [4, 3, 1, "", "HasCardinality"], [4, 3, 1, "", "HasFiller"], [4, 3, 1, "", "HasIRI"], [4, 3, 1, "", "HasIndex"], [4, 3, 1, "", "HasOperands"], [4, 3, 1, "", "IRI"], [4, 1, 1, "", "IntegerOWLDatatype"], [4, 1, 1, "", "Literals"], [4, 2, 1, "", "MOVE"], [4, 1, 1, "", "NUMERIC_DATATYPES"], [4, 3, 1, "", "OWLAnnotationObject"], [4, 3, 1, "", "OWLAnnotationSubject"], [4, 3, 1, "", "OWLAnnotationValue"], [4, 3, 1, "", "OWLAnonymousClassExpression"], [4, 3, 1, "", "OWLAxiom"], [4, 3, 1, "", "OWLBooleanClassExpression"], [4, 1, 1, "", "OWLBottomDataProperty"], [4, 1, 1, "", "OWLBottomObjectProperty"], [4, 3, 1, "", "OWLCardinalityRestriction"], [4, 3, 1, "", "OWLClass"], [4, 3, 1, "", "OWLClassAxiom"], [4, 3, 1, "", "OWLClassExpression"], [4, 3, 1, "", "OWLDataAllValuesFrom"], [4, 3, 1, "", "OWLDataCardinalityRestriction"], [4, 3, 1, "", "OWLDataComplementOf"], [4, 3, 1, "", "OWLDataExactCardinality"], [4, 3, 1, "", "OWLDataHasValue"], [4, 3, 1, "", "OWLDataIntersectionOf"], [4, 3, 1, "", "OWLDataMaxCardinality"], [4, 3, 1, "", "OWLDataMinCardinality"], [4, 3, 1, "", "OWLDataOneOf"], [4, 3, 1, "", "OWLDataProperty"], [4, 3, 1, "", "OWLDataPropertyDomainAxiom"], [4, 3, 1, "", "OWLDataPropertyExpression"], [4, 3, 1, "", "OWLDataPropertyRangeAxiom"], [4, 3, 1, "", "OWLDataRange"], [4, 3, 1, "", "OWLDataRestriction"], [4, 3, 1, "", "OWLDataSomeValuesFrom"], [4, 3, 1, "", "OWLDataUnionOf"], [4, 3, 1, "", "OWLDatatype"], [4, 3, 1, "", "OWLDatatypeRestriction"], [4, 3, 1, "", "OWLEntity"], [4, 3, 1, "", "OWLEquivalentClassesAxiom"], [4, 3, 1, "", "OWLFacet"], [4, 3, 1, "", "OWLFacetRestriction"], [4, 3, 1, "", "OWLHasValueRestriction"], [4, 3, 1, "", "OWLImportsDeclaration"], [4, 3, 1, "", "OWLIndividual"], [4, 3, 1, "", "OWLLiteral"], [4, 3, 1, "", "OWLNamedIndividual"], [4, 3, 1, "", "OWLNaryBooleanClassExpression"], [4, 3, 1, "", "OWLNaryDataRange"], [4, 1, 1, "", "OWLNothing"], [4, 3, 1, "", "OWLObject"], [4, 3, 1, "", "OWLObjectAllValuesFrom"], [4, 3, 1, "", "OWLObjectCardinalityRestriction"], [4, 3, 1, "", "OWLObjectComplementOf"], [4, 3, 1, "", "OWLObjectExactCardinality"], [4, 3, 1, "", "OWLObjectHasSelf"], [4, 3, 1, "", "OWLObjectHasValue"], [4, 3, 1, "", "OWLObjectIntersectionOf"], [4, 3, 1, "", "OWLObjectMaxCardinality"], [4, 3, 1, "", "OWLObjectMinCardinality"], [4, 3, 1, "", "OWLObjectOneOf"], [4, 3, 1, "", "OWLObjectProperty"], [4, 3, 1, "", "OWLObjectPropertyDomainAxiom"], [4, 3, 1, "", "OWLObjectPropertyExpression"], [4, 3, 1, "", "OWLObjectPropertyRangeAxiom"], [4, 3, 1, "", "OWLObjectRestriction"], [4, 3, 1, "", "OWLObjectSomeValuesFrom"], [4, 3, 1, "", "OWLObjectUnionOf"], [4, 3, 1, "", "OWLOntology"], [4, 3, 1, "", "OWLOntologyChange"], [4, 3, 1, "", "OWLOntologyID"], [4, 3, 1, "", "OWLOntologyManager"], [4, 3, 1, "", "OWLProperty"], [4, 3, 1, "", "OWLPropertyExpression"], [4, 3, 1, "", "OWLPropertyRange"], [4, 3, 1, "", "OWLQuantifiedDataRestriction"], [4, 3, 1, "", "OWLQuantifiedObjectRestriction"], [4, 3, 1, "", "OWLQuantifiedRestriction"], [4, 3, 1, "", "OWLRDFVocabulary"], [4, 3, 1, "", "OWLReasoner"], [4, 3, 1, "", "OWLRestriction"], [4, 1, 1, "", "OWLThing"], [4, 1, 1, "", "OWLTopDataProperty"], [4, 1, 1, "", "OWLTopObjectProperty"], [4, 1, 1, "", "StringOWLDatatype"], [4, 1, 1, "", "TIME_DATATYPES"], [4, 1, 1, "", "TopOWLDatatype"], [4, 3, 1, "", "XSDVocabulary"], [5, 0, 0, "-", "providers"]], "owlapy.model.AddImport": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_import_declaration"]], "owlapy.model.HasCardinality": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_cardinality"]], "owlapy.model.HasFiller": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_filler"]], "owlapy.model.HasIRI": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_iri"]], "owlapy.model.HasIndex": [[4, 5, 1, "", "__eq__"], [4, 4, 1, "", "type_index"]], "owlapy.model.HasOperands": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "operands"]], "owlapy.model.IRI": [[4, 5, 1, "", "__eq__"], [4, 5, 1, "", "__hash__"], [4, 5, 1, "", "__repr__"], [4, 4, 1, "", "__slots__"], [4, 5, 1, "", "as_iri"], [4, 5, 1, "", "as_str"], [4, 5, 1, "", "create"], [4, 5, 1, "", "get_namespace"], [4, 5, 1, "", "get_remainder"], [4, 5, 1, "", "get_short_form"], [4, 5, 1, "", "is_nothing"], [4, 5, 1, "", "is_reserved_vocabulary"], [4, 5, 1, "", "is_thing"], [4, 6, 1, "", "reminder"], [4, 6, 1, "", "str"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLAnnotationObject": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "as_anonymous_individual"], [4, 5, 1, "", "as_iri"]], "owlapy.model.OWLAnnotationSubject": [[4, 4, 1, "", "__slots__"]], "owlapy.model.OWLAnnotationValue": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "as_literal"], [4, 5, 1, "", "is_literal"]], "owlapy.model.OWLAnonymousClassExpression": [[4, 5, 1, "", "get_nnf"], [4, 5, 1, "", "get_object_complement_of"], [4, 5, 1, "", "is_owl_nothing"], [4, 5, 1, "", "is_owl_thing"]], "owlapy.model.OWLAxiom": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "annotations"], [4, 5, 1, "", "is_annotated"], [4, 5, 1, "", "is_annotation_axiom"], [4, 5, 1, "", "is_logical_axiom"]], "owlapy.model.OWLBooleanClassExpression": [[4, 4, 1, "", "__slots__"]], "owlapy.model.OWLCardinalityRestriction": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_cardinality"], [4, 5, 1, "", "get_filler"]], "owlapy.model.OWLClass": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_iri"], [4, 5, 1, "", "get_nnf"], [4, 5, 1, "", "get_object_complement_of"], [4, 5, 1, "", "is_owl_nothing"], [4, 5, 1, "", "is_owl_thing"], [4, 6, 1, "", "reminder"], [4, 6, 1, "", "str"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLClassAxiom": [[4, 4, 1, "", "__slots__"]], "owlapy.model.OWLClassExpression": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_nnf"], [4, 5, 1, "", "get_object_complement_of"], [4, 5, 1, "", "is_owl_nothing"], [4, 5, 1, "", "is_owl_thing"]], "owlapy.model.OWLDataAllValuesFrom": [[4, 5, 1, "", "__eq__"], [4, 5, 1, "", "__hash__"], [4, 5, 1, "", "__repr__"], [4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_property"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLDataCardinalityRestriction": [[4, 5, 1, "", "__eq__"], [4, 5, 1, "", "__hash__"], [4, 5, 1, "", "__repr__"], [4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_property"]], "owlapy.model.OWLDataComplementOf": [[4, 5, 1, "", "__eq__"], [4, 5, 1, "", "__hash__"], [4, 5, 1, "", "__repr__"], [4, 5, 1, "", "get_data_range"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLDataExactCardinality": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "as_intersection_of_min_max"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLDataHasValue": [[4, 5, 1, "", "__eq__"], [4, 5, 1, "", "__hash__"], [4, 5, 1, "", "__repr__"], [4, 4, 1, "", "__slots__"], [4, 5, 1, "", "as_some_values_from"], [4, 5, 1, "", "get_property"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLDataIntersectionOf": [[4, 4, 1, "", "__slots__"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLDataMaxCardinality": [[4, 4, 1, "", "__slots__"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLDataMinCardinality": [[4, 4, 1, "", "__slots__"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLDataOneOf": [[4, 5, 1, "", "__eq__"], [4, 5, 1, "", "__hash__"], [4, 5, 1, "", "__repr__"], [4, 5, 1, "", "operands"], [4, 4, 1, "", "type_index"], [4, 5, 1, "", "values"]], "owlapy.model.OWLDataProperty": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_iri"], [4, 5, 1, "", "is_owl_top_data_property"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLDataPropertyDomainAxiom": [[4, 4, 1, "", "__slots__"]], "owlapy.model.OWLDataPropertyExpression": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "is_data_property_expression"]], "owlapy.model.OWLDataPropertyRangeAxiom": [[4, 4, 1, "", "__slots__"]], "owlapy.model.OWLDataRestriction": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "is_data_restriction"]], "owlapy.model.OWLDataSomeValuesFrom": [[4, 5, 1, "", "__eq__"], [4, 5, 1, "", "__hash__"], [4, 5, 1, "", "__repr__"], [4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_property"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLDataUnionOf": [[4, 4, 1, "", "__slots__"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLDatatype": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_iri"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLDatatypeRestriction": [[4, 5, 1, "", "__eq__"], [4, 5, 1, "", "__hash__"], [4, 5, 1, "", "__repr__"], [4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_datatype"], [4, 5, 1, "", "get_facet_restrictions"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLEntity": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "is_anonymous"], [4, 5, 1, "", "to_string_id"]], "owlapy.model.OWLEquivalentClassesAxiom": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "contains_named_equivalent_class"], [4, 5, 1, "", "contains_owl_nothing"], [4, 5, 1, "", "contains_owl_thing"], [4, 5, 1, "", "named_classes"]], "owlapy.model.OWLFacet": [[4, 4, 1, "", "FRACTION_DIGITS"], [4, 4, 1, "", "LENGTH"], [4, 4, 1, "", "MAX_EXCLUSIVE"], [4, 4, 1, "", "MAX_INCLUSIVE"], [4, 4, 1, "", "MAX_LENGTH"], [4, 4, 1, "", "MIN_EXCLUSIVE"], [4, 4, 1, "", "MIN_INCLUSIVE"], [4, 4, 1, "", "MIN_LENGTH"], [4, 4, 1, "", "PATTERN"], [4, 4, 1, "", "TOTAL_DIGITS"], [4, 5, 1, "", "from_str"], [4, 6, 1, "", "operator"], [4, 6, 1, "", "symbolic_form"]], "owlapy.model.OWLFacetRestriction": [[4, 5, 1, "", "__eq__"], [4, 5, 1, "", "__hash__"], [4, 5, 1, "", "__repr__"], [4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_facet"], [4, 5, 1, "", "get_facet_value"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLHasValueRestriction": [[4, 5, 1, "", "__eq__"], [4, 5, 1, "", "__hash__"], [4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_filler"]], "owlapy.model.OWLImportsDeclaration": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_iri"]], "owlapy.model.OWLIndividual": [[4, 4, 1, "", "__slots__"]], "owlapy.model.OWLLiteral": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "as_literal"], [4, 5, 1, "", "get_datatype"], [4, 5, 1, "", "get_literal"], [4, 5, 1, "", "is_boolean"], [4, 5, 1, "", "is_date"], [4, 5, 1, "", "is_datetime"], [4, 5, 1, "", "is_double"], [4, 5, 1, "", "is_duration"], [4, 5, 1, "", "is_integer"], [4, 5, 1, "", "is_literal"], [4, 5, 1, "", "is_string"], [4, 5, 1, "", "parse_boolean"], [4, 5, 1, "", "parse_date"], [4, 5, 1, "", "parse_datetime"], [4, 5, 1, "", "parse_double"], [4, 5, 1, "", "parse_duration"], [4, 5, 1, "", "parse_integer"], [4, 5, 1, "", "parse_string"], [4, 5, 1, "", "to_python"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLNamedIndividual": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_iri"], [4, 6, 1, "", "iri"], [4, 6, 1, "", "str"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLNaryBooleanClassExpression": [[4, 5, 1, "", "__eq__"], [4, 5, 1, "", "__hash__"], [4, 5, 1, "", "__repr__"], [4, 4, 1, "", "__slots__"], [4, 5, 1, "", "operands"]], "owlapy.model.OWLNaryDataRange": [[4, 5, 1, "", "__eq__"], [4, 5, 1, "", "__hash__"], [4, 5, 1, "", "__repr__"], [4, 4, 1, "", "__slots__"], [4, 5, 1, "", "operands"]], "owlapy.model.OWLObject": [[4, 5, 1, "", "__eq__"], [4, 5, 1, "", "__hash__"], [4, 5, 1, "", "__repr__"], [4, 4, 1, "", "__slots__"], [4, 5, 1, "", "is_anonymous"]], "owlapy.model.OWLObjectAllValuesFrom": [[4, 5, 1, "", "__eq__"], [4, 5, 1, "", "__hash__"], [4, 5, 1, "", "__repr__"], [4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_property"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLObjectCardinalityRestriction": [[4, 5, 1, "", "__eq__"], [4, 5, 1, "", "__hash__"], [4, 5, 1, "", "__repr__"], [4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_property"]], "owlapy.model.OWLObjectComplementOf": [[4, 5, 1, "", "__eq__"], [4, 5, 1, "", "__hash__"], [4, 5, 1, "", "__repr__"], [4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_operand"], [4, 5, 1, "", "operands"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLObjectExactCardinality": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "as_intersection_of_min_max"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLObjectHasSelf": [[4, 5, 1, "", "__eq__"], [4, 5, 1, "", "__hash__"], [4, 5, 1, "", "__repr__"], [4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_property"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLObjectHasValue": [[4, 5, 1, "", "__repr__"], [4, 4, 1, "", "__slots__"], [4, 5, 1, "", "as_some_values_from"], [4, 5, 1, "", "get_property"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLObjectIntersectionOf": [[4, 4, 1, "", "__slots__"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLObjectMaxCardinality": [[4, 4, 1, "", "__slots__"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLObjectMinCardinality": [[4, 4, 1, "", "__slots__"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLObjectOneOf": [[4, 5, 1, "", "__eq__"], [4, 5, 1, "", "__hash__"], [4, 5, 1, "", "__repr__"], [4, 4, 1, "", "__slots__"], [4, 5, 1, "", "as_object_union_of"], [4, 5, 1, "", "individuals"], [4, 5, 1, "", "operands"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLObjectProperty": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_inverse_property"], [4, 5, 1, "", "get_iri"], [4, 5, 1, "", "get_named_property"], [4, 6, 1, "", "iri"], [4, 5, 1, "", "is_owl_top_object_property"], [4, 6, 1, "", "str"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLObjectPropertyDomainAxiom": [[4, 4, 1, "", "__slots__"]], "owlapy.model.OWLObjectPropertyExpression": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_inverse_property"], [4, 5, 1, "", "get_named_property"], [4, 5, 1, "", "is_object_property_expression"]], "owlapy.model.OWLObjectPropertyRangeAxiom": [[4, 4, 1, "", "__slots__"]], "owlapy.model.OWLObjectRestriction": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_property"], [4, 5, 1, "", "is_object_restriction"]], "owlapy.model.OWLObjectSomeValuesFrom": [[4, 5, 1, "", "__eq__"], [4, 5, 1, "", "__hash__"], [4, 5, 1, "", "__repr__"], [4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_property"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLObjectUnionOf": [[4, 4, 1, "", "__slots__"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLOntology": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "classes_in_signature"], [4, 5, 1, "", "data_properties_in_signature"], [4, 5, 1, "", "data_property_domain_axioms"], [4, 5, 1, "", "data_property_range_axioms"], [4, 5, 1, "", "equivalent_classes_axioms"], [4, 5, 1, "", "general_class_axioms"], [4, 5, 1, "", "get_ontology_id"], [4, 5, 1, "", "get_owl_ontology_manager"], [4, 5, 1, "", "individuals_in_signature"], [4, 5, 1, "", "is_anonymous"], [4, 5, 1, "", "object_properties_in_signature"], [4, 5, 1, "", "object_property_domain_axioms"], [4, 5, 1, "", "object_property_range_axioms"], [4, 4, 1, "", "type_index"]], "owlapy.model.OWLOntologyChange": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_ontology"]], "owlapy.model.OWLOntologyID": [[4, 5, 1, "", "__eq__"], [4, 5, 1, "", "__repr__"], [4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_default_document_iri"], [4, 5, 1, "", "get_ontology_iri"], [4, 5, 1, "", "get_version_iri"], [4, 5, 1, "", "is_anonymous"]], "owlapy.model.OWLOntologyManager": [[4, 5, 1, "", "add_axiom"], [4, 5, 1, "", "apply_change"], [4, 5, 1, "", "create_ontology"], [4, 5, 1, "", "load_ontology"], [4, 5, 1, "", "remove_axiom"], [4, 5, 1, "", "save_ontology"]], "owlapy.model.OWLProperty": [[4, 4, 1, "", "__slots__"]], "owlapy.model.OWLPropertyExpression": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "is_data_property_expression"], [4, 5, 1, "", "is_object_property_expression"], [4, 5, 1, "", "is_owl_top_data_property"], [4, 5, 1, "", "is_owl_top_object_property"]], "owlapy.model.OWLQuantifiedDataRestriction": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_filler"]], "owlapy.model.OWLQuantifiedObjectRestriction": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_filler"]], "owlapy.model.OWLQuantifiedRestriction": [[4, 4, 1, "", "__slots__"]], "owlapy.model.OWLRDFVocabulary": [[4, 4, 1, "", "OWL_BOTTOM_DATA_PROPERTY"], [4, 4, 1, "", "OWL_BOTTOM_OBJECT_PROPERTY"], [4, 4, 1, "", "OWL_CLASS"], [4, 4, 1, "", "OWL_NAMED_INDIVIDUAL"], [4, 4, 1, "", "OWL_NOTHING"], [4, 4, 1, "", "OWL_THING"], [4, 4, 1, "", "OWL_TOP_DATA_PROPERTY"], [4, 4, 1, "", "OWL_TOP_OBJECT_PROPERTY"], [4, 4, 1, "", "RDFS_LITERAL"]], "owlapy.model.OWLReasoner": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "data_property_domains"], [4, 5, 1, "", "data_property_values"], [4, 5, 1, "", "different_individuals"], [4, 5, 1, "", "disjoint_classes"], [4, 5, 1, "", "disjoint_data_properties"], [4, 5, 1, "", "disjoint_object_properties"], [4, 5, 1, "", "equivalent_classes"], [4, 5, 1, "", "equivalent_data_properties"], [4, 5, 1, "", "equivalent_object_properties"], [4, 5, 1, "", "flush"], [4, 5, 1, "", "get_root_ontology"], [4, 5, 1, "", "instances"], [4, 5, 1, "", "is_isolated"], [4, 5, 1, "", "is_using_triplestore"], [4, 5, 1, "", "object_property_domains"], [4, 5, 1, "", "object_property_ranges"], [4, 5, 1, "", "object_property_values"], [4, 5, 1, "", "same_individuals"], [4, 5, 1, "", "sub_classes"], [4, 5, 1, "", "sub_data_properties"], [4, 5, 1, "", "sub_object_properties"], [4, 5, 1, "", "super_classes"], [4, 5, 1, "", "super_data_properties"], [4, 5, 1, "", "super_object_properties"], [4, 5, 1, "", "types"]], "owlapy.model.OWLRestriction": [[4, 4, 1, "", "__slots__"], [4, 5, 1, "", "get_property"], [4, 5, 1, "", "is_data_restriction"], [4, 5, 1, "", "is_object_restriction"]], "owlapy.model.XSDVocabulary": [[4, 4, 1, "", "BOOLEAN"], [4, 4, 1, "", "DATE"], [4, 4, 1, "", "DATE_TIME"], [4, 4, 1, "", "DATE_TIME_STAMP"], [4, 4, 1, "", "DECIMAL"], [4, 4, 1, "", "DOUBLE"], [4, 4, 1, "", "DURATION"], [4, 4, 1, "", "FLOAT"], [4, 4, 1, "", "INTEGER"], [4, 4, 1, "", "LONG"], [4, 4, 1, "", "STRING"]], "owlapy.model.providers": [[5, 2, 1, "", "OWLDatatypeMaxExclusiveRestriction"], [5, 2, 1, "", "OWLDatatypeMaxInclusiveRestriction"], [5, 2, 1, "", "OWLDatatypeMinExclusiveRestriction"], [5, 2, 1, "", "OWLDatatypeMinInclusiveRestriction"], [5, 2, 1, "", "OWLDatatypeMinMaxExclusiveRestriction"], [5, 2, 1, "", "OWLDatatypeMinMaxInclusiveRestriction"], [5, 1, 1, "", "Restriction_Literals"]], "owlapy.namespaces": [[6, 3, 1, "", "Namespaces"], [6, 1, 1, "", "OWL"], [6, 1, 1, "", "RDF"], [6, 1, 1, "", "RDFS"], [6, 1, 1, "", "XSD"]], "owlapy.namespaces.Namespaces": [[6, 5, 1, "", "__eq__"], [6, 5, 1, "", "__hash__"], [6, 5, 1, "", "__repr__"], [6, 4, 1, "", "__slots__"], [6, 6, 1, "", "ns"], [6, 6, 1, "", "prefix"]], "owlapy.owl2sparql": [[7, 0, 0, "-", "converter"]], "owlapy.owl2sparql.converter": [[7, 3, 1, "", "Owl2SparqlConverter"], [7, 3, 1, "", "VariablesMapping"], [7, 1, 1, "", "converter"], [7, 2, 1, "", "owl_expression_to_sparql"], [7, 2, 1, "", "peek"]], "owlapy.owl2sparql.converter.Owl2SparqlConverter": [[7, 4, 1, "", "__slots__"], [7, 5, 1, "", "append"], [7, 5, 1, "", "append_triple"], [7, 5, 1, "", "as_query"], [7, 4, 1, "", "ce"], [7, 4, 1, "", "cnt"], [7, 5, 1, "", "convert"], [7, 6, 1, "", "current_variable"], [7, 4, 1, "", "grouping_vars"], [7, 4, 1, "", "having_conditions"], [7, 4, 1, "", "mapping"], [7, 6, 1, "", "modal_depth"], [7, 5, 1, "", "new_count_var"], [7, 4, 1, "", "parent"], [7, 4, 1, "", "parent_var"], [7, 5, 1, "", "process"], [7, 4, 1, "", "properties"], [7, 5, 1, "", "render"], [7, 4, 1, "", "sparql"], [7, 5, 1, "", "stack_parent"], [7, 5, 1, "", "stack_variable"], [7, 5, 1, "", "triple"], [7, 4, 1, "", "variable_entities"], [7, 4, 1, "", "variables"]], "owlapy.owl2sparql.converter.VariablesMapping": [[7, 5, 1, "", "__contains__"], [7, 5, 1, "", "__getitem__"], [7, 4, 1, "", "__slots__"], [7, 5, 1, "", "get_variable"], [7, 5, 1, "", "new_individual_variable"], [7, 5, 1, "", "new_property_variable"]], "owlapy.owl_annotation": [[9, 3, 1, "", "OWLAnnotationObject"], [9, 3, 1, "", "OWLAnnotationSubject"], [9, 3, 1, "", "OWLAnnotationValue"]], "owlapy.owl_annotation.OWLAnnotationObject": [[9, 4, 1, "", "__slots__"], [9, 5, 1, "", "as_anonymous_individual"], [9, 5, 1, "", "as_iri"]], "owlapy.owl_annotation.OWLAnnotationSubject": [[9, 4, 1, "", "__slots__"]], "owlapy.owl_annotation.OWLAnnotationValue": [[9, 4, 1, "", "__slots__"], [9, 5, 1, "", "as_literal"], [9, 5, 1, "", "is_literal"]], "owlapy.owl_axiom": [[10, 3, 1, "", "OWLAnnotation"], [10, 3, 1, "", "OWLAnnotationAssertionAxiom"], [10, 3, 1, "", "OWLAnnotationAxiom"], [10, 3, 1, "", "OWLAnnotationProperty"], [10, 3, 1, "", "OWLAnnotationPropertyDomainAxiom"], [10, 3, 1, "", "OWLAnnotationPropertyRangeAxiom"], [10, 3, 1, "", "OWLAsymmetricObjectPropertyAxiom"], [10, 3, 1, "", "OWLAxiom"], [10, 3, 1, "", "OWLClassAssertionAxiom"], [10, 3, 1, "", "OWLClassAxiom"], [10, 3, 1, "", "OWLDataPropertyAssertionAxiom"], [10, 3, 1, "", "OWLDataPropertyAxiom"], [10, 3, 1, "", "OWLDataPropertyCharacteristicAxiom"], [10, 3, 1, "", "OWLDataPropertyDomainAxiom"], [10, 3, 1, "", "OWLDataPropertyRangeAxiom"], [10, 3, 1, "", "OWLDatatypeDefinitionAxiom"], [10, 3, 1, "", "OWLDeclarationAxiom"], [10, 3, 1, "", "OWLDifferentIndividualsAxiom"], [10, 3, 1, "", "OWLDisjointClassesAxiom"], [10, 3, 1, "", "OWLDisjointDataPropertiesAxiom"], [10, 3, 1, "", "OWLDisjointObjectPropertiesAxiom"], [10, 3, 1, "", "OWLDisjointUnionAxiom"], [10, 3, 1, "", "OWLEquivalentClassesAxiom"], [10, 3, 1, "", "OWLEquivalentDataPropertiesAxiom"], [10, 3, 1, "", "OWLEquivalentObjectPropertiesAxiom"], [10, 3, 1, "", "OWLFunctionalDataPropertyAxiom"], [10, 3, 1, "", "OWLFunctionalObjectPropertyAxiom"], [10, 3, 1, "", "OWLHasKeyAxiom"], [10, 3, 1, "", "OWLIndividualAxiom"], [10, 3, 1, "", "OWLInverseFunctionalObjectPropertyAxiom"], [10, 3, 1, "", "OWLInverseObjectPropertiesAxiom"], [10, 3, 1, "", "OWLIrreflexiveObjectPropertyAxiom"], [10, 3, 1, "", "OWLLogicalAxiom"], [10, 3, 1, "", "OWLNaryAxiom"], [10, 3, 1, "", "OWLNaryClassAxiom"], [10, 3, 1, "", "OWLNaryIndividualAxiom"], [10, 3, 1, "", "OWLNaryPropertyAxiom"], [10, 3, 1, "", "OWLNegativeDataPropertyAssertionAxiom"], [10, 3, 1, "", "OWLNegativeObjectPropertyAssertionAxiom"], [10, 3, 1, "", "OWLObjectPropertyAssertionAxiom"], [10, 3, 1, "", "OWLObjectPropertyAxiom"], [10, 3, 1, "", "OWLObjectPropertyCharacteristicAxiom"], [10, 3, 1, "", "OWLObjectPropertyDomainAxiom"], [10, 3, 1, "", "OWLObjectPropertyRangeAxiom"], [10, 3, 1, "", "OWLPropertyAssertionAxiom"], [10, 3, 1, "", "OWLPropertyAxiom"], [10, 3, 1, "", "OWLPropertyDomainAxiom"], [10, 3, 1, "", "OWLPropertyRangeAxiom"], [10, 3, 1, "", "OWLReflexiveObjectPropertyAxiom"], [10, 3, 1, "", "OWLSameIndividualAxiom"], [10, 3, 1, "", "OWLSubAnnotationPropertyOfAxiom"], [10, 3, 1, "", "OWLSubClassOfAxiom"], [10, 3, 1, "", "OWLSubDataPropertyOfAxiom"], [10, 3, 1, "", "OWLSubObjectPropertyOfAxiom"], [10, 3, 1, "", "OWLSubPropertyAxiom"], [10, 3, 1, "", "OWLSymmetricObjectPropertyAxiom"], [10, 3, 1, "", "OWLTransitiveObjectPropertyAxiom"], [10, 3, 1, "", "OWLUnaryPropertyAxiom"]], "owlapy.owl_axiom.OWLAnnotation": [[10, 5, 1, "", "__eq__"], [10, 5, 1, "", "__hash__"], [10, 5, 1, "", "__repr__"], [10, 4, 1, "", "__slots__"], [10, 5, 1, "", "get_property"], [10, 5, 1, "", "get_value"]], "owlapy.owl_axiom.OWLAnnotationAssertionAxiom": [[10, 5, 1, "", "__eq__"], [10, 5, 1, "", "__hash__"], [10, 5, 1, "", "__repr__"], [10, 4, 1, "", "__slots__"], [10, 5, 1, "", "get_property"], [10, 5, 1, "", "get_subject"], [10, 5, 1, "", "get_value"]], "owlapy.owl_axiom.OWLAnnotationAxiom": [[10, 4, 1, "", "__slots__"], [10, 5, 1, "", "is_annotation_axiom"]], "owlapy.owl_axiom.OWLAnnotationProperty": [[10, 4, 1, "", "__slots__"], [10, 5, 1, "", "get_iri"]], "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom": [[10, 5, 1, "", "__eq__"], [10, 5, 1, "", "__hash__"], [10, 5, 1, "", "__repr__"], [10, 4, 1, "", "__slots__"], [10, 5, 1, "", "get_domain"], [10, 5, 1, "", "get_property"]], "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom": [[10, 5, 1, "", "__eq__"], [10, 5, 1, "", "__hash__"], [10, 5, 1, "", "__repr__"], [10, 4, 1, "", "__slots__"], [10, 5, 1, "", "get_property"], [10, 5, 1, "", "get_range"]], "owlapy.owl_axiom.OWLAsymmetricObjectPropertyAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLAxiom": [[10, 4, 1, "", "__slots__"], [10, 5, 1, "", "annotations"], [10, 5, 1, "", "is_annotated"], [10, 5, 1, "", "is_annotation_axiom"], [10, 5, 1, "", "is_logical_axiom"]], "owlapy.owl_axiom.OWLClassAssertionAxiom": [[10, 5, 1, "", "__eq__"], [10, 5, 1, "", "__hash__"], [10, 5, 1, "", "__repr__"], [10, 4, 1, "", "__slots__"], [10, 5, 1, "", "get_class_expression"], [10, 5, 1, "", "get_individual"]], "owlapy.owl_axiom.OWLClassAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyAssertionAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom": [[10, 5, 1, "", "__eq__"], [10, 5, 1, "", "__hash__"], [10, 5, 1, "", "__repr__"], [10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyDomainAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyRangeAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom": [[10, 5, 1, "", "__eq__"], [10, 5, 1, "", "__hash__"], [10, 5, 1, "", "__repr__"], [10, 4, 1, "", "__slots__"], [10, 5, 1, "", "get_datarange"], [10, 5, 1, "", "get_datatype"]], "owlapy.owl_axiom.OWLDeclarationAxiom": [[10, 5, 1, "", "__eq__"], [10, 5, 1, "", "__hash__"], [10, 5, 1, "", "__repr__"], [10, 4, 1, "", "__slots__"], [10, 5, 1, "", "get_entity"]], "owlapy.owl_axiom.OWLDifferentIndividualsAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDisjointClassesAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDisjointDataPropertiesAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDisjointObjectPropertiesAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDisjointUnionAxiom": [[10, 5, 1, "", "__eq__"], [10, 5, 1, "", "__hash__"], [10, 5, 1, "", "__repr__"], [10, 4, 1, "", "__slots__"], [10, 5, 1, "", "get_class_expressions"], [10, 5, 1, "", "get_owl_class"], [10, 5, 1, "", "get_owl_disjoint_classes_axiom"], [10, 5, 1, "", "get_owl_equivalent_classes_axiom"]], "owlapy.owl_axiom.OWLEquivalentClassesAxiom": [[10, 4, 1, "", "__slots__"], [10, 5, 1, "", "contains_named_equivalent_class"], [10, 5, 1, "", "contains_owl_nothing"], [10, 5, 1, "", "contains_owl_thing"], [10, 5, 1, "", "named_classes"]], "owlapy.owl_axiom.OWLEquivalentDataPropertiesAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLEquivalentObjectPropertiesAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLFunctionalDataPropertyAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLFunctionalObjectPropertyAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLHasKeyAxiom": [[10, 5, 1, "", "__eq__"], [10, 5, 1, "", "__hash__"], [10, 5, 1, "", "__repr__"], [10, 4, 1, "", "__slots__"], [10, 5, 1, "", "get_class_expression"], [10, 5, 1, "", "get_property_expressions"], [10, 5, 1, "", "operands"]], "owlapy.owl_axiom.OWLIndividualAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLInverseFunctionalObjectPropertyAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom": [[10, 5, 1, "", "__repr__"], [10, 4, 1, "", "__slots__"], [10, 5, 1, "", "get_first_property"], [10, 5, 1, "", "get_second_property"]], "owlapy.owl_axiom.OWLIrreflexiveObjectPropertyAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLLogicalAxiom": [[10, 4, 1, "", "__slots__"], [10, 5, 1, "", "is_logical_axiom"]], "owlapy.owl_axiom.OWLNaryAxiom": [[10, 4, 1, "", "__slots__"], [10, 5, 1, "", "as_pairwise_axioms"]], "owlapy.owl_axiom.OWLNaryClassAxiom": [[10, 5, 1, "", "__eq__"], [10, 5, 1, "", "__hash__"], [10, 5, 1, "", "__repr__"], [10, 4, 1, "", "__slots__"], [10, 5, 1, "", "as_pairwise_axioms"], [10, 5, 1, "", "class_expressions"]], "owlapy.owl_axiom.OWLNaryIndividualAxiom": [[10, 5, 1, "", "__eq__"], [10, 5, 1, "", "__hash__"], [10, 5, 1, "", "__repr__"], [10, 4, 1, "", "__slots__"], [10, 5, 1, "", "as_pairwise_axioms"], [10, 5, 1, "", "individuals"]], "owlapy.owl_axiom.OWLNaryPropertyAxiom": [[10, 5, 1, "", "__eq__"], [10, 5, 1, "", "__hash__"], [10, 5, 1, "", "__repr__"], [10, 4, 1, "", "__slots__"], [10, 5, 1, "", "as_pairwise_axioms"], [10, 5, 1, "", "properties"]], "owlapy.owl_axiom.OWLNegativeDataPropertyAssertionAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLNegativeObjectPropertyAssertionAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyAssertionAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom": [[10, 5, 1, "", "__eq__"], [10, 5, 1, "", "__hash__"], [10, 5, 1, "", "__repr__"], [10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyDomainAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyRangeAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLPropertyAssertionAxiom": [[10, 5, 1, "", "__eq__"], [10, 5, 1, "", "__hash__"], [10, 5, 1, "", "__repr__"], [10, 4, 1, "", "__slots__"], [10, 5, 1, "", "get_object"], [10, 5, 1, "", "get_property"], [10, 5, 1, "", "get_subject"]], "owlapy.owl_axiom.OWLPropertyAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLPropertyDomainAxiom": [[10, 5, 1, "", "__eq__"], [10, 5, 1, "", "__hash__"], [10, 5, 1, "", "__repr__"], [10, 4, 1, "", "__slots__"], [10, 5, 1, "", "get_domain"]], "owlapy.owl_axiom.OWLPropertyRangeAxiom": [[10, 5, 1, "", "__eq__"], [10, 5, 1, "", "__hash__"], [10, 5, 1, "", "__repr__"], [10, 4, 1, "", "__slots__"], [10, 5, 1, "", "get_range"]], "owlapy.owl_axiom.OWLReflexiveObjectPropertyAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLSameIndividualAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom": [[10, 5, 1, "", "__eq__"], [10, 5, 1, "", "__hash__"], [10, 5, 1, "", "__repr__"], [10, 4, 1, "", "__slots__"], [10, 5, 1, "", "get_sub_property"], [10, 5, 1, "", "get_super_property"]], "owlapy.owl_axiom.OWLSubClassOfAxiom": [[10, 5, 1, "", "__eq__"], [10, 5, 1, "", "__hash__"], [10, 5, 1, "", "__repr__"], [10, 4, 1, "", "__slots__"], [10, 5, 1, "", "get_sub_class"], [10, 5, 1, "", "get_super_class"]], "owlapy.owl_axiom.OWLSubDataPropertyOfAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLSubObjectPropertyOfAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLSubPropertyAxiom": [[10, 5, 1, "", "__eq__"], [10, 5, 1, "", "__hash__"], [10, 5, 1, "", "__repr__"], [10, 4, 1, "", "__slots__"], [10, 5, 1, "", "get_sub_property"], [10, 5, 1, "", "get_super_property"]], "owlapy.owl_axiom.OWLSymmetricObjectPropertyAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLTransitiveObjectPropertyAxiom": [[10, 4, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLUnaryPropertyAxiom": [[10, 4, 1, "", "__slots__"], [10, 5, 1, "", "get_property"]], "owlapy.owl_class_expression": [[11, 3, 1, "", "OWLAnonymousClassExpression"], [11, 3, 1, "", "OWLBooleanClassExpression"], [11, 3, 1, "", "OWLClass"], [11, 3, 1, "", "OWLClassExpression"], [11, 3, 1, "", "OWLNaryBooleanClassExpression"], [11, 3, 1, "", "OWLObjectComplementOf"], [11, 3, 1, "", "OWLObjectIntersectionOf"], [11, 3, 1, "", "OWLObjectUnionOf"]], "owlapy.owl_class_expression.OWLAnonymousClassExpression": [[11, 5, 1, "", "get_nnf"], [11, 5, 1, "", "get_object_complement_of"], [11, 5, 1, "", "is_owl_nothing"], [11, 5, 1, "", "is_owl_thing"]], "owlapy.owl_class_expression.OWLBooleanClassExpression": [[11, 4, 1, "", "__slots__"]], "owlapy.owl_class_expression.OWLClass": [[11, 4, 1, "", "__slots__"], [11, 5, 1, "", "get_iri"], [11, 5, 1, "", "get_nnf"], [11, 5, 1, "", "get_object_complement_of"], [11, 5, 1, "", "is_owl_nothing"], [11, 5, 1, "", "is_owl_thing"], [11, 6, 1, "", "reminder"], [11, 6, 1, "", "str"], [11, 4, 1, "", "type_index"]], "owlapy.owl_class_expression.OWLClassExpression": [[11, 4, 1, "", "__slots__"], [11, 5, 1, "", "get_nnf"], [11, 5, 1, "", "get_object_complement_of"], [11, 5, 1, "", "is_owl_nothing"], [11, 5, 1, "", "is_owl_thing"]], "owlapy.owl_class_expression.OWLNaryBooleanClassExpression": [[11, 5, 1, "", "__eq__"], [11, 5, 1, "", "__hash__"], [11, 5, 1, "", "__repr__"], [11, 4, 1, "", "__slots__"], [11, 5, 1, "", "operands"]], "owlapy.owl_class_expression.OWLObjectComplementOf": [[11, 5, 1, "", "__eq__"], [11, 5, 1, "", "__hash__"], [11, 5, 1, "", "__repr__"], [11, 4, 1, "", "__slots__"], [11, 5, 1, "", "get_operand"], [11, 5, 1, "", "operands"], [11, 4, 1, "", "type_index"]], "owlapy.owl_class_expression.OWLObjectIntersectionOf": [[11, 4, 1, "", "__slots__"], [11, 4, 1, "", "type_index"]], "owlapy.owl_class_expression.OWLObjectUnionOf": [[11, 4, 1, "", "__slots__"], [11, 4, 1, "", "type_index"]], "owlapy.owl_data": [[12, 3, 1, "", "OWLDataComplementOf"], [12, 3, 1, "", "OWLDataHasValue"], [12, 3, 1, "", "OWLDataIntersectionOf"], [12, 3, 1, "", "OWLDataMaxCardinality"], [12, 3, 1, "", "OWLDataMinCardinality"], [12, 3, 1, "", "OWLDataOneOf"], [12, 3, 1, "", "OWLDataSomeValuesFrom"], [12, 3, 1, "", "OWLDataUnionOf"], [12, 3, 1, "", "OWLNaryDataRange"]], "owlapy.owl_data.OWLDataComplementOf": [[12, 5, 1, "", "__eq__"], [12, 5, 1, "", "__hash__"], [12, 5, 1, "", "__repr__"], [12, 5, 1, "", "get_data_range"], [12, 4, 1, "", "type_index"]], "owlapy.owl_data.OWLDataHasValue": [[12, 5, 1, "", "__eq__"], [12, 5, 1, "", "__hash__"], [12, 5, 1, "", "__repr__"], [12, 4, 1, "", "__slots__"], [12, 5, 1, "", "as_some_values_from"], [12, 5, 1, "", "get_property"], [12, 4, 1, "", "type_index"]], "owlapy.owl_data.OWLDataIntersectionOf": [[12, 4, 1, "", "__slots__"], [12, 4, 1, "", "type_index"]], "owlapy.owl_data.OWLDataMaxCardinality": [[12, 4, 1, "", "__slots__"], [12, 4, 1, "", "type_index"]], "owlapy.owl_data.OWLDataMinCardinality": [[12, 4, 1, "", "__slots__"], [12, 4, 1, "", "type_index"]], "owlapy.owl_data.OWLDataOneOf": [[12, 5, 1, "", "__eq__"], [12, 5, 1, "", "__hash__"], [12, 5, 1, "", "__repr__"], [12, 5, 1, "", "operands"], [12, 4, 1, "", "type_index"], [12, 5, 1, "", "values"]], "owlapy.owl_data.OWLDataSomeValuesFrom": [[12, 5, 1, "", "__eq__"], [12, 5, 1, "", "__hash__"], [12, 5, 1, "", "__repr__"], [12, 4, 1, "", "__slots__"], [12, 5, 1, "", "get_property"], [12, 4, 1, "", "type_index"]], "owlapy.owl_data.OWLDataUnionOf": [[12, 4, 1, "", "__slots__"], [12, 4, 1, "", "type_index"]], "owlapy.owl_data.OWLNaryDataRange": [[12, 5, 1, "", "__eq__"], [12, 5, 1, "", "__hash__"], [12, 5, 1, "", "__repr__"], [12, 4, 1, "", "__slots__"], [12, 5, 1, "", "operands"]], "owlapy.owl_individual": [[13, 3, 1, "", "OWLIndividual"], [13, 3, 1, "", "OWLNamedIndividual"]], "owlapy.owl_individual.OWLIndividual": [[13, 4, 1, "", "__slots__"]], "owlapy.owl_individual.OWLNamedIndividual": [[13, 4, 1, "", "__slots__"], [13, 5, 1, "", "get_iri"], [13, 6, 1, "", "iri"], [13, 6, 1, "", "str"], [13, 4, 1, "", "type_index"]], "owlapy.owl_literal": [[14, 1, 1, "", "BooleanOWLDatatype"], [14, 1, 1, "", "DateOWLDatatype"], [14, 1, 1, "", "DateTimeOWLDatatype"], [14, 1, 1, "", "DoubleOWLDatatype"], [14, 1, 1, "", "DurationOWLDatatype"], [14, 1, 1, "", "IntegerOWLDatatype"], [14, 1, 1, "", "Literals"], [14, 1, 1, "", "NUMERIC_DATATYPES"], [14, 1, 1, "", "OWLBottomDataProperty"], [14, 1, 1, "", "OWLBottomObjectProperty"], [14, 3, 1, "", "OWLLiteral"], [14, 1, 1, "", "OWLNothing"], [14, 1, 1, "", "OWLThing"], [14, 1, 1, "", "OWLTopDataProperty"], [14, 1, 1, "", "OWLTopObjectProperty"], [14, 1, 1, "", "StringOWLDatatype"], [14, 1, 1, "", "TIME_DATATYPES"], [14, 1, 1, "", "TopOWLDatatype"]], "owlapy.owl_literal.OWLLiteral": [[14, 4, 1, "", "__slots__"], [14, 5, 1, "", "as_literal"], [14, 5, 1, "", "get_datatype"], [14, 5, 1, "", "get_literal"], [14, 5, 1, "", "is_boolean"], [14, 5, 1, "", "is_date"], [14, 5, 1, "", "is_datetime"], [14, 5, 1, "", "is_double"], [14, 5, 1, "", "is_duration"], [14, 5, 1, "", "is_integer"], [14, 5, 1, "", "is_literal"], [14, 5, 1, "", "is_string"], [14, 5, 1, "", "parse_boolean"], [14, 5, 1, "", "parse_date"], [14, 5, 1, "", "parse_datetime"], [14, 5, 1, "", "parse_double"], [14, 5, 1, "", "parse_duration"], [14, 5, 1, "", "parse_integer"], [14, 5, 1, "", "parse_string"], [14, 5, 1, "", "to_python"], [14, 4, 1, "", "type_index"]], "owlapy.owl_property": [[15, 3, 1, "", "OWLDataProperty"], [15, 3, 1, "", "OWLDataPropertyExpression"], [15, 3, 1, "", "OWLObjectInverseOf"], [15, 3, 1, "", "OWLObjectProperty"], [15, 3, 1, "", "OWLObjectPropertyExpression"], [15, 3, 1, "", "OWLProperty"], [15, 3, 1, "", "OWLPropertyExpression"]], "owlapy.owl_property.OWLDataProperty": [[15, 4, 1, "", "__slots__"], [15, 5, 1, "", "get_iri"], [15, 5, 1, "", "is_owl_top_data_property"], [15, 4, 1, "", "type_index"]], "owlapy.owl_property.OWLDataPropertyExpression": [[15, 4, 1, "", "__slots__"], [15, 5, 1, "", "is_data_property_expression"]], "owlapy.owl_property.OWLObjectInverseOf": [[15, 5, 1, "", "__eq__"], [15, 5, 1, "", "__hash__"], [15, 5, 1, "", "__repr__"], [15, 4, 1, "", "__slots__"], [15, 5, 1, "", "get_inverse"], [15, 5, 1, "", "get_inverse_property"], [15, 5, 1, "", "get_named_property"], [15, 4, 1, "", "type_index"]], "owlapy.owl_property.OWLObjectProperty": [[15, 4, 1, "", "__slots__"], [15, 5, 1, "", "get_inverse_property"], [15, 5, 1, "", "get_iri"], [15, 5, 1, "", "get_named_property"], [15, 6, 1, "", "iri"], [15, 5, 1, "", "is_owl_top_object_property"], [15, 6, 1, "", "str"], [15, 4, 1, "", "type_index"]], "owlapy.owl_property.OWLObjectPropertyExpression": [[15, 4, 1, "", "__slots__"], [15, 5, 1, "", "get_inverse_property"], [15, 5, 1, "", "get_named_property"], [15, 5, 1, "", "is_object_property_expression"]], "owlapy.owl_property.OWLProperty": [[15, 4, 1, "", "__slots__"]], "owlapy.owl_property.OWLPropertyExpression": [[15, 4, 1, "", "__slots__"], [15, 5, 1, "", "is_data_property_expression"], [15, 5, 1, "", "is_object_property_expression"], [15, 5, 1, "", "is_owl_top_data_property"], [15, 5, 1, "", "is_owl_top_object_property"]], "owlapy.owl_restriction": [[16, 3, 1, "", "OWLCardinalityRestriction"], [16, 3, 1, "", "OWLDataAllValuesFrom"], [16, 3, 1, "", "OWLDataCardinalityRestriction"], [16, 3, 1, "", "OWLDataExactCardinality"], [16, 3, 1, "", "OWLDataRestriction"], [16, 3, 1, "", "OWLHasValueRestriction"], [16, 3, 1, "", "OWLObjectAllValuesFrom"], [16, 3, 1, "", "OWLObjectCardinalityRestriction"], [16, 3, 1, "", "OWLObjectExactCardinality"], [16, 3, 1, "", "OWLObjectHasSelf"], [16, 3, 1, "", "OWLObjectMaxCardinality"], [16, 3, 1, "", "OWLObjectMinCardinality"], [16, 3, 1, "", "OWLObjectRestriction"], [16, 3, 1, "", "OWLObjectSomeValuesFrom"], [16, 3, 1, "", "OWLQuantifiedDataRestriction"], [16, 3, 1, "", "OWLQuantifiedObjectRestriction"], [16, 3, 1, "", "OWLQuantifiedRestriction"], [16, 3, 1, "", "OWLRestriction"]], "owlapy.owl_restriction.OWLCardinalityRestriction": [[16, 4, 1, "", "__slots__"], [16, 5, 1, "", "get_cardinality"], [16, 5, 1, "", "get_filler"]], "owlapy.owl_restriction.OWLDataAllValuesFrom": [[16, 5, 1, "", "__eq__"], [16, 5, 1, "", "__hash__"], [16, 5, 1, "", "__repr__"], [16, 4, 1, "", "__slots__"], [16, 5, 1, "", "get_property"], [16, 4, 1, "", "type_index"]], "owlapy.owl_restriction.OWLDataCardinalityRestriction": [[16, 5, 1, "", "__eq__"], [16, 5, 1, "", "__hash__"], [16, 5, 1, "", "__repr__"], [16, 4, 1, "", "__slots__"], [16, 5, 1, "", "get_property"]], "owlapy.owl_restriction.OWLDataExactCardinality": [[16, 4, 1, "", "__slots__"], [16, 5, 1, "", "as_intersection_of_min_max"], [16, 4, 1, "", "type_index"]], "owlapy.owl_restriction.OWLDataRestriction": [[16, 4, 1, "", "__slots__"], [16, 5, 1, "", "is_data_restriction"]], "owlapy.owl_restriction.OWLHasValueRestriction": [[16, 5, 1, "", "__eq__"], [16, 5, 1, "", "__hash__"], [16, 4, 1, "", "__slots__"], [16, 5, 1, "", "get_filler"]], "owlapy.owl_restriction.OWLObjectAllValuesFrom": [[16, 5, 1, "", "__eq__"], [16, 5, 1, "", "__hash__"], [16, 5, 1, "", "__repr__"], [16, 4, 1, "", "__slots__"], [16, 5, 1, "", "get_property"], [16, 4, 1, "", "type_index"]], "owlapy.owl_restriction.OWLObjectCardinalityRestriction": [[16, 5, 1, "", "__eq__"], [16, 5, 1, "", "__hash__"], [16, 5, 1, "", "__repr__"], [16, 4, 1, "", "__slots__"], [16, 5, 1, "", "get_property"]], "owlapy.owl_restriction.OWLObjectExactCardinality": [[16, 4, 1, "", "__slots__"], [16, 5, 1, "", "as_intersection_of_min_max"], [16, 4, 1, "", "type_index"]], "owlapy.owl_restriction.OWLObjectHasSelf": [[16, 5, 1, "", "__eq__"], [16, 5, 1, "", "__hash__"], [16, 5, 1, "", "__repr__"], [16, 4, 1, "", "__slots__"], [16, 5, 1, "", "get_property"], [16, 4, 1, "", "type_index"]], "owlapy.owl_restriction.OWLObjectMaxCardinality": [[16, 4, 1, "", "__slots__"], [16, 4, 1, "", "type_index"]], "owlapy.owl_restriction.OWLObjectMinCardinality": [[16, 4, 1, "", "__slots__"], [16, 4, 1, "", "type_index"]], "owlapy.owl_restriction.OWLObjectRestriction": [[16, 4, 1, "", "__slots__"], [16, 5, 1, "", "get_property"], [16, 5, 1, "", "is_object_restriction"]], "owlapy.owl_restriction.OWLObjectSomeValuesFrom": [[16, 5, 1, "", "__eq__"], [16, 5, 1, "", "__hash__"], [16, 5, 1, "", "__repr__"], [16, 4, 1, "", "__slots__"], [16, 5, 1, "", "get_property"], [16, 4, 1, "", "type_index"]], "owlapy.owl_restriction.OWLQuantifiedDataRestriction": [[16, 4, 1, "", "__slots__"], [16, 5, 1, "", "get_filler"]], "owlapy.owl_restriction.OWLQuantifiedObjectRestriction": [[16, 4, 1, "", "__slots__"], [16, 5, 1, "", "get_filler"]], "owlapy.owl_restriction.OWLQuantifiedRestriction": [[16, 4, 1, "", "__slots__"]], "owlapy.owl_restriction.OWLRestriction": [[16, 4, 1, "", "__slots__"], [16, 5, 1, "", "get_property"], [16, 5, 1, "", "is_data_restriction"], [16, 5, 1, "", "is_object_restriction"]], "owlapy.owlobject": [[17, 3, 1, "", "OWLEntity"], [17, 3, 1, "", "OWLNamedObject"], [17, 3, 1, "", "OWLObject"], [17, 3, 1, "", "OWLObjectParser"], [17, 3, 1, "", "OWLObjectRenderer"]], "owlapy.owlobject.OWLEntity": [[17, 4, 1, "", "__slots__"], [17, 5, 1, "", "is_anonymous"], [17, 5, 1, "", "to_string_id"]], "owlapy.owlobject.OWLNamedObject": [[17, 5, 1, "", "__eq__"], [17, 5, 1, "", "__hash__"], [17, 5, 1, "", "__lt__"], [17, 5, 1, "", "__repr__"], [17, 4, 1, "", "__slots__"]], "owlapy.owlobject.OWLObject": [[17, 5, 1, "", "__eq__"], [17, 5, 1, "", "__hash__"], [17, 5, 1, "", "__repr__"], [17, 4, 1, "", "__slots__"], [17, 5, 1, "", "is_anonymous"]], "owlapy.owlobject.OWLObjectParser": [[17, 5, 1, "", "parse_expression"]], "owlapy.owlobject.OWLObjectRenderer": [[17, 5, 1, "", "render"], [17, 5, 1, "", "set_short_form_provider"]], "owlapy.parser": [[18, 3, 1, "", "DLSyntaxParser"], [18, 1, 1, "", "DL_GRAMMAR"], [18, 1, 1, "", "DLparser"], [18, 1, 1, "", "MANCHESTER_GRAMMAR"], [18, 3, 1, "", "ManchesterOWLSyntaxParser"], [18, 1, 1, "", "ManchesterParser"], [18, 2, 1, "", "dl_to_owl_expression"], [18, 2, 1, "", "manchester_to_owl_expression"]], "owlapy.parser.DLSyntaxParser": [[18, 5, 1, "", "generic_visit"], [18, 4, 1, "", "ns"], [18, 5, 1, "", "parse_expression"], [18, 4, 1, "", "slots"], [18, 5, 1, "", "visit_abbreviated_iri"], [18, 5, 1, "", "visit_boolean_literal"], [18, 5, 1, "", "visit_cardinality_res"], [18, 5, 1, "", "visit_class_expression"], [18, 5, 1, "", "visit_class_iri"], [18, 5, 1, "", "visit_data_cardinality_res"], [18, 5, 1, "", "visit_data_intersection"], [18, 5, 1, "", "visit_data_parentheses"], [18, 5, 1, "", "visit_data_primary"], [18, 5, 1, "", "visit_data_property_iri"], [18, 5, 1, "", "visit_data_some_only_res"], [18, 5, 1, "", "visit_data_union"], [18, 5, 1, "", "visit_data_value_res"], [18, 5, 1, "", "visit_datatype"], [18, 5, 1, "", "visit_datatype_iri"], [18, 5, 1, "", "visit_datatype_restriction"], [18, 5, 1, "", "visit_date_literal"], [18, 5, 1, "", "visit_datetime_literal"], [18, 5, 1, "", "visit_decimal_literal"], [18, 5, 1, "", "visit_duration_literal"], [18, 5, 1, "", "visit_facet"], [18, 5, 1, "", "visit_facet_restriction"], [18, 5, 1, "", "visit_facet_restrictions"], [18, 5, 1, "", "visit_float_literal"], [18, 5, 1, "", "visit_full_iri"], [18, 5, 1, "", "visit_has_self"], [18, 5, 1, "", "visit_individual_iri"], [18, 5, 1, "", "visit_individual_list"], [18, 5, 1, "", "visit_integer_literal"], [18, 5, 1, "", "visit_intersection"], [18, 5, 1, "", "visit_iri"], [18, 5, 1, "", "visit_literal"], [18, 5, 1, "", "visit_literal_list"], [18, 5, 1, "", "visit_non_negative_integer"], [18, 5, 1, "", "visit_object_property"], [18, 5, 1, "", "visit_object_property_iri"], [18, 5, 1, "", "visit_parentheses"], [18, 5, 1, "", "visit_primary"], [18, 5, 1, "", "visit_quoted_string"], [18, 5, 1, "", "visit_simple_iri"], [18, 5, 1, "", "visit_some_only_res"], [18, 5, 1, "", "visit_string_literal_language"], [18, 5, 1, "", "visit_string_literal_no_language"], [18, 5, 1, "", "visit_typed_literal"], [18, 5, 1, "", "visit_union"], [18, 5, 1, "", "visit_value_res"]], "owlapy.parser.ManchesterOWLSyntaxParser": [[18, 5, 1, "", "generic_visit"], [18, 4, 1, "", "ns"], [18, 5, 1, "", "parse_expression"], [18, 4, 1, "", "slots"], [18, 5, 1, "", "visit_abbreviated_iri"], [18, 5, 1, "", "visit_boolean_literal"], [18, 5, 1, "", "visit_cardinality_res"], [18, 5, 1, "", "visit_class_expression"], [18, 5, 1, "", "visit_class_iri"], [18, 5, 1, "", "visit_data_cardinality_res"], [18, 5, 1, "", "visit_data_intersection"], [18, 5, 1, "", "visit_data_parentheses"], [18, 5, 1, "", "visit_data_primary"], [18, 5, 1, "", "visit_data_property_iri"], [18, 5, 1, "", "visit_data_some_only_res"], [18, 5, 1, "", "visit_data_union"], [18, 5, 1, "", "visit_data_value_res"], [18, 5, 1, "", "visit_datatype"], [18, 5, 1, "", "visit_datatype_iri"], [18, 5, 1, "", "visit_datatype_restriction"], [18, 5, 1, "", "visit_date_literal"], [18, 5, 1, "", "visit_datetime_literal"], [18, 5, 1, "", "visit_decimal_literal"], [18, 5, 1, "", "visit_duration_literal"], [18, 5, 1, "", "visit_facet"], [18, 5, 1, "", "visit_facet_restriction"], [18, 5, 1, "", "visit_facet_restrictions"], [18, 5, 1, "", "visit_float_literal"], [18, 5, 1, "", "visit_full_iri"], [18, 5, 1, "", "visit_has_self"], [18, 5, 1, "", "visit_individual_iri"], [18, 5, 1, "", "visit_individual_list"], [18, 5, 1, "", "visit_integer_literal"], [18, 5, 1, "", "visit_intersection"], [18, 5, 1, "", "visit_iri"], [18, 5, 1, "", "visit_literal"], [18, 5, 1, "", "visit_literal_list"], [18, 5, 1, "", "visit_non_negative_integer"], [18, 5, 1, "", "visit_object_property"], [18, 5, 1, "", "visit_object_property_iri"], [18, 5, 1, "", "visit_parentheses"], [18, 5, 1, "", "visit_primary"], [18, 5, 1, "", "visit_quoted_string"], [18, 5, 1, "", "visit_simple_iri"], [18, 5, 1, "", "visit_some_only_res"], [18, 5, 1, "", "visit_string_literal_language"], [18, 5, 1, "", "visit_string_literal_no_language"], [18, 5, 1, "", "visit_typed_literal"], [18, 5, 1, "", "visit_union"], [18, 5, 1, "", "visit_value_res"]], "owlapy.ranges": [[19, 3, 1, "", "OWLDataRange"], [19, 3, 1, "", "OWLPropertyRange"]], "owlapy.render": [[20, 3, 1, "", "DLSyntaxObjectRenderer"], [20, 1, 1, "", "DLrenderer"], [20, 3, 1, "", "ManchesterOWLSyntaxOWLObjectRenderer"], [20, 1, 1, "", "ManchesterRenderer"], [20, 2, 1, "", "owl_expression_to_dl"], [20, 2, 1, "", "owl_expression_to_manchester"]], "owlapy.render.DLSyntaxObjectRenderer": [[20, 4, 1, "", "__slots__"], [20, 5, 1, "", "render"], [20, 5, 1, "", "set_short_form_provider"]], "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer": [[20, 4, 1, "", "__slots__"], [20, 5, 1, "", "render"], [20, 5, 1, "", "set_short_form_provider"]], "owlapy.types": [[21, 3, 1, "", "OWLDatatype"]], "owlapy.types.OWLDatatype": [[21, 4, 1, "", "__slots__"], [21, 5, 1, "", "get_iri"], [21, 4, 1, "", "type_index"]], "owlapy.util": [[22, 3, 1, "", "LRUCache"], [22, 3, 1, "", "NNF"], [22, 3, 1, "", "OrderedOWLObject"], [22, 3, 1, "", "TopLevelCNF"], [22, 3, 1, "", "TopLevelDNF"], [22, 2, 1, "", "as_index"], [22, 2, 1, "", "combine_nary_expressions"], [22, 2, 1, "", "iter_count"]], "owlapy.util.LRUCache": [[22, 4, 1, "", "KEY"], [22, 4, 1, "", "NEXT"], [22, 4, 1, "", "PREV"], [22, 4, 1, "", "RESULT"], [22, 5, 1, "", "__contains__"], [22, 5, 1, "", "__getitem__"], [22, 5, 1, "", "__setitem__"], [22, 5, 1, "", "cache_clear"], [22, 5, 1, "", "cache_info"], [22, 4, 1, "id1", "sentinel"]], "owlapy.util.NNF": [[22, 5, 1, "", "get_class_nnf"]], "owlapy.util.OrderedOWLObject": [[22, 5, 1, "", "__eq__"], [22, 5, 1, "", "__lt__"], [22, 4, 1, "", "__slots__"], [22, 4, 1, "id0", "o"]], "owlapy.util.TopLevelCNF": [[22, 5, 1, "", "get_top_level_cnf"]], "owlapy.util.TopLevelDNF": [[22, 5, 1, "", "get_top_level_dnf"]], "owlapy.vocab": [[23, 3, 1, "", "OWLFacet"], [23, 3, 1, "", "OWLRDFVocabulary"], [23, 3, 1, "", "XSDVocabulary"]], "owlapy.vocab.OWLFacet": [[23, 4, 1, "", "FRACTION_DIGITS"], [23, 4, 1, "", "LENGTH"], [23, 4, 1, "", "MAX_EXCLUSIVE"], [23, 4, 1, "", "MAX_INCLUSIVE"], [23, 4, 1, "", "MAX_LENGTH"], [23, 4, 1, "", "MIN_EXCLUSIVE"], [23, 4, 1, "", "MIN_INCLUSIVE"], [23, 4, 1, "", "MIN_LENGTH"], [23, 4, 1, "", "PATTERN"], [23, 4, 1, "", "TOTAL_DIGITS"], [23, 5, 1, "", "from_str"], [23, 6, 1, "", "operator"], [23, 6, 1, "", "symbolic_form"]], "owlapy.vocab.OWLRDFVocabulary": [[23, 4, 1, "", "OWL_BOTTOM_DATA_PROPERTY"], [23, 4, 1, "", "OWL_BOTTOM_OBJECT_PROPERTY"], [23, 4, 1, "", "OWL_CLASS"], [23, 4, 1, "", "OWL_NAMED_INDIVIDUAL"], [23, 4, 1, "", "OWL_NOTHING"], [23, 4, 1, "", "OWL_THING"], [23, 4, 1, "", "OWL_TOP_DATA_PROPERTY"], [23, 4, 1, "", "OWL_TOP_OBJECT_PROPERTY"], [23, 4, 1, "", "RDFS_LITERAL"]], "owlapy.vocab.XSDVocabulary": [[23, 4, 1, "", "BOOLEAN"], [23, 4, 1, "", "DATE"], [23, 4, 1, "", "DATE_TIME"], [23, 4, 1, "", "DATE_TIME_STAMP"], [23, 4, 1, "", "DECIMAL"], [23, 4, 1, "", "DOUBLE"], [23, 4, 1, "", "DURATION"], [23, 4, 1, "", "FLOAT"], [23, 4, 1, "", "INTEGER"], [23, 4, 1, "", "LONG"], [23, 4, 1, "", "STRING"]]}, "objtypes": {"0": "py:module", "1": "py:data", "2": "py:function", "3": "py:class", "4": "py:attribute", "5": "py:method", "6": "py:property"}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "data", "Python data"], "2": ["py", "function", "Python function"], "3": ["py", "class", "Python class"], "4": ["py", "attribute", "Python attribute"], "5": ["py", "method", "Python method"], "6": ["py", "property", "Python property"]}, "titleterms": {"owlapi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25], "_util": 0, "modul": [0, 1, 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "content": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24], "function": [0, 4, 5, 7, 18, 20, 22], "ha": 1, "class": [1, 3, 4, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "subpackag": 2, "submodul": [2, 4, 8], "packag": [2, 4], "iri": 3, "model": [4, 5], "attribut": [4, 5, 6, 7, 14, 18, 20], "provid": 5, "namespac": 6, "owl2sparql": [7, 8], "convert": 7, "owl_annot": 9, "owl_axiom": 10, "owl_class_express": 11, "owl_data": 12, "owl_individu": 13, "owl_liter": 14, "owl_properti": 15, "owl_restrict": 16, "owlobject": 17, "parser": 18, "rang": 19, "render": 20, "type": 21, "util": 22, "vocab": 23, "welcom": 24}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1, "sphinx": 60}, "alltitles": {"owlapy._utils": [[0, "module-owlapy._utils"]], "Module Contents": [[0, "module-contents"], [1, "module-contents"], [3, "module-contents"], [5, "module-contents"], [6, "module-contents"], [7, "module-contents"], [9, "module-contents"], [10, "module-contents"], [11, "module-contents"], [12, "module-contents"], [13, "module-contents"], [14, "module-contents"], [15, "module-contents"], [16, "module-contents"], [17, "module-contents"], [18, "module-contents"], [19, "module-contents"], [20, "module-contents"], [21, "module-contents"], [22, "module-contents"], [23, "module-contents"]], "Functions": [[0, "functions"], [4, "functions"], [5, "functions"], [7, "functions"], [18, "functions"], [20, "functions"], [22, "functions"]], "owlapy.has": [[1, "module-owlapy.has"]], "Classes": [[1, "classes"], [3, "classes"], [4, "classes"], [6, "classes"], [7, "classes"], [9, "classes"], [10, "classes"], [11, "classes"], [12, "classes"], [13, "classes"], [14, "classes"], [15, "classes"], [16, "classes"], [17, "classes"], [18, "classes"], [19, "classes"], [20, "classes"], [21, "classes"], [22, "classes"], [23, "classes"]], "owlapy": [[2, "module-owlapy"]], "Subpackages": [[2, "subpackages"]], "Submodules": [[2, "submodules"], [4, "submodules"], [8, "submodules"]], "Package Contents": [[2, "package-contents"], [4, "package-contents"]], "owlapy.iri": [[3, "module-owlapy.iri"]], "owlapy.model": [[4, "module-owlapy.model"]], "Attributes": [[4, "attributes"], [5, "attributes"], [6, "attributes"], [7, "attributes"], [14, "attributes"], [18, "attributes"], [20, "attributes"]], "owlapy.model.providers": [[5, "module-owlapy.model.providers"]], "owlapy.namespaces": [[6, "module-owlapy.namespaces"]], "owlapy.owl2sparql.converter": [[7, "module-owlapy.owl2sparql.converter"]], "owlapy.owl2sparql": [[8, "module-owlapy.owl2sparql"]], "owlapy.owl_annotation": [[9, "module-owlapy.owl_annotation"]], "owlapy.owl_axiom": [[10, "module-owlapy.owl_axiom"]], "owlapy.owl_class_expression": [[11, "module-owlapy.owl_class_expression"]], "owlapy.owl_data": [[12, "module-owlapy.owl_data"]], "owlapy.owl_individual": [[13, "module-owlapy.owl_individual"]], "owlapy.owl_literal": [[14, "module-owlapy.owl_literal"]], "owlapy.owl_property": [[15, "module-owlapy.owl_property"]], "owlapy.owl_restriction": [[16, "module-owlapy.owl_restriction"]], "owlapy.owlobject": [[17, "module-owlapy.owlobject"]], "owlapy.parser": [[18, "module-owlapy.parser"]], "owlapy.ranges": [[19, "module-owlapy.ranges"]], "owlapy.render": [[20, "module-owlapy.render"]], "owlapy.types": [[21, "module-owlapy.types"]], "owlapy.util": [[22, "module-owlapy.util"]], "owlapy.vocab": [[23, "module-owlapy.vocab"]], "Welcome to OWLAPY!": [[24, "welcome-to-owlapy"]], "Contents:": [[24, null]], "OWLAPY": [[25, "owlapy"]]}, "indexentries": {"move() (in module owlapy._utils)": [[0, "owlapy._utils.MOVE"]], "module": [[0, "module-owlapy._utils"], [1, "module-owlapy.has"], [2, "module-owlapy"], [3, "module-owlapy.iri"], [4, "module-owlapy.model"], [5, "module-owlapy.model.providers"], [6, "module-owlapy.namespaces"], [7, "module-owlapy.owl2sparql.converter"], [8, "module-owlapy.owl2sparql"], [9, "module-owlapy.owl_annotation"], [10, "module-owlapy.owl_axiom"], [11, "module-owlapy.owl_class_expression"], [12, "module-owlapy.owl_data"], [13, "module-owlapy.owl_individual"], [14, "module-owlapy.owl_literal"], [15, "module-owlapy.owl_property"], [16, "module-owlapy.owl_restriction"], [17, "module-owlapy.owlobject"], [18, "module-owlapy.parser"], [19, "module-owlapy.ranges"], [20, "module-owlapy.render"], [21, "module-owlapy.types"], [22, "module-owlapy.util"], [23, "module-owlapy.vocab"]], "owlapy._utils": [[0, "module-owlapy._utils"]], "hascardinality (class in owlapy.has)": [[1, "owlapy.has.HasCardinality"]], "hasfiller (class in owlapy.has)": [[1, "owlapy.has.HasFiller"]], "hasiri (class in owlapy.has)": [[1, "owlapy.has.HasIRI"]], "hasindex (class in owlapy.has)": [[1, "owlapy.has.HasIndex"]], "hasoperands (class in owlapy.has)": [[1, "owlapy.has.HasOperands"]], "__eq__() (owlapy.has.hasindex method)": [[1, "owlapy.has.HasIndex.__eq__"]], "__slots__ (owlapy.has.hascardinality attribute)": [[1, "owlapy.has.HasCardinality.__slots__"]], "__slots__ (owlapy.has.hasfiller attribute)": [[1, "owlapy.has.HasFiller.__slots__"]], "__slots__ (owlapy.has.hasiri attribute)": [[1, "owlapy.has.HasIRI.__slots__"]], "__slots__ (owlapy.has.hasoperands attribute)": [[1, "owlapy.has.HasOperands.__slots__"]], "get_cardinality() (owlapy.has.hascardinality method)": [[1, "owlapy.has.HasCardinality.get_cardinality"]], "get_filler() (owlapy.has.hasfiller method)": [[1, "owlapy.has.HasFiller.get_filler"]], "get_iri() (owlapy.has.hasiri method)": [[1, "owlapy.has.HasIRI.get_iri"]], "operands() (owlapy.has.hasoperands method)": [[1, "owlapy.has.HasOperands.operands"]], "owlapy.has": [[1, "module-owlapy.has"]], "type_index (owlapy.has.hasindex attribute)": [[1, "owlapy.has.HasIndex.type_index"]], "__version__ (in module owlapy)": [[2, "owlapy.__version__"]], "owlapy": [[2, "module-owlapy"]], "iri (class in owlapy.iri)": [[3, "owlapy.iri.IRI"]], "__eq__() (owlapy.iri.iri method)": [[3, "owlapy.iri.IRI.__eq__"]], "__hash__() (owlapy.iri.iri method)": [[3, "owlapy.iri.IRI.__hash__"]], "__repr__() (owlapy.iri.iri method)": [[3, "owlapy.iri.IRI.__repr__"]], "__slots__ (owlapy.iri.iri attribute)": [[3, "owlapy.iri.IRI.__slots__"]], "as_iri() (owlapy.iri.iri method)": [[3, "owlapy.iri.IRI.as_iri"]], "as_str() (owlapy.iri.iri method)": [[3, "owlapy.iri.IRI.as_str"]], "create() (owlapy.iri.iri static method)": [[3, "owlapy.iri.IRI.create"]], "get_namespace() (owlapy.iri.iri method)": [[3, "owlapy.iri.IRI.get_namespace"]], "get_remainder() (owlapy.iri.iri method)": [[3, "owlapy.iri.IRI.get_remainder"]], "get_short_form() (owlapy.iri.iri method)": [[3, "owlapy.iri.IRI.get_short_form"]], "is_nothing() (owlapy.iri.iri method)": [[3, "owlapy.iri.IRI.is_nothing"]], "is_reserved_vocabulary() (owlapy.iri.iri method)": [[3, "owlapy.iri.IRI.is_reserved_vocabulary"]], "is_thing() (owlapy.iri.iri method)": [[3, "owlapy.iri.IRI.is_thing"]], "owlapy.iri": [[3, "module-owlapy.iri"]], "reminder (owlapy.iri.iri property)": [[3, "owlapy.iri.IRI.reminder"]], "str (owlapy.iri.iri property)": [[3, "owlapy.iri.IRI.str"]], "type_index (owlapy.iri.iri attribute)": [[3, "owlapy.iri.IRI.type_index"]], "addimport (class in owlapy.model)": [[4, "owlapy.model.AddImport"]], "boolean (owlapy.model.xsdvocabulary attribute)": [[4, "owlapy.model.XSDVocabulary.BOOLEAN"]], "booleanowldatatype (in module owlapy.model)": [[4, "owlapy.model.BooleanOWLDatatype"]], "date (owlapy.model.xsdvocabulary attribute)": [[4, "owlapy.model.XSDVocabulary.DATE"]], "date_time (owlapy.model.xsdvocabulary attribute)": [[4, "owlapy.model.XSDVocabulary.DATE_TIME"]], "date_time_stamp (owlapy.model.xsdvocabulary attribute)": [[4, "owlapy.model.XSDVocabulary.DATE_TIME_STAMP"]], "decimal (owlapy.model.xsdvocabulary attribute)": [[4, "owlapy.model.XSDVocabulary.DECIMAL"]], "double (owlapy.model.xsdvocabulary attribute)": [[4, "owlapy.model.XSDVocabulary.DOUBLE"]], "duration (owlapy.model.xsdvocabulary attribute)": [[4, "owlapy.model.XSDVocabulary.DURATION"]], "dateowldatatype (in module owlapy.model)": [[4, "owlapy.model.DateOWLDatatype"]], "datetimeowldatatype (in module owlapy.model)": [[4, "owlapy.model.DateTimeOWLDatatype"]], "doubleowldatatype (in module owlapy.model)": [[4, "owlapy.model.DoubleOWLDatatype"]], "durationowldatatype (in module owlapy.model)": [[4, "owlapy.model.DurationOWLDatatype"]], "float (owlapy.model.xsdvocabulary attribute)": [[4, "owlapy.model.XSDVocabulary.FLOAT"]], "fraction_digits (owlapy.model.owlfacet attribute)": [[4, "owlapy.model.OWLFacet.FRACTION_DIGITS"]], "hascardinality (class in owlapy.model)": [[4, "owlapy.model.HasCardinality"]], "hasfiller (class in owlapy.model)": [[4, "owlapy.model.HasFiller"]], "hasiri (class in owlapy.model)": [[4, "owlapy.model.HasIRI"]], "hasindex (class in owlapy.model)": [[4, "owlapy.model.HasIndex"]], "hasoperands (class in owlapy.model)": [[4, "owlapy.model.HasOperands"]], "integer (owlapy.model.xsdvocabulary attribute)": [[4, "owlapy.model.XSDVocabulary.INTEGER"]], "iri (class in owlapy.model)": [[4, "owlapy.model.IRI"]], "integerowldatatype (in module owlapy.model)": [[4, "owlapy.model.IntegerOWLDatatype"]], "length (owlapy.model.owlfacet attribute)": [[4, "owlapy.model.OWLFacet.LENGTH"]], "long (owlapy.model.xsdvocabulary attribute)": [[4, "owlapy.model.XSDVocabulary.LONG"]], "literals (in module owlapy.model)": [[4, "owlapy.model.Literals"]], "max_exclusive (owlapy.model.owlfacet attribute)": [[4, "owlapy.model.OWLFacet.MAX_EXCLUSIVE"]], "max_inclusive (owlapy.model.owlfacet attribute)": [[4, "owlapy.model.OWLFacet.MAX_INCLUSIVE"]], "max_length (owlapy.model.owlfacet attribute)": [[4, "owlapy.model.OWLFacet.MAX_LENGTH"]], "min_exclusive (owlapy.model.owlfacet attribute)": [[4, "owlapy.model.OWLFacet.MIN_EXCLUSIVE"]], "min_inclusive (owlapy.model.owlfacet attribute)": [[4, "owlapy.model.OWLFacet.MIN_INCLUSIVE"]], "min_length (owlapy.model.owlfacet attribute)": [[4, "owlapy.model.OWLFacet.MIN_LENGTH"]], "move() (in module owlapy.model)": [[4, "owlapy.model.MOVE"]], "numeric_datatypes (in module owlapy.model)": [[4, "owlapy.model.NUMERIC_DATATYPES"]], "owlannotationobject (class in owlapy.model)": [[4, "owlapy.model.OWLAnnotationObject"]], "owlannotationsubject (class in owlapy.model)": [[4, "owlapy.model.OWLAnnotationSubject"]], "owlannotationvalue (class in owlapy.model)": [[4, "owlapy.model.OWLAnnotationValue"]], "owlanonymousclassexpression (class in owlapy.model)": [[4, "owlapy.model.OWLAnonymousClassExpression"]], "owlaxiom (class in owlapy.model)": [[4, "owlapy.model.OWLAxiom"]], "owlbooleanclassexpression (class in owlapy.model)": [[4, "owlapy.model.OWLBooleanClassExpression"]], "owlbottomdataproperty (in module owlapy.model)": [[4, "owlapy.model.OWLBottomDataProperty"]], "owlbottomobjectproperty (in module owlapy.model)": [[4, "owlapy.model.OWLBottomObjectProperty"]], "owlcardinalityrestriction (class in owlapy.model)": [[4, "owlapy.model.OWLCardinalityRestriction"]], "owlclass (class in owlapy.model)": [[4, "owlapy.model.OWLClass"]], "owlclassaxiom (class in owlapy.model)": [[4, "owlapy.model.OWLClassAxiom"]], "owlclassexpression (class in owlapy.model)": [[4, "owlapy.model.OWLClassExpression"]], "owldataallvaluesfrom (class in owlapy.model)": [[4, "owlapy.model.OWLDataAllValuesFrom"]], "owldatacardinalityrestriction (class in owlapy.model)": [[4, "owlapy.model.OWLDataCardinalityRestriction"]], "owldatacomplementof (class in owlapy.model)": [[4, "owlapy.model.OWLDataComplementOf"]], "owldataexactcardinality (class in owlapy.model)": [[4, "owlapy.model.OWLDataExactCardinality"]], "owldatahasvalue (class in owlapy.model)": [[4, "owlapy.model.OWLDataHasValue"]], "owldataintersectionof (class in owlapy.model)": [[4, "owlapy.model.OWLDataIntersectionOf"]], "owldatamaxcardinality (class in owlapy.model)": [[4, "owlapy.model.OWLDataMaxCardinality"]], "owldatamincardinality (class in owlapy.model)": [[4, "owlapy.model.OWLDataMinCardinality"]], "owldataoneof (class in owlapy.model)": [[4, "owlapy.model.OWLDataOneOf"]], "owldataproperty (class in owlapy.model)": [[4, "owlapy.model.OWLDataProperty"]], "owldatapropertydomainaxiom (class in owlapy.model)": [[4, "owlapy.model.OWLDataPropertyDomainAxiom"]], "owldatapropertyexpression (class in owlapy.model)": [[4, "owlapy.model.OWLDataPropertyExpression"]], "owldatapropertyrangeaxiom (class in owlapy.model)": [[4, "owlapy.model.OWLDataPropertyRangeAxiom"]], "owldatarange (class in owlapy.model)": [[4, "owlapy.model.OWLDataRange"]], "owldatarestriction (class in owlapy.model)": [[4, "owlapy.model.OWLDataRestriction"]], "owldatasomevaluesfrom (class in owlapy.model)": [[4, "owlapy.model.OWLDataSomeValuesFrom"]], "owldataunionof (class in owlapy.model)": [[4, "owlapy.model.OWLDataUnionOf"]], "owldatatype (class in owlapy.model)": [[4, "owlapy.model.OWLDatatype"]], "owldatatyperestriction (class in owlapy.model)": [[4, "owlapy.model.OWLDatatypeRestriction"]], "owlentity (class in owlapy.model)": [[4, "owlapy.model.OWLEntity"]], "owlequivalentclassesaxiom (class in owlapy.model)": [[4, "owlapy.model.OWLEquivalentClassesAxiom"]], "owlfacet (class in owlapy.model)": [[4, "owlapy.model.OWLFacet"]], "owlfacetrestriction (class in owlapy.model)": [[4, "owlapy.model.OWLFacetRestriction"]], "owlhasvaluerestriction (class in owlapy.model)": [[4, "owlapy.model.OWLHasValueRestriction"]], "owlimportsdeclaration (class in owlapy.model)": [[4, "owlapy.model.OWLImportsDeclaration"]], "owlindividual (class in owlapy.model)": [[4, "owlapy.model.OWLIndividual"]], "owlliteral (class in owlapy.model)": [[4, "owlapy.model.OWLLiteral"]], "owlnamedindividual (class in owlapy.model)": [[4, "owlapy.model.OWLNamedIndividual"]], "owlnarybooleanclassexpression (class in owlapy.model)": [[4, "owlapy.model.OWLNaryBooleanClassExpression"]], "owlnarydatarange (class in owlapy.model)": [[4, "owlapy.model.OWLNaryDataRange"]], "owlnothing (in module owlapy.model)": [[4, "owlapy.model.OWLNothing"]], "owlobject (class in owlapy.model)": [[4, "owlapy.model.OWLObject"]], "owlobjectallvaluesfrom (class in owlapy.model)": [[4, "owlapy.model.OWLObjectAllValuesFrom"]], "owlobjectcardinalityrestriction (class in owlapy.model)": [[4, "owlapy.model.OWLObjectCardinalityRestriction"]], "owlobjectcomplementof (class in owlapy.model)": [[4, "owlapy.model.OWLObjectComplementOf"]], "owlobjectexactcardinality (class in owlapy.model)": [[4, "owlapy.model.OWLObjectExactCardinality"]], "owlobjecthasself (class in owlapy.model)": [[4, "owlapy.model.OWLObjectHasSelf"]], "owlobjecthasvalue (class in owlapy.model)": [[4, "owlapy.model.OWLObjectHasValue"]], "owlobjectintersectionof (class in owlapy.model)": [[4, "owlapy.model.OWLObjectIntersectionOf"]], "owlobjectmaxcardinality (class in owlapy.model)": [[4, "owlapy.model.OWLObjectMaxCardinality"]], "owlobjectmincardinality (class in owlapy.model)": [[4, "owlapy.model.OWLObjectMinCardinality"]], "owlobjectoneof (class in owlapy.model)": [[4, "owlapy.model.OWLObjectOneOf"]], "owlobjectproperty (class in owlapy.model)": [[4, "owlapy.model.OWLObjectProperty"]], "owlobjectpropertydomainaxiom (class in owlapy.model)": [[4, "owlapy.model.OWLObjectPropertyDomainAxiom"]], "owlobjectpropertyexpression (class in owlapy.model)": [[4, "owlapy.model.OWLObjectPropertyExpression"]], "owlobjectpropertyrangeaxiom (class in owlapy.model)": [[4, "owlapy.model.OWLObjectPropertyRangeAxiom"]], "owlobjectrestriction (class in owlapy.model)": [[4, "owlapy.model.OWLObjectRestriction"]], "owlobjectsomevaluesfrom (class in owlapy.model)": [[4, "owlapy.model.OWLObjectSomeValuesFrom"]], "owlobjectunionof (class in owlapy.model)": [[4, "owlapy.model.OWLObjectUnionOf"]], "owlontology (class in owlapy.model)": [[4, "owlapy.model.OWLOntology"]], "owlontologychange (class in owlapy.model)": [[4, "owlapy.model.OWLOntologyChange"]], "owlontologyid (class in owlapy.model)": [[4, "owlapy.model.OWLOntologyID"]], "owlontologymanager (class in owlapy.model)": [[4, "owlapy.model.OWLOntologyManager"]], "owlproperty (class in owlapy.model)": [[4, "owlapy.model.OWLProperty"]], "owlpropertyexpression (class in owlapy.model)": [[4, "owlapy.model.OWLPropertyExpression"]], "owlpropertyrange (class in owlapy.model)": [[4, "owlapy.model.OWLPropertyRange"]], "owlquantifieddatarestriction (class in owlapy.model)": [[4, "owlapy.model.OWLQuantifiedDataRestriction"]], "owlquantifiedobjectrestriction (class in owlapy.model)": [[4, "owlapy.model.OWLQuantifiedObjectRestriction"]], "owlquantifiedrestriction (class in owlapy.model)": [[4, "owlapy.model.OWLQuantifiedRestriction"]], "owlrdfvocabulary (class in owlapy.model)": [[4, "owlapy.model.OWLRDFVocabulary"]], "owlreasoner (class in owlapy.model)": [[4, "owlapy.model.OWLReasoner"]], "owlrestriction (class in owlapy.model)": [[4, "owlapy.model.OWLRestriction"]], "owlthing (in module owlapy.model)": [[4, "owlapy.model.OWLThing"]], "owltopdataproperty (in module owlapy.model)": [[4, "owlapy.model.OWLTopDataProperty"]], "owltopobjectproperty (in module owlapy.model)": [[4, "owlapy.model.OWLTopObjectProperty"]], "owl_bottom_data_property (owlapy.model.owlrdfvocabulary attribute)": [[4, "owlapy.model.OWLRDFVocabulary.OWL_BOTTOM_DATA_PROPERTY"]], "owl_bottom_object_property (owlapy.model.owlrdfvocabulary attribute)": [[4, "owlapy.model.OWLRDFVocabulary.OWL_BOTTOM_OBJECT_PROPERTY"]], "owl_class (owlapy.model.owlrdfvocabulary attribute)": [[4, "owlapy.model.OWLRDFVocabulary.OWL_CLASS"]], "owl_named_individual (owlapy.model.owlrdfvocabulary attribute)": [[4, "owlapy.model.OWLRDFVocabulary.OWL_NAMED_INDIVIDUAL"]], "owl_nothing (owlapy.model.owlrdfvocabulary attribute)": [[4, "owlapy.model.OWLRDFVocabulary.OWL_NOTHING"]], "owl_thing (owlapy.model.owlrdfvocabulary attribute)": [[4, "owlapy.model.OWLRDFVocabulary.OWL_THING"]], "owl_top_data_property (owlapy.model.owlrdfvocabulary attribute)": [[4, "owlapy.model.OWLRDFVocabulary.OWL_TOP_DATA_PROPERTY"]], "owl_top_object_property (owlapy.model.owlrdfvocabulary attribute)": [[4, "owlapy.model.OWLRDFVocabulary.OWL_TOP_OBJECT_PROPERTY"]], "pattern (owlapy.model.owlfacet attribute)": [[4, "owlapy.model.OWLFacet.PATTERN"]], "rdfs_literal (owlapy.model.owlrdfvocabulary attribute)": [[4, "owlapy.model.OWLRDFVocabulary.RDFS_LITERAL"]], "string (owlapy.model.xsdvocabulary attribute)": [[4, "owlapy.model.XSDVocabulary.STRING"]], "stringowldatatype (in module owlapy.model)": [[4, "owlapy.model.StringOWLDatatype"]], "time_datatypes (in module owlapy.model)": [[4, "owlapy.model.TIME_DATATYPES"]], "total_digits (owlapy.model.owlfacet attribute)": [[4, "owlapy.model.OWLFacet.TOTAL_DIGITS"]], "topowldatatype (in module owlapy.model)": [[4, "owlapy.model.TopOWLDatatype"]], "xsdvocabulary (class in owlapy.model)": [[4, "owlapy.model.XSDVocabulary"]], "__eq__() (owlapy.model.hasindex method)": [[4, "owlapy.model.HasIndex.__eq__"]], "__eq__() (owlapy.model.iri method)": [[4, "owlapy.model.IRI.__eq__"]], "__eq__() (owlapy.model.owldataallvaluesfrom method)": [[4, "owlapy.model.OWLDataAllValuesFrom.__eq__"]], "__eq__() (owlapy.model.owldatacardinalityrestriction method)": [[4, "owlapy.model.OWLDataCardinalityRestriction.__eq__"]], "__eq__() (owlapy.model.owldatacomplementof method)": [[4, "owlapy.model.OWLDataComplementOf.__eq__"]], "__eq__() (owlapy.model.owldatahasvalue method)": [[4, "owlapy.model.OWLDataHasValue.__eq__"]], "__eq__() (owlapy.model.owldataoneof method)": [[4, "owlapy.model.OWLDataOneOf.__eq__"]], "__eq__() (owlapy.model.owldatasomevaluesfrom method)": [[4, "owlapy.model.OWLDataSomeValuesFrom.__eq__"]], "__eq__() (owlapy.model.owldatatyperestriction method)": [[4, "owlapy.model.OWLDatatypeRestriction.__eq__"]], "__eq__() (owlapy.model.owlfacetrestriction method)": [[4, "owlapy.model.OWLFacetRestriction.__eq__"]], "__eq__() (owlapy.model.owlhasvaluerestriction method)": [[4, "owlapy.model.OWLHasValueRestriction.__eq__"]], "__eq__() (owlapy.model.owlnarybooleanclassexpression method)": [[4, "owlapy.model.OWLNaryBooleanClassExpression.__eq__"]], "__eq__() (owlapy.model.owlnarydatarange method)": [[4, "owlapy.model.OWLNaryDataRange.__eq__"]], "__eq__() (owlapy.model.owlobject method)": [[4, "owlapy.model.OWLObject.__eq__"]], "__eq__() (owlapy.model.owlobjectallvaluesfrom method)": [[4, "owlapy.model.OWLObjectAllValuesFrom.__eq__"]], "__eq__() (owlapy.model.owlobjectcardinalityrestriction method)": [[4, "owlapy.model.OWLObjectCardinalityRestriction.__eq__"]], "__eq__() (owlapy.model.owlobjectcomplementof method)": [[4, "owlapy.model.OWLObjectComplementOf.__eq__"]], "__eq__() (owlapy.model.owlobjecthasself method)": [[4, "owlapy.model.OWLObjectHasSelf.__eq__"]], "__eq__() (owlapy.model.owlobjectoneof method)": [[4, "owlapy.model.OWLObjectOneOf.__eq__"]], "__eq__() (owlapy.model.owlobjectsomevaluesfrom method)": [[4, "owlapy.model.OWLObjectSomeValuesFrom.__eq__"]], "__eq__() (owlapy.model.owlontologyid method)": [[4, "owlapy.model.OWLOntologyID.__eq__"]], "__hash__() (owlapy.model.iri method)": [[4, "owlapy.model.IRI.__hash__"]], "__hash__() (owlapy.model.owldataallvaluesfrom method)": [[4, "owlapy.model.OWLDataAllValuesFrom.__hash__"]], "__hash__() (owlapy.model.owldatacardinalityrestriction method)": [[4, "owlapy.model.OWLDataCardinalityRestriction.__hash__"]], "__hash__() (owlapy.model.owldatacomplementof method)": [[4, "owlapy.model.OWLDataComplementOf.__hash__"]], "__hash__() (owlapy.model.owldatahasvalue method)": [[4, "owlapy.model.OWLDataHasValue.__hash__"]], "__hash__() (owlapy.model.owldataoneof method)": [[4, "owlapy.model.OWLDataOneOf.__hash__"]], "__hash__() (owlapy.model.owldatasomevaluesfrom method)": [[4, "owlapy.model.OWLDataSomeValuesFrom.__hash__"]], "__hash__() (owlapy.model.owldatatyperestriction method)": [[4, "owlapy.model.OWLDatatypeRestriction.__hash__"]], "__hash__() (owlapy.model.owlfacetrestriction method)": [[4, "owlapy.model.OWLFacetRestriction.__hash__"]], "__hash__() (owlapy.model.owlhasvaluerestriction method)": [[4, "owlapy.model.OWLHasValueRestriction.__hash__"]], "__hash__() (owlapy.model.owlnarybooleanclassexpression method)": [[4, "owlapy.model.OWLNaryBooleanClassExpression.__hash__"]], "__hash__() (owlapy.model.owlnarydatarange method)": [[4, "owlapy.model.OWLNaryDataRange.__hash__"]], "__hash__() (owlapy.model.owlobject method)": [[4, "owlapy.model.OWLObject.__hash__"]], "__hash__() (owlapy.model.owlobjectallvaluesfrom method)": [[4, "owlapy.model.OWLObjectAllValuesFrom.__hash__"]], "__hash__() (owlapy.model.owlobjectcardinalityrestriction method)": [[4, "owlapy.model.OWLObjectCardinalityRestriction.__hash__"]], "__hash__() (owlapy.model.owlobjectcomplementof method)": [[4, "owlapy.model.OWLObjectComplementOf.__hash__"]], "__hash__() (owlapy.model.owlobjecthasself method)": [[4, "owlapy.model.OWLObjectHasSelf.__hash__"]], "__hash__() (owlapy.model.owlobjectoneof method)": [[4, "owlapy.model.OWLObjectOneOf.__hash__"]], "__hash__() (owlapy.model.owlobjectsomevaluesfrom method)": [[4, "owlapy.model.OWLObjectSomeValuesFrom.__hash__"]], "__repr__() (owlapy.model.iri method)": [[4, "owlapy.model.IRI.__repr__"]], "__repr__() (owlapy.model.owldataallvaluesfrom method)": [[4, "owlapy.model.OWLDataAllValuesFrom.__repr__"]], "__repr__() (owlapy.model.owldatacardinalityrestriction method)": [[4, "owlapy.model.OWLDataCardinalityRestriction.__repr__"]], "__repr__() (owlapy.model.owldatacomplementof method)": [[4, "owlapy.model.OWLDataComplementOf.__repr__"]], "__repr__() (owlapy.model.owldatahasvalue method)": [[4, "owlapy.model.OWLDataHasValue.__repr__"]], "__repr__() (owlapy.model.owldataoneof method)": [[4, "owlapy.model.OWLDataOneOf.__repr__"]], "__repr__() (owlapy.model.owldatasomevaluesfrom method)": [[4, "owlapy.model.OWLDataSomeValuesFrom.__repr__"]], "__repr__() (owlapy.model.owldatatyperestriction method)": [[4, "owlapy.model.OWLDatatypeRestriction.__repr__"]], "__repr__() (owlapy.model.owlfacetrestriction method)": [[4, "owlapy.model.OWLFacetRestriction.__repr__"]], "__repr__() (owlapy.model.owlnarybooleanclassexpression method)": [[4, "owlapy.model.OWLNaryBooleanClassExpression.__repr__"]], "__repr__() (owlapy.model.owlnarydatarange method)": [[4, "owlapy.model.OWLNaryDataRange.__repr__"]], "__repr__() (owlapy.model.owlobject method)": [[4, "owlapy.model.OWLObject.__repr__"]], "__repr__() (owlapy.model.owlobjectallvaluesfrom method)": [[4, "owlapy.model.OWLObjectAllValuesFrom.__repr__"]], "__repr__() (owlapy.model.owlobjectcardinalityrestriction method)": [[4, "owlapy.model.OWLObjectCardinalityRestriction.__repr__"]], "__repr__() (owlapy.model.owlobjectcomplementof method)": [[4, "owlapy.model.OWLObjectComplementOf.__repr__"]], "__repr__() (owlapy.model.owlobjecthasself method)": [[4, "owlapy.model.OWLObjectHasSelf.__repr__"]], "__repr__() (owlapy.model.owlobjecthasvalue method)": [[4, "owlapy.model.OWLObjectHasValue.__repr__"]], "__repr__() (owlapy.model.owlobjectoneof method)": [[4, "owlapy.model.OWLObjectOneOf.__repr__"]], "__repr__() (owlapy.model.owlobjectsomevaluesfrom method)": [[4, "owlapy.model.OWLObjectSomeValuesFrom.__repr__"]], "__repr__() (owlapy.model.owlontologyid method)": [[4, "owlapy.model.OWLOntologyID.__repr__"]], "__slots__ (owlapy.model.addimport attribute)": [[4, "owlapy.model.AddImport.__slots__"]], "__slots__ (owlapy.model.hascardinality attribute)": [[4, "owlapy.model.HasCardinality.__slots__"]], "__slots__ (owlapy.model.hasfiller attribute)": [[4, "owlapy.model.HasFiller.__slots__"]], "__slots__ (owlapy.model.hasiri attribute)": [[4, "owlapy.model.HasIRI.__slots__"]], "__slots__ (owlapy.model.hasoperands attribute)": [[4, "owlapy.model.HasOperands.__slots__"]], "__slots__ (owlapy.model.iri attribute)": [[4, "owlapy.model.IRI.__slots__"]], "__slots__ (owlapy.model.owlannotationobject attribute)": [[4, "owlapy.model.OWLAnnotationObject.__slots__"]], "__slots__ (owlapy.model.owlannotationsubject attribute)": [[4, "owlapy.model.OWLAnnotationSubject.__slots__"]], "__slots__ (owlapy.model.owlannotationvalue attribute)": [[4, "owlapy.model.OWLAnnotationValue.__slots__"]], "__slots__ (owlapy.model.owlaxiom attribute)": [[4, "owlapy.model.OWLAxiom.__slots__"]], "__slots__ (owlapy.model.owlbooleanclassexpression attribute)": [[4, "owlapy.model.OWLBooleanClassExpression.__slots__"]], "__slots__ (owlapy.model.owlcardinalityrestriction attribute)": [[4, "owlapy.model.OWLCardinalityRestriction.__slots__"]], "__slots__ (owlapy.model.owlclass attribute)": [[4, "owlapy.model.OWLClass.__slots__"]], "__slots__ (owlapy.model.owlclassaxiom attribute)": [[4, "owlapy.model.OWLClassAxiom.__slots__"]], "__slots__ (owlapy.model.owlclassexpression attribute)": [[4, "owlapy.model.OWLClassExpression.__slots__"]], "__slots__ (owlapy.model.owldataallvaluesfrom attribute)": [[4, "owlapy.model.OWLDataAllValuesFrom.__slots__"]], "__slots__ (owlapy.model.owldatacardinalityrestriction attribute)": [[4, "owlapy.model.OWLDataCardinalityRestriction.__slots__"]], "__slots__ (owlapy.model.owldataexactcardinality attribute)": [[4, "owlapy.model.OWLDataExactCardinality.__slots__"]], "__slots__ (owlapy.model.owldatahasvalue attribute)": [[4, "owlapy.model.OWLDataHasValue.__slots__"]], "__slots__ (owlapy.model.owldataintersectionof attribute)": [[4, "owlapy.model.OWLDataIntersectionOf.__slots__"]], "__slots__ (owlapy.model.owldatamaxcardinality attribute)": [[4, "owlapy.model.OWLDataMaxCardinality.__slots__"]], "__slots__ (owlapy.model.owldatamincardinality attribute)": [[4, "owlapy.model.OWLDataMinCardinality.__slots__"]], "__slots__ (owlapy.model.owldataproperty attribute)": [[4, "owlapy.model.OWLDataProperty.__slots__"]], "__slots__ (owlapy.model.owldatapropertydomainaxiom attribute)": [[4, "owlapy.model.OWLDataPropertyDomainAxiom.__slots__"]], "__slots__ (owlapy.model.owldatapropertyexpression attribute)": [[4, "owlapy.model.OWLDataPropertyExpression.__slots__"]], "__slots__ (owlapy.model.owldatapropertyrangeaxiom attribute)": [[4, "owlapy.model.OWLDataPropertyRangeAxiom.__slots__"]], "__slots__ (owlapy.model.owldatarestriction attribute)": [[4, "owlapy.model.OWLDataRestriction.__slots__"]], "__slots__ (owlapy.model.owldatasomevaluesfrom attribute)": [[4, "owlapy.model.OWLDataSomeValuesFrom.__slots__"]], "__slots__ (owlapy.model.owldataunionof attribute)": [[4, "owlapy.model.OWLDataUnionOf.__slots__"]], "__slots__ (owlapy.model.owldatatype attribute)": [[4, "owlapy.model.OWLDatatype.__slots__"]], "__slots__ (owlapy.model.owldatatyperestriction attribute)": [[4, "owlapy.model.OWLDatatypeRestriction.__slots__"]], "__slots__ (owlapy.model.owlentity attribute)": [[4, "owlapy.model.OWLEntity.__slots__"]], "__slots__ (owlapy.model.owlequivalentclassesaxiom attribute)": [[4, "owlapy.model.OWLEquivalentClassesAxiom.__slots__"]], "__slots__ (owlapy.model.owlfacetrestriction attribute)": [[4, "owlapy.model.OWLFacetRestriction.__slots__"]], "__slots__ (owlapy.model.owlhasvaluerestriction attribute)": [[4, "owlapy.model.OWLHasValueRestriction.__slots__"]], "__slots__ (owlapy.model.owlimportsdeclaration attribute)": [[4, "owlapy.model.OWLImportsDeclaration.__slots__"]], "__slots__ (owlapy.model.owlindividual attribute)": [[4, "owlapy.model.OWLIndividual.__slots__"]], "__slots__ (owlapy.model.owlliteral attribute)": [[4, "owlapy.model.OWLLiteral.__slots__"]], "__slots__ (owlapy.model.owlnamedindividual attribute)": [[4, "owlapy.model.OWLNamedIndividual.__slots__"]], "__slots__ (owlapy.model.owlnarybooleanclassexpression attribute)": [[4, "owlapy.model.OWLNaryBooleanClassExpression.__slots__"]], "__slots__ (owlapy.model.owlnarydatarange attribute)": [[4, "owlapy.model.OWLNaryDataRange.__slots__"]], "__slots__ (owlapy.model.owlobject attribute)": [[4, "owlapy.model.OWLObject.__slots__"]], "__slots__ (owlapy.model.owlobjectallvaluesfrom attribute)": [[4, "owlapy.model.OWLObjectAllValuesFrom.__slots__"]], "__slots__ (owlapy.model.owlobjectcardinalityrestriction attribute)": [[4, "owlapy.model.OWLObjectCardinalityRestriction.__slots__"]], "__slots__ (owlapy.model.owlobjectcomplementof attribute)": [[4, "owlapy.model.OWLObjectComplementOf.__slots__"]], "__slots__ (owlapy.model.owlobjectexactcardinality attribute)": [[4, "owlapy.model.OWLObjectExactCardinality.__slots__"]], "__slots__ (owlapy.model.owlobjecthasself attribute)": [[4, "owlapy.model.OWLObjectHasSelf.__slots__"]], "__slots__ (owlapy.model.owlobjecthasvalue attribute)": [[4, "owlapy.model.OWLObjectHasValue.__slots__"]], "__slots__ (owlapy.model.owlobjectintersectionof attribute)": [[4, "owlapy.model.OWLObjectIntersectionOf.__slots__"]], "__slots__ (owlapy.model.owlobjectmaxcardinality attribute)": [[4, "owlapy.model.OWLObjectMaxCardinality.__slots__"]], "__slots__ (owlapy.model.owlobjectmincardinality attribute)": [[4, "owlapy.model.OWLObjectMinCardinality.__slots__"]], "__slots__ (owlapy.model.owlobjectoneof attribute)": [[4, "owlapy.model.OWLObjectOneOf.__slots__"]], "__slots__ (owlapy.model.owlobjectproperty attribute)": [[4, "owlapy.model.OWLObjectProperty.__slots__"]], "__slots__ (owlapy.model.owlobjectpropertydomainaxiom attribute)": [[4, "owlapy.model.OWLObjectPropertyDomainAxiom.__slots__"]], "__slots__ (owlapy.model.owlobjectpropertyexpression attribute)": [[4, "owlapy.model.OWLObjectPropertyExpression.__slots__"]], "__slots__ (owlapy.model.owlobjectpropertyrangeaxiom attribute)": [[4, "owlapy.model.OWLObjectPropertyRangeAxiom.__slots__"]], "__slots__ (owlapy.model.owlobjectrestriction attribute)": [[4, "owlapy.model.OWLObjectRestriction.__slots__"]], "__slots__ (owlapy.model.owlobjectsomevaluesfrom attribute)": [[4, "owlapy.model.OWLObjectSomeValuesFrom.__slots__"]], "__slots__ (owlapy.model.owlobjectunionof attribute)": [[4, "owlapy.model.OWLObjectUnionOf.__slots__"]], "__slots__ (owlapy.model.owlontology attribute)": [[4, "owlapy.model.OWLOntology.__slots__"]], "__slots__ (owlapy.model.owlontologychange attribute)": [[4, "owlapy.model.OWLOntologyChange.__slots__"]], "__slots__ (owlapy.model.owlontologyid attribute)": [[4, "owlapy.model.OWLOntologyID.__slots__"]], "__slots__ (owlapy.model.owlproperty attribute)": [[4, "owlapy.model.OWLProperty.__slots__"]], "__slots__ (owlapy.model.owlpropertyexpression attribute)": [[4, "owlapy.model.OWLPropertyExpression.__slots__"]], "__slots__ (owlapy.model.owlquantifieddatarestriction attribute)": [[4, "owlapy.model.OWLQuantifiedDataRestriction.__slots__"]], "__slots__ (owlapy.model.owlquantifiedobjectrestriction attribute)": [[4, "owlapy.model.OWLQuantifiedObjectRestriction.__slots__"]], "__slots__ (owlapy.model.owlquantifiedrestriction attribute)": [[4, "owlapy.model.OWLQuantifiedRestriction.__slots__"]], "__slots__ (owlapy.model.owlreasoner attribute)": [[4, "owlapy.model.OWLReasoner.__slots__"]], "__slots__ (owlapy.model.owlrestriction attribute)": [[4, "owlapy.model.OWLRestriction.__slots__"]], "add_axiom() (owlapy.model.owlontologymanager method)": [[4, "owlapy.model.OWLOntologyManager.add_axiom"]], "annotations() (owlapy.model.owlaxiom method)": [[4, "owlapy.model.OWLAxiom.annotations"]], "apply_change() (owlapy.model.owlontologymanager method)": [[4, "owlapy.model.OWLOntologyManager.apply_change"]], "as_anonymous_individual() (owlapy.model.owlannotationobject method)": [[4, "owlapy.model.OWLAnnotationObject.as_anonymous_individual"]], "as_intersection_of_min_max() (owlapy.model.owldataexactcardinality method)": [[4, "owlapy.model.OWLDataExactCardinality.as_intersection_of_min_max"]], "as_intersection_of_min_max() (owlapy.model.owlobjectexactcardinality method)": [[4, "owlapy.model.OWLObjectExactCardinality.as_intersection_of_min_max"]], "as_iri() (owlapy.model.iri method)": [[4, "owlapy.model.IRI.as_iri"]], "as_iri() (owlapy.model.owlannotationobject method)": [[4, "owlapy.model.OWLAnnotationObject.as_iri"]], "as_literal() (owlapy.model.owlannotationvalue method)": [[4, "owlapy.model.OWLAnnotationValue.as_literal"]], "as_literal() (owlapy.model.owlliteral method)": [[4, "owlapy.model.OWLLiteral.as_literal"]], "as_object_union_of() (owlapy.model.owlobjectoneof method)": [[4, "owlapy.model.OWLObjectOneOf.as_object_union_of"]], "as_some_values_from() (owlapy.model.owldatahasvalue method)": [[4, "owlapy.model.OWLDataHasValue.as_some_values_from"]], "as_some_values_from() (owlapy.model.owlobjecthasvalue method)": [[4, "owlapy.model.OWLObjectHasValue.as_some_values_from"]], "as_str() (owlapy.model.iri method)": [[4, "owlapy.model.IRI.as_str"]], "classes_in_signature() (owlapy.model.owlontology method)": [[4, "owlapy.model.OWLOntology.classes_in_signature"]], "contains_named_equivalent_class() (owlapy.model.owlequivalentclassesaxiom method)": [[4, "owlapy.model.OWLEquivalentClassesAxiom.contains_named_equivalent_class"]], "contains_owl_nothing() (owlapy.model.owlequivalentclassesaxiom method)": [[4, "owlapy.model.OWLEquivalentClassesAxiom.contains_owl_nothing"]], "contains_owl_thing() (owlapy.model.owlequivalentclassesaxiom method)": [[4, "owlapy.model.OWLEquivalentClassesAxiom.contains_owl_thing"]], "create() (owlapy.model.iri static method)": [[4, "owlapy.model.IRI.create"]], "create_ontology() (owlapy.model.owlontologymanager method)": [[4, "owlapy.model.OWLOntologyManager.create_ontology"]], "data_properties_in_signature() (owlapy.model.owlontology method)": [[4, "owlapy.model.OWLOntology.data_properties_in_signature"]], "data_property_domain_axioms() (owlapy.model.owlontology method)": [[4, "owlapy.model.OWLOntology.data_property_domain_axioms"]], "data_property_domains() (owlapy.model.owlreasoner method)": [[4, "owlapy.model.OWLReasoner.data_property_domains"]], "data_property_range_axioms() (owlapy.model.owlontology method)": [[4, "owlapy.model.OWLOntology.data_property_range_axioms"]], "data_property_values() (owlapy.model.owlreasoner method)": [[4, "owlapy.model.OWLReasoner.data_property_values"]], "different_individuals() (owlapy.model.owlreasoner method)": [[4, "owlapy.model.OWLReasoner.different_individuals"]], "disjoint_classes() (owlapy.model.owlreasoner method)": [[4, "owlapy.model.OWLReasoner.disjoint_classes"]], "disjoint_data_properties() (owlapy.model.owlreasoner method)": [[4, "owlapy.model.OWLReasoner.disjoint_data_properties"]], "disjoint_object_properties() (owlapy.model.owlreasoner method)": [[4, "owlapy.model.OWLReasoner.disjoint_object_properties"]], "equivalent_classes() (owlapy.model.owlreasoner method)": [[4, "owlapy.model.OWLReasoner.equivalent_classes"]], "equivalent_classes_axioms() (owlapy.model.owlontology method)": [[4, "owlapy.model.OWLOntology.equivalent_classes_axioms"]], "equivalent_data_properties() (owlapy.model.owlreasoner method)": [[4, "owlapy.model.OWLReasoner.equivalent_data_properties"]], "equivalent_object_properties() (owlapy.model.owlreasoner method)": [[4, "owlapy.model.OWLReasoner.equivalent_object_properties"]], "flush() (owlapy.model.owlreasoner method)": [[4, "owlapy.model.OWLReasoner.flush"]], "from_str() (owlapy.model.owlfacet static method)": [[4, "owlapy.model.OWLFacet.from_str"]], "general_class_axioms() (owlapy.model.owlontology method)": [[4, "owlapy.model.OWLOntology.general_class_axioms"]], "get_cardinality() (owlapy.model.hascardinality method)": [[4, "owlapy.model.HasCardinality.get_cardinality"]], "get_cardinality() (owlapy.model.owlcardinalityrestriction method)": [[4, "owlapy.model.OWLCardinalityRestriction.get_cardinality"]], "get_data_range() (owlapy.model.owldatacomplementof method)": [[4, "owlapy.model.OWLDataComplementOf.get_data_range"]], "get_datatype() (owlapy.model.owldatatyperestriction method)": [[4, "owlapy.model.OWLDatatypeRestriction.get_datatype"]], "get_datatype() (owlapy.model.owlliteral method)": [[4, "owlapy.model.OWLLiteral.get_datatype"]], "get_default_document_iri() (owlapy.model.owlontologyid method)": [[4, "owlapy.model.OWLOntologyID.get_default_document_iri"]], "get_facet() (owlapy.model.owlfacetrestriction method)": [[4, "owlapy.model.OWLFacetRestriction.get_facet"]], "get_facet_restrictions() (owlapy.model.owldatatyperestriction method)": [[4, "owlapy.model.OWLDatatypeRestriction.get_facet_restrictions"]], "get_facet_value() (owlapy.model.owlfacetrestriction method)": [[4, "owlapy.model.OWLFacetRestriction.get_facet_value"]], "get_filler() (owlapy.model.hasfiller method)": [[4, "owlapy.model.HasFiller.get_filler"]], "get_filler() (owlapy.model.owlcardinalityrestriction method)": [[4, "owlapy.model.OWLCardinalityRestriction.get_filler"]], "get_filler() (owlapy.model.owlhasvaluerestriction method)": [[4, "owlapy.model.OWLHasValueRestriction.get_filler"]], "get_filler() (owlapy.model.owlquantifieddatarestriction method)": [[4, "owlapy.model.OWLQuantifiedDataRestriction.get_filler"]], "get_filler() (owlapy.model.owlquantifiedobjectrestriction method)": [[4, "owlapy.model.OWLQuantifiedObjectRestriction.get_filler"]], "get_import_declaration() (owlapy.model.addimport method)": [[4, "owlapy.model.AddImport.get_import_declaration"]], "get_inverse_property() (owlapy.model.owlobjectproperty method)": [[4, "owlapy.model.OWLObjectProperty.get_inverse_property"]], "get_inverse_property() (owlapy.model.owlobjectpropertyexpression method)": [[4, "owlapy.model.OWLObjectPropertyExpression.get_inverse_property"]], "get_iri() (owlapy.model.hasiri method)": [[4, "owlapy.model.HasIRI.get_iri"]], "get_iri() (owlapy.model.owlclass method)": [[4, "owlapy.model.OWLClass.get_iri"]], "get_iri() (owlapy.model.owldataproperty method)": [[4, "owlapy.model.OWLDataProperty.get_iri"]], "get_iri() (owlapy.model.owldatatype method)": [[4, "owlapy.model.OWLDatatype.get_iri"]], "get_iri() (owlapy.model.owlimportsdeclaration method)": [[4, "owlapy.model.OWLImportsDeclaration.get_iri"]], "get_iri() (owlapy.model.owlnamedindividual method)": [[4, "owlapy.model.OWLNamedIndividual.get_iri"]], "get_iri() (owlapy.model.owlobjectproperty method)": [[4, "owlapy.model.OWLObjectProperty.get_iri"]], "get_literal() (owlapy.model.owlliteral method)": [[4, "owlapy.model.OWLLiteral.get_literal"]], "get_named_property() (owlapy.model.owlobjectproperty method)": [[4, "owlapy.model.OWLObjectProperty.get_named_property"]], "get_named_property() (owlapy.model.owlobjectpropertyexpression method)": [[4, "owlapy.model.OWLObjectPropertyExpression.get_named_property"]], "get_namespace() (owlapy.model.iri method)": [[4, "owlapy.model.IRI.get_namespace"]], "get_nnf() (owlapy.model.owlanonymousclassexpression method)": [[4, "owlapy.model.OWLAnonymousClassExpression.get_nnf"]], "get_nnf() (owlapy.model.owlclass method)": [[4, "owlapy.model.OWLClass.get_nnf"]], "get_nnf() (owlapy.model.owlclassexpression method)": [[4, "owlapy.model.OWLClassExpression.get_nnf"]], "get_object_complement_of() (owlapy.model.owlanonymousclassexpression method)": [[4, "owlapy.model.OWLAnonymousClassExpression.get_object_complement_of"]], "get_object_complement_of() (owlapy.model.owlclass method)": [[4, "owlapy.model.OWLClass.get_object_complement_of"]], "get_object_complement_of() (owlapy.model.owlclassexpression method)": [[4, "owlapy.model.OWLClassExpression.get_object_complement_of"]], "get_ontology() (owlapy.model.owlontologychange method)": [[4, "owlapy.model.OWLOntologyChange.get_ontology"]], "get_ontology_id() (owlapy.model.owlontology method)": [[4, "owlapy.model.OWLOntology.get_ontology_id"]], "get_ontology_iri() (owlapy.model.owlontologyid method)": [[4, "owlapy.model.OWLOntologyID.get_ontology_iri"]], "get_operand() (owlapy.model.owlobjectcomplementof method)": [[4, "owlapy.model.OWLObjectComplementOf.get_operand"]], "get_owl_ontology_manager() (owlapy.model.owlontology method)": [[4, "owlapy.model.OWLOntology.get_owl_ontology_manager"]], "get_property() (owlapy.model.owldataallvaluesfrom method)": [[4, "owlapy.model.OWLDataAllValuesFrom.get_property"]], "get_property() (owlapy.model.owldatacardinalityrestriction method)": [[4, "owlapy.model.OWLDataCardinalityRestriction.get_property"]], "get_property() (owlapy.model.owldatahasvalue method)": [[4, "owlapy.model.OWLDataHasValue.get_property"]], "get_property() (owlapy.model.owldatasomevaluesfrom method)": [[4, "owlapy.model.OWLDataSomeValuesFrom.get_property"]], "get_property() (owlapy.model.owlobjectallvaluesfrom method)": [[4, "owlapy.model.OWLObjectAllValuesFrom.get_property"]], "get_property() (owlapy.model.owlobjectcardinalityrestriction method)": [[4, "owlapy.model.OWLObjectCardinalityRestriction.get_property"]], "get_property() (owlapy.model.owlobjecthasself method)": [[4, "owlapy.model.OWLObjectHasSelf.get_property"]], "get_property() (owlapy.model.owlobjecthasvalue method)": [[4, "owlapy.model.OWLObjectHasValue.get_property"]], "get_property() (owlapy.model.owlobjectrestriction method)": [[4, "owlapy.model.OWLObjectRestriction.get_property"]], "get_property() (owlapy.model.owlobjectsomevaluesfrom method)": [[4, "owlapy.model.OWLObjectSomeValuesFrom.get_property"]], "get_property() (owlapy.model.owlrestriction method)": [[4, "owlapy.model.OWLRestriction.get_property"]], "get_remainder() (owlapy.model.iri method)": [[4, "owlapy.model.IRI.get_remainder"]], "get_root_ontology() (owlapy.model.owlreasoner method)": [[4, "owlapy.model.OWLReasoner.get_root_ontology"]], "get_short_form() (owlapy.model.iri method)": [[4, "owlapy.model.IRI.get_short_form"]], "get_version_iri() (owlapy.model.owlontologyid method)": [[4, "owlapy.model.OWLOntologyID.get_version_iri"]], "individuals() (owlapy.model.owlobjectoneof method)": [[4, "owlapy.model.OWLObjectOneOf.individuals"]], "individuals_in_signature() (owlapy.model.owlontology method)": [[4, "owlapy.model.OWLOntology.individuals_in_signature"]], "instances() (owlapy.model.owlreasoner method)": [[4, "owlapy.model.OWLReasoner.instances"]], "iri (owlapy.model.owlnamedindividual property)": [[4, "owlapy.model.OWLNamedIndividual.iri"]], "iri (owlapy.model.owlobjectproperty property)": [[4, "owlapy.model.OWLObjectProperty.iri"]], "is_annotated() (owlapy.model.owlaxiom method)": [[4, "owlapy.model.OWLAxiom.is_annotated"]], "is_annotation_axiom() (owlapy.model.owlaxiom method)": [[4, "owlapy.model.OWLAxiom.is_annotation_axiom"]], "is_anonymous() (owlapy.model.owlentity method)": [[4, "owlapy.model.OWLEntity.is_anonymous"]], "is_anonymous() (owlapy.model.owlobject method)": [[4, "owlapy.model.OWLObject.is_anonymous"]], "is_anonymous() (owlapy.model.owlontology method)": [[4, "owlapy.model.OWLOntology.is_anonymous"]], "is_anonymous() (owlapy.model.owlontologyid method)": [[4, "owlapy.model.OWLOntologyID.is_anonymous"]], "is_boolean() (owlapy.model.owlliteral method)": [[4, "owlapy.model.OWLLiteral.is_boolean"]], "is_data_property_expression() (owlapy.model.owldatapropertyexpression method)": [[4, "owlapy.model.OWLDataPropertyExpression.is_data_property_expression"]], "is_data_property_expression() (owlapy.model.owlpropertyexpression method)": [[4, "owlapy.model.OWLPropertyExpression.is_data_property_expression"]], "is_data_restriction() (owlapy.model.owldatarestriction method)": [[4, "owlapy.model.OWLDataRestriction.is_data_restriction"]], "is_data_restriction() (owlapy.model.owlrestriction method)": [[4, "owlapy.model.OWLRestriction.is_data_restriction"]], "is_date() (owlapy.model.owlliteral method)": [[4, "owlapy.model.OWLLiteral.is_date"]], "is_datetime() (owlapy.model.owlliteral method)": [[4, "owlapy.model.OWLLiteral.is_datetime"]], "is_double() (owlapy.model.owlliteral method)": [[4, "owlapy.model.OWLLiteral.is_double"]], "is_duration() (owlapy.model.owlliteral method)": [[4, "owlapy.model.OWLLiteral.is_duration"]], "is_integer() (owlapy.model.owlliteral method)": [[4, "owlapy.model.OWLLiteral.is_integer"]], "is_isolated() (owlapy.model.owlreasoner method)": [[4, "owlapy.model.OWLReasoner.is_isolated"]], "is_literal() (owlapy.model.owlannotationvalue method)": [[4, "owlapy.model.OWLAnnotationValue.is_literal"]], "is_literal() (owlapy.model.owlliteral method)": [[4, "owlapy.model.OWLLiteral.is_literal"]], "is_logical_axiom() (owlapy.model.owlaxiom method)": [[4, "owlapy.model.OWLAxiom.is_logical_axiom"]], "is_nothing() (owlapy.model.iri method)": [[4, "owlapy.model.IRI.is_nothing"]], "is_object_property_expression() (owlapy.model.owlobjectpropertyexpression method)": [[4, "owlapy.model.OWLObjectPropertyExpression.is_object_property_expression"]], "is_object_property_expression() (owlapy.model.owlpropertyexpression method)": [[4, "owlapy.model.OWLPropertyExpression.is_object_property_expression"]], "is_object_restriction() (owlapy.model.owlobjectrestriction method)": [[4, "owlapy.model.OWLObjectRestriction.is_object_restriction"]], "is_object_restriction() (owlapy.model.owlrestriction method)": [[4, "owlapy.model.OWLRestriction.is_object_restriction"]], "is_owl_nothing() (owlapy.model.owlanonymousclassexpression method)": [[4, "owlapy.model.OWLAnonymousClassExpression.is_owl_nothing"]], "is_owl_nothing() (owlapy.model.owlclass method)": [[4, "owlapy.model.OWLClass.is_owl_nothing"]], "is_owl_nothing() (owlapy.model.owlclassexpression method)": [[4, "owlapy.model.OWLClassExpression.is_owl_nothing"]], "is_owl_thing() (owlapy.model.owlanonymousclassexpression method)": [[4, "owlapy.model.OWLAnonymousClassExpression.is_owl_thing"]], "is_owl_thing() (owlapy.model.owlclass method)": [[4, "owlapy.model.OWLClass.is_owl_thing"]], "is_owl_thing() (owlapy.model.owlclassexpression method)": [[4, "owlapy.model.OWLClassExpression.is_owl_thing"]], "is_owl_top_data_property() (owlapy.model.owldataproperty method)": [[4, "owlapy.model.OWLDataProperty.is_owl_top_data_property"]], "is_owl_top_data_property() (owlapy.model.owlpropertyexpression method)": [[4, "owlapy.model.OWLPropertyExpression.is_owl_top_data_property"]], "is_owl_top_object_property() (owlapy.model.owlobjectproperty method)": [[4, "owlapy.model.OWLObjectProperty.is_owl_top_object_property"]], "is_owl_top_object_property() (owlapy.model.owlpropertyexpression method)": [[4, "owlapy.model.OWLPropertyExpression.is_owl_top_object_property"]], "is_reserved_vocabulary() (owlapy.model.iri method)": [[4, "owlapy.model.IRI.is_reserved_vocabulary"]], "is_string() (owlapy.model.owlliteral method)": [[4, "owlapy.model.OWLLiteral.is_string"]], "is_thing() (owlapy.model.iri method)": [[4, "owlapy.model.IRI.is_thing"]], "is_using_triplestore() (owlapy.model.owlreasoner method)": [[4, "owlapy.model.OWLReasoner.is_using_triplestore"]], "load_ontology() (owlapy.model.owlontologymanager method)": [[4, "owlapy.model.OWLOntologyManager.load_ontology"]], "named_classes() (owlapy.model.owlequivalentclassesaxiom method)": [[4, "owlapy.model.OWLEquivalentClassesAxiom.named_classes"]], "object_properties_in_signature() (owlapy.model.owlontology method)": [[4, "owlapy.model.OWLOntology.object_properties_in_signature"]], "object_property_domain_axioms() (owlapy.model.owlontology method)": [[4, "owlapy.model.OWLOntology.object_property_domain_axioms"]], "object_property_domains() (owlapy.model.owlreasoner method)": [[4, "owlapy.model.OWLReasoner.object_property_domains"]], "object_property_range_axioms() (owlapy.model.owlontology method)": [[4, "owlapy.model.OWLOntology.object_property_range_axioms"]], "object_property_ranges() (owlapy.model.owlreasoner method)": [[4, "owlapy.model.OWLReasoner.object_property_ranges"]], "object_property_values() (owlapy.model.owlreasoner method)": [[4, "owlapy.model.OWLReasoner.object_property_values"]], "operands() (owlapy.model.hasoperands method)": [[4, "owlapy.model.HasOperands.operands"]], "operands() (owlapy.model.owldataoneof method)": [[4, "owlapy.model.OWLDataOneOf.operands"]], "operands() (owlapy.model.owlnarybooleanclassexpression method)": [[4, "owlapy.model.OWLNaryBooleanClassExpression.operands"]], "operands() (owlapy.model.owlnarydatarange method)": [[4, "owlapy.model.OWLNaryDataRange.operands"]], "operands() (owlapy.model.owlobjectcomplementof method)": [[4, "owlapy.model.OWLObjectComplementOf.operands"]], "operands() (owlapy.model.owlobjectoneof method)": [[4, "owlapy.model.OWLObjectOneOf.operands"]], "operator (owlapy.model.owlfacet property)": [[4, "owlapy.model.OWLFacet.operator"]], "owlapy.model": [[4, "module-owlapy.model"]], "parse_boolean() (owlapy.model.owlliteral method)": [[4, "owlapy.model.OWLLiteral.parse_boolean"]], "parse_date() (owlapy.model.owlliteral method)": [[4, "owlapy.model.OWLLiteral.parse_date"]], "parse_datetime() (owlapy.model.owlliteral method)": [[4, "owlapy.model.OWLLiteral.parse_datetime"]], "parse_double() (owlapy.model.owlliteral method)": [[4, "owlapy.model.OWLLiteral.parse_double"]], "parse_duration() (owlapy.model.owlliteral method)": [[4, "owlapy.model.OWLLiteral.parse_duration"]], "parse_integer() (owlapy.model.owlliteral method)": [[4, "owlapy.model.OWLLiteral.parse_integer"]], "parse_string() (owlapy.model.owlliteral method)": [[4, "owlapy.model.OWLLiteral.parse_string"]], "reminder (owlapy.model.iri property)": [[4, "owlapy.model.IRI.reminder"]], "reminder (owlapy.model.owlclass property)": [[4, "owlapy.model.OWLClass.reminder"]], "remove_axiom() (owlapy.model.owlontologymanager method)": [[4, "owlapy.model.OWLOntologyManager.remove_axiom"]], "same_individuals() (owlapy.model.owlreasoner method)": [[4, "owlapy.model.OWLReasoner.same_individuals"]], "save_ontology() (owlapy.model.owlontologymanager method)": [[4, "owlapy.model.OWLOntologyManager.save_ontology"]], "str (owlapy.model.iri property)": [[4, "owlapy.model.IRI.str"]], "str (owlapy.model.owlclass property)": [[4, "owlapy.model.OWLClass.str"]], "str (owlapy.model.owlnamedindividual property)": [[4, "owlapy.model.OWLNamedIndividual.str"]], "str (owlapy.model.owlobjectproperty property)": [[4, "owlapy.model.OWLObjectProperty.str"]], "sub_classes() (owlapy.model.owlreasoner method)": [[4, "owlapy.model.OWLReasoner.sub_classes"]], "sub_data_properties() (owlapy.model.owlreasoner method)": [[4, "owlapy.model.OWLReasoner.sub_data_properties"]], "sub_object_properties() (owlapy.model.owlreasoner method)": [[4, "owlapy.model.OWLReasoner.sub_object_properties"]], "super_classes() (owlapy.model.owlreasoner method)": [[4, "owlapy.model.OWLReasoner.super_classes"]], "super_data_properties() (owlapy.model.owlreasoner method)": [[4, "owlapy.model.OWLReasoner.super_data_properties"]], "super_object_properties() (owlapy.model.owlreasoner method)": [[4, "owlapy.model.OWLReasoner.super_object_properties"]], "symbolic_form (owlapy.model.owlfacet property)": [[4, "owlapy.model.OWLFacet.symbolic_form"]], "to_python() (owlapy.model.owlliteral method)": [[4, "owlapy.model.OWLLiteral.to_python"]], "to_string_id() (owlapy.model.owlentity method)": [[4, "owlapy.model.OWLEntity.to_string_id"]], "type_index (owlapy.model.hasindex attribute)": [[4, "owlapy.model.HasIndex.type_index"]], "type_index (owlapy.model.iri attribute)": [[4, "owlapy.model.IRI.type_index"]], "type_index (owlapy.model.owlclass attribute)": [[4, "owlapy.model.OWLClass.type_index"]], "type_index (owlapy.model.owldataallvaluesfrom attribute)": [[4, "owlapy.model.OWLDataAllValuesFrom.type_index"]], "type_index (owlapy.model.owldatacomplementof attribute)": [[4, "owlapy.model.OWLDataComplementOf.type_index"]], "type_index (owlapy.model.owldataexactcardinality attribute)": [[4, "owlapy.model.OWLDataExactCardinality.type_index"]], "type_index (owlapy.model.owldatahasvalue attribute)": [[4, "owlapy.model.OWLDataHasValue.type_index"]], "type_index (owlapy.model.owldataintersectionof attribute)": [[4, "owlapy.model.OWLDataIntersectionOf.type_index"]], "type_index (owlapy.model.owldatamaxcardinality attribute)": [[4, "owlapy.model.OWLDataMaxCardinality.type_index"]], "type_index (owlapy.model.owldatamincardinality attribute)": [[4, "owlapy.model.OWLDataMinCardinality.type_index"]], "type_index (owlapy.model.owldataoneof attribute)": [[4, "owlapy.model.OWLDataOneOf.type_index"]], "type_index (owlapy.model.owldataproperty attribute)": [[4, "owlapy.model.OWLDataProperty.type_index"]], "type_index (owlapy.model.owldatasomevaluesfrom attribute)": [[4, "owlapy.model.OWLDataSomeValuesFrom.type_index"]], "type_index (owlapy.model.owldataunionof attribute)": [[4, "owlapy.model.OWLDataUnionOf.type_index"]], "type_index (owlapy.model.owldatatype attribute)": [[4, "owlapy.model.OWLDatatype.type_index"]], "type_index (owlapy.model.owldatatyperestriction attribute)": [[4, "owlapy.model.OWLDatatypeRestriction.type_index"]], "type_index (owlapy.model.owlfacetrestriction attribute)": [[4, "owlapy.model.OWLFacetRestriction.type_index"]], "type_index (owlapy.model.owlliteral attribute)": [[4, "owlapy.model.OWLLiteral.type_index"]], "type_index (owlapy.model.owlnamedindividual attribute)": [[4, "owlapy.model.OWLNamedIndividual.type_index"]], "type_index (owlapy.model.owlobjectallvaluesfrom attribute)": [[4, "owlapy.model.OWLObjectAllValuesFrom.type_index"]], "type_index (owlapy.model.owlobjectcomplementof attribute)": [[4, "owlapy.model.OWLObjectComplementOf.type_index"]], "type_index (owlapy.model.owlobjectexactcardinality attribute)": [[4, "owlapy.model.OWLObjectExactCardinality.type_index"]], "type_index (owlapy.model.owlobjecthasself attribute)": [[4, "owlapy.model.OWLObjectHasSelf.type_index"]], "type_index (owlapy.model.owlobjecthasvalue attribute)": [[4, "owlapy.model.OWLObjectHasValue.type_index"]], "type_index (owlapy.model.owlobjectintersectionof attribute)": [[4, "owlapy.model.OWLObjectIntersectionOf.type_index"]], "type_index (owlapy.model.owlobjectmaxcardinality attribute)": [[4, "owlapy.model.OWLObjectMaxCardinality.type_index"]], "type_index (owlapy.model.owlobjectmincardinality attribute)": [[4, "owlapy.model.OWLObjectMinCardinality.type_index"]], "type_index (owlapy.model.owlobjectoneof attribute)": [[4, "owlapy.model.OWLObjectOneOf.type_index"]], "type_index (owlapy.model.owlobjectproperty attribute)": [[4, "owlapy.model.OWLObjectProperty.type_index"]], "type_index (owlapy.model.owlobjectsomevaluesfrom attribute)": [[4, "owlapy.model.OWLObjectSomeValuesFrom.type_index"]], "type_index (owlapy.model.owlobjectunionof attribute)": [[4, "owlapy.model.OWLObjectUnionOf.type_index"]], "type_index (owlapy.model.owlontology attribute)": [[4, "owlapy.model.OWLOntology.type_index"]], "types() (owlapy.model.owlreasoner method)": [[4, "owlapy.model.OWLReasoner.types"]], "values() (owlapy.model.owldataoneof method)": [[4, "owlapy.model.OWLDataOneOf.values"]], "owldatatypemaxexclusiverestriction() (in module owlapy.model.providers)": [[5, "owlapy.model.providers.OWLDatatypeMaxExclusiveRestriction"]], "owldatatypemaxinclusiverestriction() (in module owlapy.model.providers)": [[5, "owlapy.model.providers.OWLDatatypeMaxInclusiveRestriction"]], "owldatatypeminexclusiverestriction() (in module owlapy.model.providers)": [[5, "owlapy.model.providers.OWLDatatypeMinExclusiveRestriction"]], "owldatatypemininclusiverestriction() (in module owlapy.model.providers)": [[5, "owlapy.model.providers.OWLDatatypeMinInclusiveRestriction"]], "owldatatypeminmaxexclusiverestriction() (in module owlapy.model.providers)": [[5, "owlapy.model.providers.OWLDatatypeMinMaxExclusiveRestriction"]], "owldatatypeminmaxinclusiverestriction() (in module owlapy.model.providers)": [[5, "owlapy.model.providers.OWLDatatypeMinMaxInclusiveRestriction"]], "restriction_literals (in module owlapy.model.providers)": [[5, "owlapy.model.providers.Restriction_Literals"]], "owlapy.model.providers": [[5, "module-owlapy.model.providers"]], "namespaces (class in owlapy.namespaces)": [[6, "owlapy.namespaces.Namespaces"]], "owl (in module owlapy.namespaces)": [[6, "owlapy.namespaces.OWL"]], "rdf (in module owlapy.namespaces)": [[6, "owlapy.namespaces.RDF"]], "rdfs (in module owlapy.namespaces)": [[6, "owlapy.namespaces.RDFS"]], "xsd (in module owlapy.namespaces)": [[6, "owlapy.namespaces.XSD"]], "__eq__() (owlapy.namespaces.namespaces method)": [[6, "owlapy.namespaces.Namespaces.__eq__"]], "__hash__() (owlapy.namespaces.namespaces method)": [[6, "owlapy.namespaces.Namespaces.__hash__"]], "__repr__() (owlapy.namespaces.namespaces method)": [[6, "owlapy.namespaces.Namespaces.__repr__"]], "__slots__ (owlapy.namespaces.namespaces attribute)": [[6, "owlapy.namespaces.Namespaces.__slots__"]], "ns (owlapy.namespaces.namespaces property)": [[6, "owlapy.namespaces.Namespaces.ns"]], "owlapy.namespaces": [[6, "module-owlapy.namespaces"]], "prefix (owlapy.namespaces.namespaces property)": [[6, "owlapy.namespaces.Namespaces.prefix"]], "owl2sparqlconverter (class in owlapy.owl2sparql.converter)": [[7, "owlapy.owl2sparql.converter.Owl2SparqlConverter"]], "variablesmapping (class in owlapy.owl2sparql.converter)": [[7, "owlapy.owl2sparql.converter.VariablesMapping"]], "__contains__() (owlapy.owl2sparql.converter.variablesmapping method)": [[7, "owlapy.owl2sparql.converter.VariablesMapping.__contains__"]], "__getitem__() (owlapy.owl2sparql.converter.variablesmapping method)": [[7, "owlapy.owl2sparql.converter.VariablesMapping.__getitem__"]], "__slots__ (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[7, "owlapy.owl2sparql.converter.Owl2SparqlConverter.__slots__"]], "__slots__ (owlapy.owl2sparql.converter.variablesmapping attribute)": [[7, "owlapy.owl2sparql.converter.VariablesMapping.__slots__"]], "append() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[7, "owlapy.owl2sparql.converter.Owl2SparqlConverter.append"]], "append_triple() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[7, "owlapy.owl2sparql.converter.Owl2SparqlConverter.append_triple"]], "as_query() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[7, "owlapy.owl2sparql.converter.Owl2SparqlConverter.as_query"]], "ce (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[7, "owlapy.owl2sparql.converter.Owl2SparqlConverter.ce"]], "cnt (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[7, "owlapy.owl2sparql.converter.Owl2SparqlConverter.cnt"]], "convert() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[7, "owlapy.owl2sparql.converter.Owl2SparqlConverter.convert"]], "converter (in module owlapy.owl2sparql.converter)": [[7, "owlapy.owl2sparql.converter.converter"]], "current_variable (owlapy.owl2sparql.converter.owl2sparqlconverter property)": [[7, "owlapy.owl2sparql.converter.Owl2SparqlConverter.current_variable"]], "get_variable() (owlapy.owl2sparql.converter.variablesmapping method)": [[7, "owlapy.owl2sparql.converter.VariablesMapping.get_variable"]], "grouping_vars (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[7, "owlapy.owl2sparql.converter.Owl2SparqlConverter.grouping_vars"]], "having_conditions (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[7, "owlapy.owl2sparql.converter.Owl2SparqlConverter.having_conditions"]], "mapping (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[7, "owlapy.owl2sparql.converter.Owl2SparqlConverter.mapping"]], "modal_depth (owlapy.owl2sparql.converter.owl2sparqlconverter property)": [[7, "owlapy.owl2sparql.converter.Owl2SparqlConverter.modal_depth"]], "new_count_var() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[7, "owlapy.owl2sparql.converter.Owl2SparqlConverter.new_count_var"]], "new_individual_variable() (owlapy.owl2sparql.converter.variablesmapping method)": [[7, "owlapy.owl2sparql.converter.VariablesMapping.new_individual_variable"]], "new_property_variable() (owlapy.owl2sparql.converter.variablesmapping method)": [[7, "owlapy.owl2sparql.converter.VariablesMapping.new_property_variable"]], "owl_expression_to_sparql() (in module owlapy.owl2sparql.converter)": [[7, "owlapy.owl2sparql.converter.owl_expression_to_sparql"]], "owlapy.owl2sparql.converter": [[7, "module-owlapy.owl2sparql.converter"]], "parent (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[7, "owlapy.owl2sparql.converter.Owl2SparqlConverter.parent"]], "parent_var (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[7, "owlapy.owl2sparql.converter.Owl2SparqlConverter.parent_var"]], "peek() (in module owlapy.owl2sparql.converter)": [[7, "owlapy.owl2sparql.converter.peek"]], "process() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[7, "owlapy.owl2sparql.converter.Owl2SparqlConverter.process"]], "properties (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[7, "owlapy.owl2sparql.converter.Owl2SparqlConverter.properties"]], "render() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[7, "owlapy.owl2sparql.converter.Owl2SparqlConverter.render"]], "sparql (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[7, "owlapy.owl2sparql.converter.Owl2SparqlConverter.sparql"]], "stack_parent() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[7, "owlapy.owl2sparql.converter.Owl2SparqlConverter.stack_parent"]], "stack_variable() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[7, "owlapy.owl2sparql.converter.Owl2SparqlConverter.stack_variable"]], "triple() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[7, "owlapy.owl2sparql.converter.Owl2SparqlConverter.triple"]], "variable_entities (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[7, "owlapy.owl2sparql.converter.Owl2SparqlConverter.variable_entities"]], "variables (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[7, "owlapy.owl2sparql.converter.Owl2SparqlConverter.variables"]], "owlapy.owl2sparql": [[8, "module-owlapy.owl2sparql"]], "owlannotationobject (class in owlapy.owl_annotation)": [[9, "owlapy.owl_annotation.OWLAnnotationObject"]], "owlannotationsubject (class in owlapy.owl_annotation)": [[9, "owlapy.owl_annotation.OWLAnnotationSubject"]], "owlannotationvalue (class in owlapy.owl_annotation)": [[9, "owlapy.owl_annotation.OWLAnnotationValue"]], "__slots__ (owlapy.owl_annotation.owlannotationobject attribute)": [[9, "owlapy.owl_annotation.OWLAnnotationObject.__slots__"]], "__slots__ (owlapy.owl_annotation.owlannotationsubject attribute)": [[9, "owlapy.owl_annotation.OWLAnnotationSubject.__slots__"]], "__slots__ (owlapy.owl_annotation.owlannotationvalue attribute)": [[9, "owlapy.owl_annotation.OWLAnnotationValue.__slots__"]], "as_anonymous_individual() (owlapy.owl_annotation.owlannotationobject method)": [[9, "owlapy.owl_annotation.OWLAnnotationObject.as_anonymous_individual"]], "as_iri() (owlapy.owl_annotation.owlannotationobject method)": [[9, "owlapy.owl_annotation.OWLAnnotationObject.as_iri"]], "as_literal() (owlapy.owl_annotation.owlannotationvalue method)": [[9, "owlapy.owl_annotation.OWLAnnotationValue.as_literal"]], "is_literal() (owlapy.owl_annotation.owlannotationvalue method)": [[9, "owlapy.owl_annotation.OWLAnnotationValue.is_literal"]], "owlapy.owl_annotation": [[9, "module-owlapy.owl_annotation"]], "owlannotation (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLAnnotation"]], "owlannotationassertionaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom"]], "owlannotationaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLAnnotationAxiom"]], "owlannotationproperty (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLAnnotationProperty"]], "owlannotationpropertydomainaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom"]], "owlannotationpropertyrangeaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom"]], "owlasymmetricobjectpropertyaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLAsymmetricObjectPropertyAxiom"]], "owlaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLAxiom"]], "owlclassassertionaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLClassAssertionAxiom"]], "owlclassaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLClassAxiom"]], "owldatapropertyassertionaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLDataPropertyAssertionAxiom"]], "owldatapropertyaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLDataPropertyAxiom"]], "owldatapropertycharacteristicaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom"]], "owldatapropertydomainaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLDataPropertyDomainAxiom"]], "owldatapropertyrangeaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLDataPropertyRangeAxiom"]], "owldatatypedefinitionaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom"]], "owldeclarationaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLDeclarationAxiom"]], "owldifferentindividualsaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLDifferentIndividualsAxiom"]], "owldisjointclassesaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLDisjointClassesAxiom"]], "owldisjointdatapropertiesaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLDisjointDataPropertiesAxiom"]], "owldisjointobjectpropertiesaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLDisjointObjectPropertiesAxiom"]], "owldisjointunionaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLDisjointUnionAxiom"]], "owlequivalentclassesaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLEquivalentClassesAxiom"]], "owlequivalentdatapropertiesaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLEquivalentDataPropertiesAxiom"]], "owlequivalentobjectpropertiesaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLEquivalentObjectPropertiesAxiom"]], "owlfunctionaldatapropertyaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLFunctionalDataPropertyAxiom"]], "owlfunctionalobjectpropertyaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLFunctionalObjectPropertyAxiom"]], "owlhaskeyaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLHasKeyAxiom"]], "owlindividualaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLIndividualAxiom"]], "owlinversefunctionalobjectpropertyaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLInverseFunctionalObjectPropertyAxiom"]], "owlinverseobjectpropertiesaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom"]], "owlirreflexiveobjectpropertyaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLIrreflexiveObjectPropertyAxiom"]], "owllogicalaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLLogicalAxiom"]], "owlnaryaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLNaryAxiom"]], "owlnaryclassaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLNaryClassAxiom"]], "owlnaryindividualaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLNaryIndividualAxiom"]], "owlnarypropertyaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLNaryPropertyAxiom"]], "owlnegativedatapropertyassertionaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLNegativeDataPropertyAssertionAxiom"]], "owlnegativeobjectpropertyassertionaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLNegativeObjectPropertyAssertionAxiom"]], "owlobjectpropertyassertionaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLObjectPropertyAssertionAxiom"]], "owlobjectpropertyaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLObjectPropertyAxiom"]], "owlobjectpropertycharacteristicaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom"]], "owlobjectpropertydomainaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLObjectPropertyDomainAxiom"]], "owlobjectpropertyrangeaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLObjectPropertyRangeAxiom"]], "owlpropertyassertionaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLPropertyAssertionAxiom"]], "owlpropertyaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLPropertyAxiom"]], "owlpropertydomainaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLPropertyDomainAxiom"]], "owlpropertyrangeaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLPropertyRangeAxiom"]], "owlreflexiveobjectpropertyaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLReflexiveObjectPropertyAxiom"]], "owlsameindividualaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLSameIndividualAxiom"]], "owlsubannotationpropertyofaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom"]], "owlsubclassofaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLSubClassOfAxiom"]], "owlsubdatapropertyofaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLSubDataPropertyOfAxiom"]], "owlsubobjectpropertyofaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLSubObjectPropertyOfAxiom"]], "owlsubpropertyaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLSubPropertyAxiom"]], "owlsymmetricobjectpropertyaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLSymmetricObjectPropertyAxiom"]], "owltransitiveobjectpropertyaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLTransitiveObjectPropertyAxiom"]], "owlunarypropertyaxiom (class in owlapy.owl_axiom)": [[10, "owlapy.owl_axiom.OWLUnaryPropertyAxiom"]], "__eq__() (owlapy.owl_axiom.owlannotation method)": [[10, "owlapy.owl_axiom.OWLAnnotation.__eq__"]], "__eq__() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[10, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[10, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[10, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[10, "owlapy.owl_axiom.OWLClassAssertionAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owldatapropertycharacteristicaxiom method)": [[10, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[10, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owldeclarationaxiom method)": [[10, "owlapy.owl_axiom.OWLDeclarationAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[10, "owlapy.owl_axiom.OWLDisjointUnionAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[10, "owlapy.owl_axiom.OWLHasKeyAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[10, "owlapy.owl_axiom.OWLNaryClassAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[10, "owlapy.owl_axiom.OWLNaryIndividualAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[10, "owlapy.owl_axiom.OWLNaryPropertyAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlobjectpropertycharacteristicaxiom method)": [[10, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[10, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlpropertydomainaxiom method)": [[10, "owlapy.owl_axiom.OWLPropertyDomainAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlpropertyrangeaxiom method)": [[10, "owlapy.owl_axiom.OWLPropertyRangeAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[10, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[10, "owlapy.owl_axiom.OWLSubClassOfAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[10, "owlapy.owl_axiom.OWLSubPropertyAxiom.__eq__"]], "__hash__() (owlapy.owl_axiom.owlannotation method)": [[10, "owlapy.owl_axiom.OWLAnnotation.__hash__"]], "__hash__() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[10, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[10, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[10, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[10, "owlapy.owl_axiom.OWLClassAssertionAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owldatapropertycharacteristicaxiom method)": [[10, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[10, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owldeclarationaxiom method)": [[10, "owlapy.owl_axiom.OWLDeclarationAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[10, "owlapy.owl_axiom.OWLDisjointUnionAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[10, "owlapy.owl_axiom.OWLHasKeyAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[10, "owlapy.owl_axiom.OWLNaryClassAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[10, "owlapy.owl_axiom.OWLNaryIndividualAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[10, "owlapy.owl_axiom.OWLNaryPropertyAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlobjectpropertycharacteristicaxiom method)": [[10, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[10, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlpropertydomainaxiom method)": [[10, "owlapy.owl_axiom.OWLPropertyDomainAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlpropertyrangeaxiom method)": [[10, "owlapy.owl_axiom.OWLPropertyRangeAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[10, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[10, "owlapy.owl_axiom.OWLSubClassOfAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[10, "owlapy.owl_axiom.OWLSubPropertyAxiom.__hash__"]], "__repr__() (owlapy.owl_axiom.owlannotation method)": [[10, "owlapy.owl_axiom.OWLAnnotation.__repr__"]], "__repr__() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[10, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[10, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[10, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[10, "owlapy.owl_axiom.OWLClassAssertionAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owldatapropertycharacteristicaxiom method)": [[10, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[10, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owldeclarationaxiom method)": [[10, "owlapy.owl_axiom.OWLDeclarationAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[10, "owlapy.owl_axiom.OWLDisjointUnionAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[10, "owlapy.owl_axiom.OWLHasKeyAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlinverseobjectpropertiesaxiom method)": [[10, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[10, "owlapy.owl_axiom.OWLNaryClassAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[10, "owlapy.owl_axiom.OWLNaryIndividualAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[10, "owlapy.owl_axiom.OWLNaryPropertyAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlobjectpropertycharacteristicaxiom method)": [[10, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[10, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlpropertydomainaxiom method)": [[10, "owlapy.owl_axiom.OWLPropertyDomainAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlpropertyrangeaxiom method)": [[10, "owlapy.owl_axiom.OWLPropertyRangeAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[10, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[10, "owlapy.owl_axiom.OWLSubClassOfAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[10, "owlapy.owl_axiom.OWLSubPropertyAxiom.__repr__"]], "__slots__ (owlapy.owl_axiom.owlannotation attribute)": [[10, "owlapy.owl_axiom.OWLAnnotation.__slots__"]], "__slots__ (owlapy.owl_axiom.owlannotationassertionaxiom attribute)": [[10, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlannotationaxiom attribute)": [[10, "owlapy.owl_axiom.OWLAnnotationAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlannotationproperty attribute)": [[10, "owlapy.owl_axiom.OWLAnnotationProperty.__slots__"]], "__slots__ (owlapy.owl_axiom.owlannotationpropertydomainaxiom attribute)": [[10, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlannotationpropertyrangeaxiom attribute)": [[10, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlasymmetricobjectpropertyaxiom attribute)": [[10, "owlapy.owl_axiom.OWLAsymmetricObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlaxiom attribute)": [[10, "owlapy.owl_axiom.OWLAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlclassassertionaxiom attribute)": [[10, "owlapy.owl_axiom.OWLClassAssertionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlclassaxiom attribute)": [[10, "owlapy.owl_axiom.OWLClassAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldatapropertyassertionaxiom attribute)": [[10, "owlapy.owl_axiom.OWLDataPropertyAssertionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldatapropertyaxiom attribute)": [[10, "owlapy.owl_axiom.OWLDataPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldatapropertycharacteristicaxiom attribute)": [[10, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldatapropertydomainaxiom attribute)": [[10, "owlapy.owl_axiom.OWLDataPropertyDomainAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldatapropertyrangeaxiom attribute)": [[10, "owlapy.owl_axiom.OWLDataPropertyRangeAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldatatypedefinitionaxiom attribute)": [[10, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldeclarationaxiom attribute)": [[10, "owlapy.owl_axiom.OWLDeclarationAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldifferentindividualsaxiom attribute)": [[10, "owlapy.owl_axiom.OWLDifferentIndividualsAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldisjointclassesaxiom attribute)": [[10, "owlapy.owl_axiom.OWLDisjointClassesAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldisjointdatapropertiesaxiom attribute)": [[10, "owlapy.owl_axiom.OWLDisjointDataPropertiesAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldisjointobjectpropertiesaxiom attribute)": [[10, "owlapy.owl_axiom.OWLDisjointObjectPropertiesAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldisjointunionaxiom attribute)": [[10, "owlapy.owl_axiom.OWLDisjointUnionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlequivalentclassesaxiom attribute)": [[10, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlequivalentdatapropertiesaxiom attribute)": [[10, "owlapy.owl_axiom.OWLEquivalentDataPropertiesAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlequivalentobjectpropertiesaxiom attribute)": [[10, "owlapy.owl_axiom.OWLEquivalentObjectPropertiesAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlfunctionaldatapropertyaxiom attribute)": [[10, "owlapy.owl_axiom.OWLFunctionalDataPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlfunctionalobjectpropertyaxiom attribute)": [[10, "owlapy.owl_axiom.OWLFunctionalObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlhaskeyaxiom attribute)": [[10, "owlapy.owl_axiom.OWLHasKeyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlindividualaxiom attribute)": [[10, "owlapy.owl_axiom.OWLIndividualAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlinversefunctionalobjectpropertyaxiom attribute)": [[10, "owlapy.owl_axiom.OWLInverseFunctionalObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlinverseobjectpropertiesaxiom attribute)": [[10, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlirreflexiveobjectpropertyaxiom attribute)": [[10, "owlapy.owl_axiom.OWLIrreflexiveObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owllogicalaxiom attribute)": [[10, "owlapy.owl_axiom.OWLLogicalAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlnaryaxiom attribute)": [[10, "owlapy.owl_axiom.OWLNaryAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlnaryclassaxiom attribute)": [[10, "owlapy.owl_axiom.OWLNaryClassAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlnaryindividualaxiom attribute)": [[10, "owlapy.owl_axiom.OWLNaryIndividualAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlnarypropertyaxiom attribute)": [[10, "owlapy.owl_axiom.OWLNaryPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlnegativedatapropertyassertionaxiom attribute)": [[10, "owlapy.owl_axiom.OWLNegativeDataPropertyAssertionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlnegativeobjectpropertyassertionaxiom attribute)": [[10, "owlapy.owl_axiom.OWLNegativeObjectPropertyAssertionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlobjectpropertyassertionaxiom attribute)": [[10, "owlapy.owl_axiom.OWLObjectPropertyAssertionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlobjectpropertyaxiom attribute)": [[10, "owlapy.owl_axiom.OWLObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlobjectpropertycharacteristicaxiom attribute)": [[10, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlobjectpropertydomainaxiom attribute)": [[10, "owlapy.owl_axiom.OWLObjectPropertyDomainAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlobjectpropertyrangeaxiom attribute)": [[10, "owlapy.owl_axiom.OWLObjectPropertyRangeAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlpropertyassertionaxiom attribute)": [[10, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlpropertyaxiom attribute)": [[10, "owlapy.owl_axiom.OWLPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlpropertydomainaxiom attribute)": [[10, "owlapy.owl_axiom.OWLPropertyDomainAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlpropertyrangeaxiom attribute)": [[10, "owlapy.owl_axiom.OWLPropertyRangeAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlreflexiveobjectpropertyaxiom attribute)": [[10, "owlapy.owl_axiom.OWLReflexiveObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlsameindividualaxiom attribute)": [[10, "owlapy.owl_axiom.OWLSameIndividualAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlsubannotationpropertyofaxiom attribute)": [[10, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlsubclassofaxiom attribute)": [[10, "owlapy.owl_axiom.OWLSubClassOfAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlsubdatapropertyofaxiom attribute)": [[10, "owlapy.owl_axiom.OWLSubDataPropertyOfAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlsubobjectpropertyofaxiom attribute)": [[10, "owlapy.owl_axiom.OWLSubObjectPropertyOfAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlsubpropertyaxiom attribute)": [[10, "owlapy.owl_axiom.OWLSubPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlsymmetricobjectpropertyaxiom attribute)": [[10, "owlapy.owl_axiom.OWLSymmetricObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owltransitiveobjectpropertyaxiom attribute)": [[10, "owlapy.owl_axiom.OWLTransitiveObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlunarypropertyaxiom attribute)": [[10, "owlapy.owl_axiom.OWLUnaryPropertyAxiom.__slots__"]], "annotations() (owlapy.owl_axiom.owlaxiom method)": [[10, "owlapy.owl_axiom.OWLAxiom.annotations"]], "as_pairwise_axioms() (owlapy.owl_axiom.owlnaryaxiom method)": [[10, "owlapy.owl_axiom.OWLNaryAxiom.as_pairwise_axioms"]], "as_pairwise_axioms() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[10, "owlapy.owl_axiom.OWLNaryClassAxiom.as_pairwise_axioms"]], "as_pairwise_axioms() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[10, "owlapy.owl_axiom.OWLNaryIndividualAxiom.as_pairwise_axioms"]], "as_pairwise_axioms() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[10, "owlapy.owl_axiom.OWLNaryPropertyAxiom.as_pairwise_axioms"]], "class_expressions() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[10, "owlapy.owl_axiom.OWLNaryClassAxiom.class_expressions"]], "contains_named_equivalent_class() (owlapy.owl_axiom.owlequivalentclassesaxiom method)": [[10, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.contains_named_equivalent_class"]], "contains_owl_nothing() (owlapy.owl_axiom.owlequivalentclassesaxiom method)": [[10, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.contains_owl_nothing"]], "contains_owl_thing() (owlapy.owl_axiom.owlequivalentclassesaxiom method)": [[10, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.contains_owl_thing"]], "get_class_expression() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[10, "owlapy.owl_axiom.OWLClassAssertionAxiom.get_class_expression"]], "get_class_expression() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[10, "owlapy.owl_axiom.OWLHasKeyAxiom.get_class_expression"]], "get_class_expressions() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[10, "owlapy.owl_axiom.OWLDisjointUnionAxiom.get_class_expressions"]], "get_datarange() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[10, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.get_datarange"]], "get_datatype() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[10, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.get_datatype"]], "get_domain() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[10, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.get_domain"]], "get_domain() (owlapy.owl_axiom.owlpropertydomainaxiom method)": [[10, "owlapy.owl_axiom.OWLPropertyDomainAxiom.get_domain"]], "get_entity() (owlapy.owl_axiom.owldeclarationaxiom method)": [[10, "owlapy.owl_axiom.OWLDeclarationAxiom.get_entity"]], "get_first_property() (owlapy.owl_axiom.owlinverseobjectpropertiesaxiom method)": [[10, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom.get_first_property"]], "get_individual() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[10, "owlapy.owl_axiom.OWLClassAssertionAxiom.get_individual"]], "get_iri() (owlapy.owl_axiom.owlannotationproperty method)": [[10, "owlapy.owl_axiom.OWLAnnotationProperty.get_iri"]], "get_object() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[10, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.get_object"]], "get_owl_class() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[10, "owlapy.owl_axiom.OWLDisjointUnionAxiom.get_owl_class"]], "get_owl_disjoint_classes_axiom() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[10, "owlapy.owl_axiom.OWLDisjointUnionAxiom.get_owl_disjoint_classes_axiom"]], "get_owl_equivalent_classes_axiom() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[10, "owlapy.owl_axiom.OWLDisjointUnionAxiom.get_owl_equivalent_classes_axiom"]], "get_property() (owlapy.owl_axiom.owlannotation method)": [[10, "owlapy.owl_axiom.OWLAnnotation.get_property"]], "get_property() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[10, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.get_property"]], "get_property() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[10, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.get_property"]], "get_property() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[10, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.get_property"]], "get_property() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[10, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.get_property"]], "get_property() (owlapy.owl_axiom.owlunarypropertyaxiom method)": [[10, "owlapy.owl_axiom.OWLUnaryPropertyAxiom.get_property"]], "get_property_expressions() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[10, "owlapy.owl_axiom.OWLHasKeyAxiom.get_property_expressions"]], "get_range() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[10, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.get_range"]], "get_range() (owlapy.owl_axiom.owlpropertyrangeaxiom method)": [[10, "owlapy.owl_axiom.OWLPropertyRangeAxiom.get_range"]], "get_second_property() (owlapy.owl_axiom.owlinverseobjectpropertiesaxiom method)": [[10, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom.get_second_property"]], "get_sub_class() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[10, "owlapy.owl_axiom.OWLSubClassOfAxiom.get_sub_class"]], "get_sub_property() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[10, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.get_sub_property"]], "get_sub_property() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[10, "owlapy.owl_axiom.OWLSubPropertyAxiom.get_sub_property"]], "get_subject() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[10, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.get_subject"]], "get_subject() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[10, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.get_subject"]], "get_super_class() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[10, "owlapy.owl_axiom.OWLSubClassOfAxiom.get_super_class"]], "get_super_property() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[10, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.get_super_property"]], "get_super_property() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[10, "owlapy.owl_axiom.OWLSubPropertyAxiom.get_super_property"]], "get_value() (owlapy.owl_axiom.owlannotation method)": [[10, "owlapy.owl_axiom.OWLAnnotation.get_value"]], "get_value() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[10, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.get_value"]], "individuals() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[10, "owlapy.owl_axiom.OWLNaryIndividualAxiom.individuals"]], "is_annotated() (owlapy.owl_axiom.owlaxiom method)": [[10, "owlapy.owl_axiom.OWLAxiom.is_annotated"]], "is_annotation_axiom() (owlapy.owl_axiom.owlannotationaxiom method)": [[10, "owlapy.owl_axiom.OWLAnnotationAxiom.is_annotation_axiom"]], "is_annotation_axiom() (owlapy.owl_axiom.owlaxiom method)": [[10, "owlapy.owl_axiom.OWLAxiom.is_annotation_axiom"]], "is_logical_axiom() (owlapy.owl_axiom.owlaxiom method)": [[10, "owlapy.owl_axiom.OWLAxiom.is_logical_axiom"]], "is_logical_axiom() (owlapy.owl_axiom.owllogicalaxiom method)": [[10, "owlapy.owl_axiom.OWLLogicalAxiom.is_logical_axiom"]], "named_classes() (owlapy.owl_axiom.owlequivalentclassesaxiom method)": [[10, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.named_classes"]], "operands() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[10, "owlapy.owl_axiom.OWLHasKeyAxiom.operands"]], "owlapy.owl_axiom": [[10, "module-owlapy.owl_axiom"]], "properties() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[10, "owlapy.owl_axiom.OWLNaryPropertyAxiom.properties"]], "owlanonymousclassexpression (class in owlapy.owl_class_expression)": [[11, "owlapy.owl_class_expression.OWLAnonymousClassExpression"]], "owlbooleanclassexpression (class in owlapy.owl_class_expression)": [[11, "owlapy.owl_class_expression.OWLBooleanClassExpression"]], "owlclass (class in owlapy.owl_class_expression)": [[11, "owlapy.owl_class_expression.OWLClass"]], "owlclassexpression (class in owlapy.owl_class_expression)": [[11, "owlapy.owl_class_expression.OWLClassExpression"]], "owlnarybooleanclassexpression (class in owlapy.owl_class_expression)": [[11, "owlapy.owl_class_expression.OWLNaryBooleanClassExpression"]], "owlobjectcomplementof (class in owlapy.owl_class_expression)": [[11, "owlapy.owl_class_expression.OWLObjectComplementOf"]], "owlobjectintersectionof (class in owlapy.owl_class_expression)": [[11, "owlapy.owl_class_expression.OWLObjectIntersectionOf"]], "owlobjectunionof (class in owlapy.owl_class_expression)": [[11, "owlapy.owl_class_expression.OWLObjectUnionOf"]], "__eq__() (owlapy.owl_class_expression.owlnarybooleanclassexpression method)": [[11, "owlapy.owl_class_expression.OWLNaryBooleanClassExpression.__eq__"]], "__eq__() (owlapy.owl_class_expression.owlobjectcomplementof method)": [[11, "owlapy.owl_class_expression.OWLObjectComplementOf.__eq__"]], "__hash__() (owlapy.owl_class_expression.owlnarybooleanclassexpression method)": [[11, "owlapy.owl_class_expression.OWLNaryBooleanClassExpression.__hash__"]], "__hash__() (owlapy.owl_class_expression.owlobjectcomplementof method)": [[11, "owlapy.owl_class_expression.OWLObjectComplementOf.__hash__"]], "__repr__() (owlapy.owl_class_expression.owlnarybooleanclassexpression method)": [[11, "owlapy.owl_class_expression.OWLNaryBooleanClassExpression.__repr__"]], "__repr__() (owlapy.owl_class_expression.owlobjectcomplementof method)": [[11, "owlapy.owl_class_expression.OWLObjectComplementOf.__repr__"]], "__slots__ (owlapy.owl_class_expression.owlbooleanclassexpression attribute)": [[11, "owlapy.owl_class_expression.OWLBooleanClassExpression.__slots__"]], "__slots__ (owlapy.owl_class_expression.owlclass attribute)": [[11, "owlapy.owl_class_expression.OWLClass.__slots__"]], "__slots__ (owlapy.owl_class_expression.owlclassexpression attribute)": [[11, "owlapy.owl_class_expression.OWLClassExpression.__slots__"]], "__slots__ (owlapy.owl_class_expression.owlnarybooleanclassexpression attribute)": [[11, "owlapy.owl_class_expression.OWLNaryBooleanClassExpression.__slots__"]], "__slots__ (owlapy.owl_class_expression.owlobjectcomplementof attribute)": [[11, "owlapy.owl_class_expression.OWLObjectComplementOf.__slots__"]], "__slots__ (owlapy.owl_class_expression.owlobjectintersectionof attribute)": [[11, "owlapy.owl_class_expression.OWLObjectIntersectionOf.__slots__"]], "__slots__ (owlapy.owl_class_expression.owlobjectunionof attribute)": [[11, "owlapy.owl_class_expression.OWLObjectUnionOf.__slots__"]], "get_iri() (owlapy.owl_class_expression.owlclass method)": [[11, "owlapy.owl_class_expression.OWLClass.get_iri"]], "get_nnf() (owlapy.owl_class_expression.owlanonymousclassexpression method)": [[11, "owlapy.owl_class_expression.OWLAnonymousClassExpression.get_nnf"]], "get_nnf() (owlapy.owl_class_expression.owlclass method)": [[11, "owlapy.owl_class_expression.OWLClass.get_nnf"]], "get_nnf() (owlapy.owl_class_expression.owlclassexpression method)": [[11, "owlapy.owl_class_expression.OWLClassExpression.get_nnf"]], "get_object_complement_of() (owlapy.owl_class_expression.owlanonymousclassexpression method)": [[11, "owlapy.owl_class_expression.OWLAnonymousClassExpression.get_object_complement_of"]], "get_object_complement_of() (owlapy.owl_class_expression.owlclass method)": [[11, "owlapy.owl_class_expression.OWLClass.get_object_complement_of"]], "get_object_complement_of() (owlapy.owl_class_expression.owlclassexpression method)": [[11, "owlapy.owl_class_expression.OWLClassExpression.get_object_complement_of"]], "get_operand() (owlapy.owl_class_expression.owlobjectcomplementof method)": [[11, "owlapy.owl_class_expression.OWLObjectComplementOf.get_operand"]], "is_owl_nothing() (owlapy.owl_class_expression.owlanonymousclassexpression method)": [[11, "owlapy.owl_class_expression.OWLAnonymousClassExpression.is_owl_nothing"]], "is_owl_nothing() (owlapy.owl_class_expression.owlclass method)": [[11, "owlapy.owl_class_expression.OWLClass.is_owl_nothing"]], "is_owl_nothing() (owlapy.owl_class_expression.owlclassexpression method)": [[11, "owlapy.owl_class_expression.OWLClassExpression.is_owl_nothing"]], "is_owl_thing() (owlapy.owl_class_expression.owlanonymousclassexpression method)": [[11, "owlapy.owl_class_expression.OWLAnonymousClassExpression.is_owl_thing"]], "is_owl_thing() (owlapy.owl_class_expression.owlclass method)": [[11, "owlapy.owl_class_expression.OWLClass.is_owl_thing"]], "is_owl_thing() (owlapy.owl_class_expression.owlclassexpression method)": [[11, "owlapy.owl_class_expression.OWLClassExpression.is_owl_thing"]], "operands() (owlapy.owl_class_expression.owlnarybooleanclassexpression method)": [[11, "owlapy.owl_class_expression.OWLNaryBooleanClassExpression.operands"]], "operands() (owlapy.owl_class_expression.owlobjectcomplementof method)": [[11, "owlapy.owl_class_expression.OWLObjectComplementOf.operands"]], "owlapy.owl_class_expression": [[11, "module-owlapy.owl_class_expression"]], "reminder (owlapy.owl_class_expression.owlclass property)": [[11, "owlapy.owl_class_expression.OWLClass.reminder"]], "str (owlapy.owl_class_expression.owlclass property)": [[11, "owlapy.owl_class_expression.OWLClass.str"]], "type_index (owlapy.owl_class_expression.owlclass attribute)": [[11, "owlapy.owl_class_expression.OWLClass.type_index"]], "type_index (owlapy.owl_class_expression.owlobjectcomplementof attribute)": [[11, "owlapy.owl_class_expression.OWLObjectComplementOf.type_index"]], "type_index (owlapy.owl_class_expression.owlobjectintersectionof attribute)": [[11, "owlapy.owl_class_expression.OWLObjectIntersectionOf.type_index"]], "type_index (owlapy.owl_class_expression.owlobjectunionof attribute)": [[11, "owlapy.owl_class_expression.OWLObjectUnionOf.type_index"]], "owldatacomplementof (class in owlapy.owl_data)": [[12, "owlapy.owl_data.OWLDataComplementOf"]], "owldatahasvalue (class in owlapy.owl_data)": [[12, "owlapy.owl_data.OWLDataHasValue"]], "owldataintersectionof (class in owlapy.owl_data)": [[12, "owlapy.owl_data.OWLDataIntersectionOf"]], "owldatamaxcardinality (class in owlapy.owl_data)": [[12, "owlapy.owl_data.OWLDataMaxCardinality"]], "owldatamincardinality (class in owlapy.owl_data)": [[12, "owlapy.owl_data.OWLDataMinCardinality"]], "owldataoneof (class in owlapy.owl_data)": [[12, "owlapy.owl_data.OWLDataOneOf"]], "owldatasomevaluesfrom (class in owlapy.owl_data)": [[12, "owlapy.owl_data.OWLDataSomeValuesFrom"]], "owldataunionof (class in owlapy.owl_data)": [[12, "owlapy.owl_data.OWLDataUnionOf"]], "owlnarydatarange (class in owlapy.owl_data)": [[12, "owlapy.owl_data.OWLNaryDataRange"]], "__eq__() (owlapy.owl_data.owldatacomplementof method)": [[12, "owlapy.owl_data.OWLDataComplementOf.__eq__"]], "__eq__() (owlapy.owl_data.owldatahasvalue method)": [[12, "owlapy.owl_data.OWLDataHasValue.__eq__"]], "__eq__() (owlapy.owl_data.owldataoneof method)": [[12, "owlapy.owl_data.OWLDataOneOf.__eq__"]], "__eq__() (owlapy.owl_data.owldatasomevaluesfrom method)": [[12, "owlapy.owl_data.OWLDataSomeValuesFrom.__eq__"]], "__eq__() (owlapy.owl_data.owlnarydatarange method)": [[12, "owlapy.owl_data.OWLNaryDataRange.__eq__"]], "__hash__() (owlapy.owl_data.owldatacomplementof method)": [[12, "owlapy.owl_data.OWLDataComplementOf.__hash__"]], "__hash__() (owlapy.owl_data.owldatahasvalue method)": [[12, "owlapy.owl_data.OWLDataHasValue.__hash__"]], "__hash__() (owlapy.owl_data.owldataoneof method)": [[12, "owlapy.owl_data.OWLDataOneOf.__hash__"]], "__hash__() (owlapy.owl_data.owldatasomevaluesfrom method)": [[12, "owlapy.owl_data.OWLDataSomeValuesFrom.__hash__"]], "__hash__() (owlapy.owl_data.owlnarydatarange method)": [[12, "owlapy.owl_data.OWLNaryDataRange.__hash__"]], "__repr__() (owlapy.owl_data.owldatacomplementof method)": [[12, "owlapy.owl_data.OWLDataComplementOf.__repr__"]], "__repr__() (owlapy.owl_data.owldatahasvalue method)": [[12, "owlapy.owl_data.OWLDataHasValue.__repr__"]], "__repr__() (owlapy.owl_data.owldataoneof method)": [[12, "owlapy.owl_data.OWLDataOneOf.__repr__"]], "__repr__() (owlapy.owl_data.owldatasomevaluesfrom method)": [[12, "owlapy.owl_data.OWLDataSomeValuesFrom.__repr__"]], "__repr__() (owlapy.owl_data.owlnarydatarange method)": [[12, "owlapy.owl_data.OWLNaryDataRange.__repr__"]], "__slots__ (owlapy.owl_data.owldatahasvalue attribute)": [[12, "owlapy.owl_data.OWLDataHasValue.__slots__"]], "__slots__ (owlapy.owl_data.owldataintersectionof attribute)": [[12, "owlapy.owl_data.OWLDataIntersectionOf.__slots__"]], "__slots__ (owlapy.owl_data.owldatamaxcardinality attribute)": [[12, "owlapy.owl_data.OWLDataMaxCardinality.__slots__"]], "__slots__ (owlapy.owl_data.owldatamincardinality attribute)": [[12, "owlapy.owl_data.OWLDataMinCardinality.__slots__"]], "__slots__ (owlapy.owl_data.owldatasomevaluesfrom attribute)": [[12, "owlapy.owl_data.OWLDataSomeValuesFrom.__slots__"]], "__slots__ (owlapy.owl_data.owldataunionof attribute)": [[12, "owlapy.owl_data.OWLDataUnionOf.__slots__"]], "__slots__ (owlapy.owl_data.owlnarydatarange attribute)": [[12, "owlapy.owl_data.OWLNaryDataRange.__slots__"]], "as_some_values_from() (owlapy.owl_data.owldatahasvalue method)": [[12, "owlapy.owl_data.OWLDataHasValue.as_some_values_from"]], "get_data_range() (owlapy.owl_data.owldatacomplementof method)": [[12, "owlapy.owl_data.OWLDataComplementOf.get_data_range"]], "get_property() (owlapy.owl_data.owldatahasvalue method)": [[12, "owlapy.owl_data.OWLDataHasValue.get_property"]], "get_property() (owlapy.owl_data.owldatasomevaluesfrom method)": [[12, "owlapy.owl_data.OWLDataSomeValuesFrom.get_property"]], "operands() (owlapy.owl_data.owldataoneof method)": [[12, "owlapy.owl_data.OWLDataOneOf.operands"]], "operands() (owlapy.owl_data.owlnarydatarange method)": [[12, "owlapy.owl_data.OWLNaryDataRange.operands"]], "owlapy.owl_data": [[12, "module-owlapy.owl_data"]], "type_index (owlapy.owl_data.owldatacomplementof attribute)": [[12, "owlapy.owl_data.OWLDataComplementOf.type_index"]], "type_index (owlapy.owl_data.owldatahasvalue attribute)": [[12, "owlapy.owl_data.OWLDataHasValue.type_index"]], "type_index (owlapy.owl_data.owldataintersectionof attribute)": [[12, "owlapy.owl_data.OWLDataIntersectionOf.type_index"]], "type_index (owlapy.owl_data.owldatamaxcardinality attribute)": [[12, "owlapy.owl_data.OWLDataMaxCardinality.type_index"]], "type_index (owlapy.owl_data.owldatamincardinality attribute)": [[12, "owlapy.owl_data.OWLDataMinCardinality.type_index"]], "type_index (owlapy.owl_data.owldataoneof attribute)": [[12, "owlapy.owl_data.OWLDataOneOf.type_index"]], "type_index (owlapy.owl_data.owldatasomevaluesfrom attribute)": [[12, "owlapy.owl_data.OWLDataSomeValuesFrom.type_index"]], "type_index (owlapy.owl_data.owldataunionof attribute)": [[12, "owlapy.owl_data.OWLDataUnionOf.type_index"]], "values() (owlapy.owl_data.owldataoneof method)": [[12, "owlapy.owl_data.OWLDataOneOf.values"]], "owlindividual (class in owlapy.owl_individual)": [[13, "owlapy.owl_individual.OWLIndividual"]], "owlnamedindividual (class in owlapy.owl_individual)": [[13, "owlapy.owl_individual.OWLNamedIndividual"]], "__slots__ (owlapy.owl_individual.owlindividual attribute)": [[13, "owlapy.owl_individual.OWLIndividual.__slots__"]], "__slots__ (owlapy.owl_individual.owlnamedindividual attribute)": [[13, "owlapy.owl_individual.OWLNamedIndividual.__slots__"]], "get_iri() (owlapy.owl_individual.owlnamedindividual method)": [[13, "owlapy.owl_individual.OWLNamedIndividual.get_iri"]], "iri (owlapy.owl_individual.owlnamedindividual property)": [[13, "owlapy.owl_individual.OWLNamedIndividual.iri"]], "owlapy.owl_individual": [[13, "module-owlapy.owl_individual"]], "str (owlapy.owl_individual.owlnamedindividual property)": [[13, "owlapy.owl_individual.OWLNamedIndividual.str"]], "type_index (owlapy.owl_individual.owlnamedindividual attribute)": [[13, "owlapy.owl_individual.OWLNamedIndividual.type_index"]], "booleanowldatatype (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.BooleanOWLDatatype"]], "dateowldatatype (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.DateOWLDatatype"]], "datetimeowldatatype (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.DateTimeOWLDatatype"]], "doubleowldatatype (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.DoubleOWLDatatype"]], "durationowldatatype (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.DurationOWLDatatype"]], "integerowldatatype (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.IntegerOWLDatatype"]], "literals (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.Literals"]], "numeric_datatypes (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.NUMERIC_DATATYPES"]], "owlbottomdataproperty (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.OWLBottomDataProperty"]], "owlbottomobjectproperty (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.OWLBottomObjectProperty"]], "owlliteral (class in owlapy.owl_literal)": [[14, "owlapy.owl_literal.OWLLiteral"]], "owlnothing (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.OWLNothing"]], "owlthing (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.OWLThing"]], "owltopdataproperty (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.OWLTopDataProperty"]], "owltopobjectproperty (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.OWLTopObjectProperty"]], "stringowldatatype (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.StringOWLDatatype"]], "time_datatypes (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.TIME_DATATYPES"]], "topowldatatype (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.TopOWLDatatype"]], "__slots__ (owlapy.owl_literal.owlliteral attribute)": [[14, "owlapy.owl_literal.OWLLiteral.__slots__"]], "as_literal() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.as_literal"]], "get_datatype() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.get_datatype"]], "get_literal() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.get_literal"]], "is_boolean() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.is_boolean"]], "is_date() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.is_date"]], "is_datetime() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.is_datetime"]], "is_double() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.is_double"]], "is_duration() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.is_duration"]], "is_integer() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.is_integer"]], "is_literal() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.is_literal"]], "is_string() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.is_string"]], "owlapy.owl_literal": [[14, "module-owlapy.owl_literal"]], "parse_boolean() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.parse_boolean"]], "parse_date() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.parse_date"]], "parse_datetime() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.parse_datetime"]], "parse_double() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.parse_double"]], "parse_duration() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.parse_duration"]], "parse_integer() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.parse_integer"]], "parse_string() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.parse_string"]], "to_python() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.to_python"]], "type_index (owlapy.owl_literal.owlliteral attribute)": [[14, "owlapy.owl_literal.OWLLiteral.type_index"]], "owldataproperty (class in owlapy.owl_property)": [[15, "owlapy.owl_property.OWLDataProperty"]], "owldatapropertyexpression (class in owlapy.owl_property)": [[15, "owlapy.owl_property.OWLDataPropertyExpression"]], "owlobjectinverseof (class in owlapy.owl_property)": [[15, "owlapy.owl_property.OWLObjectInverseOf"]], "owlobjectproperty (class in owlapy.owl_property)": [[15, "owlapy.owl_property.OWLObjectProperty"]], "owlobjectpropertyexpression (class in owlapy.owl_property)": [[15, "owlapy.owl_property.OWLObjectPropertyExpression"]], "owlproperty (class in owlapy.owl_property)": [[15, "owlapy.owl_property.OWLProperty"]], "owlpropertyexpression (class in owlapy.owl_property)": [[15, "owlapy.owl_property.OWLPropertyExpression"]], "__eq__() (owlapy.owl_property.owlobjectinverseof method)": [[15, "owlapy.owl_property.OWLObjectInverseOf.__eq__"]], "__hash__() (owlapy.owl_property.owlobjectinverseof method)": [[15, "owlapy.owl_property.OWLObjectInverseOf.__hash__"]], "__repr__() (owlapy.owl_property.owlobjectinverseof method)": [[15, "owlapy.owl_property.OWLObjectInverseOf.__repr__"]], "__slots__ (owlapy.owl_property.owldataproperty attribute)": [[15, "owlapy.owl_property.OWLDataProperty.__slots__"]], "__slots__ (owlapy.owl_property.owldatapropertyexpression attribute)": [[15, "owlapy.owl_property.OWLDataPropertyExpression.__slots__"]], "__slots__ (owlapy.owl_property.owlobjectinverseof attribute)": [[15, "owlapy.owl_property.OWLObjectInverseOf.__slots__"]], "__slots__ (owlapy.owl_property.owlobjectproperty attribute)": [[15, "owlapy.owl_property.OWLObjectProperty.__slots__"]], "__slots__ (owlapy.owl_property.owlobjectpropertyexpression attribute)": [[15, "owlapy.owl_property.OWLObjectPropertyExpression.__slots__"]], "__slots__ (owlapy.owl_property.owlproperty attribute)": [[15, "owlapy.owl_property.OWLProperty.__slots__"]], "__slots__ (owlapy.owl_property.owlpropertyexpression attribute)": [[15, "owlapy.owl_property.OWLPropertyExpression.__slots__"]], "get_inverse() (owlapy.owl_property.owlobjectinverseof method)": [[15, "owlapy.owl_property.OWLObjectInverseOf.get_inverse"]], "get_inverse_property() (owlapy.owl_property.owlobjectinverseof method)": [[15, "owlapy.owl_property.OWLObjectInverseOf.get_inverse_property"]], "get_inverse_property() (owlapy.owl_property.owlobjectproperty method)": [[15, "owlapy.owl_property.OWLObjectProperty.get_inverse_property"]], "get_inverse_property() (owlapy.owl_property.owlobjectpropertyexpression method)": [[15, "owlapy.owl_property.OWLObjectPropertyExpression.get_inverse_property"]], "get_iri() (owlapy.owl_property.owldataproperty method)": [[15, "owlapy.owl_property.OWLDataProperty.get_iri"]], "get_iri() (owlapy.owl_property.owlobjectproperty method)": [[15, "owlapy.owl_property.OWLObjectProperty.get_iri"]], "get_named_property() (owlapy.owl_property.owlobjectinverseof method)": [[15, "owlapy.owl_property.OWLObjectInverseOf.get_named_property"]], "get_named_property() (owlapy.owl_property.owlobjectproperty method)": [[15, "owlapy.owl_property.OWLObjectProperty.get_named_property"]], "get_named_property() (owlapy.owl_property.owlobjectpropertyexpression method)": [[15, "owlapy.owl_property.OWLObjectPropertyExpression.get_named_property"]], "iri (owlapy.owl_property.owlobjectproperty property)": [[15, "owlapy.owl_property.OWLObjectProperty.iri"]], "is_data_property_expression() (owlapy.owl_property.owldatapropertyexpression method)": [[15, "owlapy.owl_property.OWLDataPropertyExpression.is_data_property_expression"]], "is_data_property_expression() (owlapy.owl_property.owlpropertyexpression method)": [[15, "owlapy.owl_property.OWLPropertyExpression.is_data_property_expression"]], "is_object_property_expression() (owlapy.owl_property.owlobjectpropertyexpression method)": [[15, "owlapy.owl_property.OWLObjectPropertyExpression.is_object_property_expression"]], "is_object_property_expression() (owlapy.owl_property.owlpropertyexpression method)": [[15, "owlapy.owl_property.OWLPropertyExpression.is_object_property_expression"]], "is_owl_top_data_property() (owlapy.owl_property.owldataproperty method)": [[15, "owlapy.owl_property.OWLDataProperty.is_owl_top_data_property"]], "is_owl_top_data_property() (owlapy.owl_property.owlpropertyexpression method)": [[15, "owlapy.owl_property.OWLPropertyExpression.is_owl_top_data_property"]], "is_owl_top_object_property() (owlapy.owl_property.owlobjectproperty method)": [[15, "owlapy.owl_property.OWLObjectProperty.is_owl_top_object_property"]], "is_owl_top_object_property() (owlapy.owl_property.owlpropertyexpression method)": [[15, "owlapy.owl_property.OWLPropertyExpression.is_owl_top_object_property"]], "owlapy.owl_property": [[15, "module-owlapy.owl_property"]], "str (owlapy.owl_property.owlobjectproperty property)": [[15, "owlapy.owl_property.OWLObjectProperty.str"]], "type_index (owlapy.owl_property.owldataproperty attribute)": [[15, "owlapy.owl_property.OWLDataProperty.type_index"]], "type_index (owlapy.owl_property.owlobjectinverseof attribute)": [[15, "owlapy.owl_property.OWLObjectInverseOf.type_index"]], "type_index (owlapy.owl_property.owlobjectproperty attribute)": [[15, "owlapy.owl_property.OWLObjectProperty.type_index"]], "owlcardinalityrestriction (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLCardinalityRestriction"]], "owldataallvaluesfrom (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLDataAllValuesFrom"]], "owldatacardinalityrestriction (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLDataCardinalityRestriction"]], "owldataexactcardinality (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLDataExactCardinality"]], "owldatarestriction (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLDataRestriction"]], "owlhasvaluerestriction (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLHasValueRestriction"]], "owlobjectallvaluesfrom (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLObjectAllValuesFrom"]], "owlobjectcardinalityrestriction (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLObjectCardinalityRestriction"]], "owlobjectexactcardinality (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLObjectExactCardinality"]], "owlobjecthasself (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLObjectHasSelf"]], "owlobjectmaxcardinality (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLObjectMaxCardinality"]], "owlobjectmincardinality (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLObjectMinCardinality"]], "owlobjectrestriction (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLObjectRestriction"]], "owlobjectsomevaluesfrom (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLObjectSomeValuesFrom"]], "owlquantifieddatarestriction (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLQuantifiedDataRestriction"]], "owlquantifiedobjectrestriction (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLQuantifiedObjectRestriction"]], "owlquantifiedrestriction (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLQuantifiedRestriction"]], "owlrestriction (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLRestriction"]], "__eq__() (owlapy.owl_restriction.owldataallvaluesfrom method)": [[16, "owlapy.owl_restriction.OWLDataAllValuesFrom.__eq__"]], "__eq__() (owlapy.owl_restriction.owldatacardinalityrestriction method)": [[16, "owlapy.owl_restriction.OWLDataCardinalityRestriction.__eq__"]], "__eq__() (owlapy.owl_restriction.owlhasvaluerestriction method)": [[16, "owlapy.owl_restriction.OWLHasValueRestriction.__eq__"]], "__eq__() (owlapy.owl_restriction.owlobjectallvaluesfrom method)": [[16, "owlapy.owl_restriction.OWLObjectAllValuesFrom.__eq__"]], "__eq__() (owlapy.owl_restriction.owlobjectcardinalityrestriction method)": [[16, "owlapy.owl_restriction.OWLObjectCardinalityRestriction.__eq__"]], "__eq__() (owlapy.owl_restriction.owlobjecthasself method)": [[16, "owlapy.owl_restriction.OWLObjectHasSelf.__eq__"]], "__eq__() (owlapy.owl_restriction.owlobjectsomevaluesfrom method)": [[16, "owlapy.owl_restriction.OWLObjectSomeValuesFrom.__eq__"]], "__hash__() (owlapy.owl_restriction.owldataallvaluesfrom method)": [[16, "owlapy.owl_restriction.OWLDataAllValuesFrom.__hash__"]], "__hash__() (owlapy.owl_restriction.owldatacardinalityrestriction method)": [[16, "owlapy.owl_restriction.OWLDataCardinalityRestriction.__hash__"]], "__hash__() (owlapy.owl_restriction.owlhasvaluerestriction method)": [[16, "owlapy.owl_restriction.OWLHasValueRestriction.__hash__"]], "__hash__() (owlapy.owl_restriction.owlobjectallvaluesfrom method)": [[16, "owlapy.owl_restriction.OWLObjectAllValuesFrom.__hash__"]], "__hash__() (owlapy.owl_restriction.owlobjectcardinalityrestriction method)": [[16, "owlapy.owl_restriction.OWLObjectCardinalityRestriction.__hash__"]], "__hash__() (owlapy.owl_restriction.owlobjecthasself method)": [[16, "owlapy.owl_restriction.OWLObjectHasSelf.__hash__"]], "__hash__() (owlapy.owl_restriction.owlobjectsomevaluesfrom method)": [[16, "owlapy.owl_restriction.OWLObjectSomeValuesFrom.__hash__"]], "__repr__() (owlapy.owl_restriction.owldataallvaluesfrom method)": [[16, "owlapy.owl_restriction.OWLDataAllValuesFrom.__repr__"]], "__repr__() (owlapy.owl_restriction.owldatacardinalityrestriction method)": [[16, "owlapy.owl_restriction.OWLDataCardinalityRestriction.__repr__"]], "__repr__() (owlapy.owl_restriction.owlobjectallvaluesfrom method)": [[16, "owlapy.owl_restriction.OWLObjectAllValuesFrom.__repr__"]], "__repr__() (owlapy.owl_restriction.owlobjectcardinalityrestriction method)": [[16, "owlapy.owl_restriction.OWLObjectCardinalityRestriction.__repr__"]], "__repr__() (owlapy.owl_restriction.owlobjecthasself method)": [[16, "owlapy.owl_restriction.OWLObjectHasSelf.__repr__"]], "__repr__() (owlapy.owl_restriction.owlobjectsomevaluesfrom method)": [[16, "owlapy.owl_restriction.OWLObjectSomeValuesFrom.__repr__"]], "__slots__ (owlapy.owl_restriction.owlcardinalityrestriction attribute)": [[16, "owlapy.owl_restriction.OWLCardinalityRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owldataallvaluesfrom attribute)": [[16, "owlapy.owl_restriction.OWLDataAllValuesFrom.__slots__"]], "__slots__ (owlapy.owl_restriction.owldatacardinalityrestriction attribute)": [[16, "owlapy.owl_restriction.OWLDataCardinalityRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owldataexactcardinality attribute)": [[16, "owlapy.owl_restriction.OWLDataExactCardinality.__slots__"]], "__slots__ (owlapy.owl_restriction.owldatarestriction attribute)": [[16, "owlapy.owl_restriction.OWLDataRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlhasvaluerestriction attribute)": [[16, "owlapy.owl_restriction.OWLHasValueRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectallvaluesfrom attribute)": [[16, "owlapy.owl_restriction.OWLObjectAllValuesFrom.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectcardinalityrestriction attribute)": [[16, "owlapy.owl_restriction.OWLObjectCardinalityRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectexactcardinality attribute)": [[16, "owlapy.owl_restriction.OWLObjectExactCardinality.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjecthasself attribute)": [[16, "owlapy.owl_restriction.OWLObjectHasSelf.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectmaxcardinality attribute)": [[16, "owlapy.owl_restriction.OWLObjectMaxCardinality.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectmincardinality attribute)": [[16, "owlapy.owl_restriction.OWLObjectMinCardinality.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectrestriction attribute)": [[16, "owlapy.owl_restriction.OWLObjectRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectsomevaluesfrom attribute)": [[16, "owlapy.owl_restriction.OWLObjectSomeValuesFrom.__slots__"]], "__slots__ (owlapy.owl_restriction.owlquantifieddatarestriction attribute)": [[16, "owlapy.owl_restriction.OWLQuantifiedDataRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlquantifiedobjectrestriction attribute)": [[16, "owlapy.owl_restriction.OWLQuantifiedObjectRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlquantifiedrestriction attribute)": [[16, "owlapy.owl_restriction.OWLQuantifiedRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlrestriction attribute)": [[16, "owlapy.owl_restriction.OWLRestriction.__slots__"]], "as_intersection_of_min_max() (owlapy.owl_restriction.owldataexactcardinality method)": [[16, "owlapy.owl_restriction.OWLDataExactCardinality.as_intersection_of_min_max"]], "as_intersection_of_min_max() (owlapy.owl_restriction.owlobjectexactcardinality method)": [[16, "owlapy.owl_restriction.OWLObjectExactCardinality.as_intersection_of_min_max"]], "get_cardinality() (owlapy.owl_restriction.owlcardinalityrestriction method)": [[16, "owlapy.owl_restriction.OWLCardinalityRestriction.get_cardinality"]], "get_filler() (owlapy.owl_restriction.owlcardinalityrestriction method)": [[16, "owlapy.owl_restriction.OWLCardinalityRestriction.get_filler"]], "get_filler() (owlapy.owl_restriction.owlhasvaluerestriction method)": [[16, "owlapy.owl_restriction.OWLHasValueRestriction.get_filler"]], "get_filler() (owlapy.owl_restriction.owlquantifieddatarestriction method)": [[16, "owlapy.owl_restriction.OWLQuantifiedDataRestriction.get_filler"]], "get_filler() (owlapy.owl_restriction.owlquantifiedobjectrestriction method)": [[16, "owlapy.owl_restriction.OWLQuantifiedObjectRestriction.get_filler"]], "get_property() (owlapy.owl_restriction.owldataallvaluesfrom method)": [[16, "owlapy.owl_restriction.OWLDataAllValuesFrom.get_property"]], "get_property() (owlapy.owl_restriction.owldatacardinalityrestriction method)": [[16, "owlapy.owl_restriction.OWLDataCardinalityRestriction.get_property"]], "get_property() (owlapy.owl_restriction.owlobjectallvaluesfrom method)": [[16, "owlapy.owl_restriction.OWLObjectAllValuesFrom.get_property"]], "get_property() (owlapy.owl_restriction.owlobjectcardinalityrestriction method)": [[16, "owlapy.owl_restriction.OWLObjectCardinalityRestriction.get_property"]], "get_property() (owlapy.owl_restriction.owlobjecthasself method)": [[16, "owlapy.owl_restriction.OWLObjectHasSelf.get_property"]], "get_property() (owlapy.owl_restriction.owlobjectrestriction method)": [[16, "owlapy.owl_restriction.OWLObjectRestriction.get_property"]], "get_property() (owlapy.owl_restriction.owlobjectsomevaluesfrom method)": [[16, "owlapy.owl_restriction.OWLObjectSomeValuesFrom.get_property"]], "get_property() (owlapy.owl_restriction.owlrestriction method)": [[16, "owlapy.owl_restriction.OWLRestriction.get_property"]], "is_data_restriction() (owlapy.owl_restriction.owldatarestriction method)": [[16, "owlapy.owl_restriction.OWLDataRestriction.is_data_restriction"]], "is_data_restriction() (owlapy.owl_restriction.owlrestriction method)": [[16, "owlapy.owl_restriction.OWLRestriction.is_data_restriction"]], "is_object_restriction() (owlapy.owl_restriction.owlobjectrestriction method)": [[16, "owlapy.owl_restriction.OWLObjectRestriction.is_object_restriction"]], "is_object_restriction() (owlapy.owl_restriction.owlrestriction method)": [[16, "owlapy.owl_restriction.OWLRestriction.is_object_restriction"]], "owlapy.owl_restriction": [[16, "module-owlapy.owl_restriction"]], "type_index (owlapy.owl_restriction.owldataallvaluesfrom attribute)": [[16, "owlapy.owl_restriction.OWLDataAllValuesFrom.type_index"]], "type_index (owlapy.owl_restriction.owldataexactcardinality attribute)": [[16, "owlapy.owl_restriction.OWLDataExactCardinality.type_index"]], "type_index (owlapy.owl_restriction.owlobjectallvaluesfrom attribute)": [[16, "owlapy.owl_restriction.OWLObjectAllValuesFrom.type_index"]], "type_index (owlapy.owl_restriction.owlobjectexactcardinality attribute)": [[16, "owlapy.owl_restriction.OWLObjectExactCardinality.type_index"]], "type_index (owlapy.owl_restriction.owlobjecthasself attribute)": [[16, "owlapy.owl_restriction.OWLObjectHasSelf.type_index"]], "type_index (owlapy.owl_restriction.owlobjectmaxcardinality attribute)": [[16, "owlapy.owl_restriction.OWLObjectMaxCardinality.type_index"]], "type_index (owlapy.owl_restriction.owlobjectmincardinality attribute)": [[16, "owlapy.owl_restriction.OWLObjectMinCardinality.type_index"]], "type_index (owlapy.owl_restriction.owlobjectsomevaluesfrom attribute)": [[16, "owlapy.owl_restriction.OWLObjectSomeValuesFrom.type_index"]], "owlentity (class in owlapy.owlobject)": [[17, "owlapy.owlobject.OWLEntity"]], "owlnamedobject (class in owlapy.owlobject)": [[17, "owlapy.owlobject.OWLNamedObject"]], "owlobject (class in owlapy.owlobject)": [[17, "owlapy.owlobject.OWLObject"]], "owlobjectparser (class in owlapy.owlobject)": [[17, "owlapy.owlobject.OWLObjectParser"]], "owlobjectrenderer (class in owlapy.owlobject)": [[17, "owlapy.owlobject.OWLObjectRenderer"]], "__eq__() (owlapy.owlobject.owlnamedobject method)": [[17, "owlapy.owlobject.OWLNamedObject.__eq__"]], "__eq__() (owlapy.owlobject.owlobject method)": [[17, "owlapy.owlobject.OWLObject.__eq__"]], "__hash__() (owlapy.owlobject.owlnamedobject method)": [[17, "owlapy.owlobject.OWLNamedObject.__hash__"]], "__hash__() (owlapy.owlobject.owlobject method)": [[17, "owlapy.owlobject.OWLObject.__hash__"]], "__lt__() (owlapy.owlobject.owlnamedobject method)": [[17, "owlapy.owlobject.OWLNamedObject.__lt__"]], "__repr__() (owlapy.owlobject.owlnamedobject method)": [[17, "owlapy.owlobject.OWLNamedObject.__repr__"]], "__repr__() (owlapy.owlobject.owlobject method)": [[17, "owlapy.owlobject.OWLObject.__repr__"]], "__slots__ (owlapy.owlobject.owlentity attribute)": [[17, "owlapy.owlobject.OWLEntity.__slots__"]], "__slots__ (owlapy.owlobject.owlnamedobject attribute)": [[17, "owlapy.owlobject.OWLNamedObject.__slots__"]], "__slots__ (owlapy.owlobject.owlobject attribute)": [[17, "owlapy.owlobject.OWLObject.__slots__"]], "is_anonymous() (owlapy.owlobject.owlentity method)": [[17, "owlapy.owlobject.OWLEntity.is_anonymous"]], "is_anonymous() (owlapy.owlobject.owlobject method)": [[17, "owlapy.owlobject.OWLObject.is_anonymous"]], "owlapy.owlobject": [[17, "module-owlapy.owlobject"]], "parse_expression() (owlapy.owlobject.owlobjectparser method)": [[17, "owlapy.owlobject.OWLObjectParser.parse_expression"]], "render() (owlapy.owlobject.owlobjectrenderer method)": [[17, "owlapy.owlobject.OWLObjectRenderer.render"]], "set_short_form_provider() (owlapy.owlobject.owlobjectrenderer method)": [[17, "owlapy.owlobject.OWLObjectRenderer.set_short_form_provider"]], "to_string_id() (owlapy.owlobject.owlentity method)": [[17, "owlapy.owlobject.OWLEntity.to_string_id"]], "dlsyntaxparser (class in owlapy.parser)": [[18, "owlapy.parser.DLSyntaxParser"]], "dl_grammar (in module owlapy.parser)": [[18, "owlapy.parser.DL_GRAMMAR"]], "dlparser (in module owlapy.parser)": [[18, "owlapy.parser.DLparser"]], "manchester_grammar (in module owlapy.parser)": [[18, "owlapy.parser.MANCHESTER_GRAMMAR"]], "manchesterowlsyntaxparser (class in owlapy.parser)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser"]], "manchesterparser (in module owlapy.parser)": [[18, "owlapy.parser.ManchesterParser"]], "dl_to_owl_expression() (in module owlapy.parser)": [[18, "owlapy.parser.dl_to_owl_expression"]], "generic_visit() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.generic_visit"]], "generic_visit() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.generic_visit"]], "manchester_to_owl_expression() (in module owlapy.parser)": [[18, "owlapy.parser.manchester_to_owl_expression"]], "ns (owlapy.parser.dlsyntaxparser attribute)": [[18, "owlapy.parser.DLSyntaxParser.ns"]], "ns (owlapy.parser.manchesterowlsyntaxparser attribute)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.ns"]], "owlapy.parser": [[18, "module-owlapy.parser"]], "parse_expression() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.parse_expression"]], "parse_expression() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.parse_expression"]], "slots (owlapy.parser.dlsyntaxparser attribute)": [[18, "owlapy.parser.DLSyntaxParser.slots"]], "slots (owlapy.parser.manchesterowlsyntaxparser attribute)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.slots"]], "visit_abbreviated_iri() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_abbreviated_iri"]], "visit_abbreviated_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_abbreviated_iri"]], "visit_boolean_literal() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_boolean_literal"]], "visit_boolean_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_boolean_literal"]], "visit_cardinality_res() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_cardinality_res"]], "visit_cardinality_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_cardinality_res"]], "visit_class_expression() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_class_expression"]], "visit_class_expression() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_class_expression"]], "visit_class_iri() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_class_iri"]], "visit_class_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_class_iri"]], "visit_data_cardinality_res() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_data_cardinality_res"]], "visit_data_cardinality_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_cardinality_res"]], "visit_data_intersection() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_data_intersection"]], "visit_data_intersection() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_intersection"]], "visit_data_parentheses() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_data_parentheses"]], "visit_data_parentheses() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_parentheses"]], "visit_data_primary() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_data_primary"]], "visit_data_primary() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_primary"]], "visit_data_property_iri() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_data_property_iri"]], "visit_data_property_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_property_iri"]], "visit_data_some_only_res() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_data_some_only_res"]], "visit_data_some_only_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_some_only_res"]], "visit_data_union() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_data_union"]], "visit_data_union() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_union"]], "visit_data_value_res() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_data_value_res"]], "visit_data_value_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_value_res"]], "visit_datatype() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_datatype"]], "visit_datatype() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_datatype"]], "visit_datatype_iri() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_datatype_iri"]], "visit_datatype_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_datatype_iri"]], "visit_datatype_restriction() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_datatype_restriction"]], "visit_datatype_restriction() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_datatype_restriction"]], "visit_date_literal() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_date_literal"]], "visit_date_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_date_literal"]], "visit_datetime_literal() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_datetime_literal"]], "visit_datetime_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_datetime_literal"]], "visit_decimal_literal() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_decimal_literal"]], "visit_decimal_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_decimal_literal"]], "visit_duration_literal() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_duration_literal"]], "visit_duration_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_duration_literal"]], "visit_facet() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_facet"]], "visit_facet() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_facet"]], "visit_facet_restriction() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_facet_restriction"]], "visit_facet_restriction() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_facet_restriction"]], "visit_facet_restrictions() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_facet_restrictions"]], "visit_facet_restrictions() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_facet_restrictions"]], "visit_float_literal() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_float_literal"]], "visit_float_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_float_literal"]], "visit_full_iri() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_full_iri"]], "visit_full_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_full_iri"]], "visit_has_self() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_has_self"]], "visit_has_self() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_has_self"]], "visit_individual_iri() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_individual_iri"]], "visit_individual_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_individual_iri"]], "visit_individual_list() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_individual_list"]], "visit_individual_list() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_individual_list"]], "visit_integer_literal() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_integer_literal"]], "visit_integer_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_integer_literal"]], "visit_intersection() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_intersection"]], "visit_intersection() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_intersection"]], "visit_iri() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_iri"]], "visit_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_iri"]], "visit_literal() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_literal"]], "visit_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_literal"]], "visit_literal_list() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_literal_list"]], "visit_literal_list() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_literal_list"]], "visit_non_negative_integer() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_non_negative_integer"]], "visit_non_negative_integer() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_non_negative_integer"]], "visit_object_property() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_object_property"]], "visit_object_property() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_object_property"]], "visit_object_property_iri() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_object_property_iri"]], "visit_object_property_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_object_property_iri"]], "visit_parentheses() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_parentheses"]], "visit_parentheses() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_parentheses"]], "visit_primary() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_primary"]], "visit_primary() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_primary"]], "visit_quoted_string() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_quoted_string"]], "visit_quoted_string() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_quoted_string"]], "visit_simple_iri() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_simple_iri"]], "visit_simple_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_simple_iri"]], "visit_some_only_res() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_some_only_res"]], "visit_some_only_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_some_only_res"]], "visit_string_literal_language() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_string_literal_language"]], "visit_string_literal_language() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_string_literal_language"]], "visit_string_literal_no_language() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_string_literal_no_language"]], "visit_string_literal_no_language() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_string_literal_no_language"]], "visit_typed_literal() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_typed_literal"]], "visit_typed_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_typed_literal"]], "visit_union() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_union"]], "visit_union() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_union"]], "visit_value_res() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_value_res"]], "visit_value_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_value_res"]], "owldatarange (class in owlapy.ranges)": [[19, "owlapy.ranges.OWLDataRange"]], "owlpropertyrange (class in owlapy.ranges)": [[19, "owlapy.ranges.OWLPropertyRange"]], "owlapy.ranges": [[19, "module-owlapy.ranges"]], "dlsyntaxobjectrenderer (class in owlapy.render)": [[20, "owlapy.render.DLSyntaxObjectRenderer"]], "dlrenderer (in module owlapy.render)": [[20, "owlapy.render.DLrenderer"]], "manchesterowlsyntaxowlobjectrenderer (class in owlapy.render)": [[20, "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer"]], "manchesterrenderer (in module owlapy.render)": [[20, "owlapy.render.ManchesterRenderer"]], "__slots__ (owlapy.render.dlsyntaxobjectrenderer attribute)": [[20, "owlapy.render.DLSyntaxObjectRenderer.__slots__"]], "__slots__ (owlapy.render.manchesterowlsyntaxowlobjectrenderer attribute)": [[20, "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer.__slots__"]], "owl_expression_to_dl() (in module owlapy.render)": [[20, "owlapy.render.owl_expression_to_dl"]], "owl_expression_to_manchester() (in module owlapy.render)": [[20, "owlapy.render.owl_expression_to_manchester"]], "owlapy.render": [[20, "module-owlapy.render"]], "render() (owlapy.render.dlsyntaxobjectrenderer method)": [[20, "owlapy.render.DLSyntaxObjectRenderer.render"]], "render() (owlapy.render.manchesterowlsyntaxowlobjectrenderer method)": [[20, "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer.render"]], "set_short_form_provider() (owlapy.render.dlsyntaxobjectrenderer method)": [[20, "owlapy.render.DLSyntaxObjectRenderer.set_short_form_provider"]], "set_short_form_provider() (owlapy.render.manchesterowlsyntaxowlobjectrenderer method)": [[20, "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer.set_short_form_provider"]], "owldatatype (class in owlapy.types)": [[21, "owlapy.types.OWLDatatype"]], "__slots__ (owlapy.types.owldatatype attribute)": [[21, "owlapy.types.OWLDatatype.__slots__"]], "get_iri() (owlapy.types.owldatatype method)": [[21, "owlapy.types.OWLDatatype.get_iri"]], "owlapy.types": [[21, "module-owlapy.types"]], "type_index (owlapy.types.owldatatype attribute)": [[21, "owlapy.types.OWLDatatype.type_index"]], "key (owlapy.util.lrucache attribute)": [[22, "owlapy.util.LRUCache.KEY"]], "lrucache (class in owlapy.util)": [[22, "owlapy.util.LRUCache"]], "next (owlapy.util.lrucache attribute)": [[22, "owlapy.util.LRUCache.NEXT"]], "nnf (class in owlapy.util)": [[22, "owlapy.util.NNF"]], "orderedowlobject (class in owlapy.util)": [[22, "owlapy.util.OrderedOWLObject"]], "prev (owlapy.util.lrucache attribute)": [[22, "owlapy.util.LRUCache.PREV"]], "result (owlapy.util.lrucache attribute)": [[22, "owlapy.util.LRUCache.RESULT"]], "toplevelcnf (class in owlapy.util)": [[22, "owlapy.util.TopLevelCNF"]], "topleveldnf (class in owlapy.util)": [[22, "owlapy.util.TopLevelDNF"]], "__contains__() (owlapy.util.lrucache method)": [[22, "owlapy.util.LRUCache.__contains__"]], "__eq__() (owlapy.util.orderedowlobject method)": [[22, "owlapy.util.OrderedOWLObject.__eq__"]], "__getitem__() (owlapy.util.lrucache method)": [[22, "owlapy.util.LRUCache.__getitem__"]], "__lt__() (owlapy.util.orderedowlobject method)": [[22, "owlapy.util.OrderedOWLObject.__lt__"]], "__setitem__() (owlapy.util.lrucache method)": [[22, "owlapy.util.LRUCache.__setitem__"]], "__slots__ (owlapy.util.orderedowlobject attribute)": [[22, "owlapy.util.OrderedOWLObject.__slots__"]], "as_index() (in module owlapy.util)": [[22, "owlapy.util.as_index"]], "cache_clear() (owlapy.util.lrucache method)": [[22, "owlapy.util.LRUCache.cache_clear"]], "cache_info() (owlapy.util.lrucache method)": [[22, "owlapy.util.LRUCache.cache_info"]], "combine_nary_expressions() (in module owlapy.util)": [[22, "owlapy.util.combine_nary_expressions"]], "get_class_nnf() (owlapy.util.nnf method)": [[22, "owlapy.util.NNF.get_class_nnf"]], "get_top_level_cnf() (owlapy.util.toplevelcnf method)": [[22, "owlapy.util.TopLevelCNF.get_top_level_cnf"]], "get_top_level_dnf() (owlapy.util.topleveldnf method)": [[22, "owlapy.util.TopLevelDNF.get_top_level_dnf"]], "iter_count() (in module owlapy.util)": [[22, "owlapy.util.iter_count"]], "o (owlapy.util.orderedowlobject attribute)": [[22, "id0"], [22, "owlapy.util.OrderedOWLObject.o"]], "owlapy.util": [[22, "module-owlapy.util"]], "sentinel (owlapy.util.lrucache attribute)": [[22, "id1"], [22, "owlapy.util.LRUCache.sentinel"]], "boolean (owlapy.vocab.xsdvocabulary attribute)": [[23, "owlapy.vocab.XSDVocabulary.BOOLEAN"]], "date (owlapy.vocab.xsdvocabulary attribute)": [[23, "owlapy.vocab.XSDVocabulary.DATE"]], "date_time (owlapy.vocab.xsdvocabulary attribute)": [[23, "owlapy.vocab.XSDVocabulary.DATE_TIME"]], "date_time_stamp (owlapy.vocab.xsdvocabulary attribute)": [[23, "owlapy.vocab.XSDVocabulary.DATE_TIME_STAMP"]], "decimal (owlapy.vocab.xsdvocabulary attribute)": [[23, "owlapy.vocab.XSDVocabulary.DECIMAL"]], "double (owlapy.vocab.xsdvocabulary attribute)": [[23, "owlapy.vocab.XSDVocabulary.DOUBLE"]], "duration (owlapy.vocab.xsdvocabulary attribute)": [[23, "owlapy.vocab.XSDVocabulary.DURATION"]], "float (owlapy.vocab.xsdvocabulary attribute)": [[23, "owlapy.vocab.XSDVocabulary.FLOAT"]], "fraction_digits (owlapy.vocab.owlfacet attribute)": [[23, "owlapy.vocab.OWLFacet.FRACTION_DIGITS"]], "integer (owlapy.vocab.xsdvocabulary attribute)": [[23, "owlapy.vocab.XSDVocabulary.INTEGER"]], "length (owlapy.vocab.owlfacet attribute)": [[23, "owlapy.vocab.OWLFacet.LENGTH"]], "long (owlapy.vocab.xsdvocabulary attribute)": [[23, "owlapy.vocab.XSDVocabulary.LONG"]], "max_exclusive (owlapy.vocab.owlfacet attribute)": [[23, "owlapy.vocab.OWLFacet.MAX_EXCLUSIVE"]], "max_inclusive (owlapy.vocab.owlfacet attribute)": [[23, "owlapy.vocab.OWLFacet.MAX_INCLUSIVE"]], "max_length (owlapy.vocab.owlfacet attribute)": [[23, "owlapy.vocab.OWLFacet.MAX_LENGTH"]], "min_exclusive (owlapy.vocab.owlfacet attribute)": [[23, "owlapy.vocab.OWLFacet.MIN_EXCLUSIVE"]], "min_inclusive (owlapy.vocab.owlfacet attribute)": [[23, "owlapy.vocab.OWLFacet.MIN_INCLUSIVE"]], "min_length (owlapy.vocab.owlfacet attribute)": [[23, "owlapy.vocab.OWLFacet.MIN_LENGTH"]], "owlfacet (class in owlapy.vocab)": [[23, "owlapy.vocab.OWLFacet"]], "owlrdfvocabulary (class in owlapy.vocab)": [[23, "owlapy.vocab.OWLRDFVocabulary"]], "owl_bottom_data_property (owlapy.vocab.owlrdfvocabulary attribute)": [[23, "owlapy.vocab.OWLRDFVocabulary.OWL_BOTTOM_DATA_PROPERTY"]], "owl_bottom_object_property (owlapy.vocab.owlrdfvocabulary attribute)": [[23, "owlapy.vocab.OWLRDFVocabulary.OWL_BOTTOM_OBJECT_PROPERTY"]], "owl_class (owlapy.vocab.owlrdfvocabulary attribute)": [[23, "owlapy.vocab.OWLRDFVocabulary.OWL_CLASS"]], "owl_named_individual (owlapy.vocab.owlrdfvocabulary attribute)": [[23, "owlapy.vocab.OWLRDFVocabulary.OWL_NAMED_INDIVIDUAL"]], "owl_nothing (owlapy.vocab.owlrdfvocabulary attribute)": [[23, "owlapy.vocab.OWLRDFVocabulary.OWL_NOTHING"]], "owl_thing (owlapy.vocab.owlrdfvocabulary attribute)": [[23, "owlapy.vocab.OWLRDFVocabulary.OWL_THING"]], "owl_top_data_property (owlapy.vocab.owlrdfvocabulary attribute)": [[23, "owlapy.vocab.OWLRDFVocabulary.OWL_TOP_DATA_PROPERTY"]], "owl_top_object_property (owlapy.vocab.owlrdfvocabulary attribute)": [[23, "owlapy.vocab.OWLRDFVocabulary.OWL_TOP_OBJECT_PROPERTY"]], "pattern (owlapy.vocab.owlfacet attribute)": [[23, "owlapy.vocab.OWLFacet.PATTERN"]], "rdfs_literal (owlapy.vocab.owlrdfvocabulary attribute)": [[23, "owlapy.vocab.OWLRDFVocabulary.RDFS_LITERAL"]], "string (owlapy.vocab.xsdvocabulary attribute)": [[23, "owlapy.vocab.XSDVocabulary.STRING"]], "total_digits (owlapy.vocab.owlfacet attribute)": [[23, "owlapy.vocab.OWLFacet.TOTAL_DIGITS"]], "xsdvocabulary (class in owlapy.vocab)": [[23, "owlapy.vocab.XSDVocabulary"]], "from_str() (owlapy.vocab.owlfacet static method)": [[23, "owlapy.vocab.OWLFacet.from_str"]], "operator (owlapy.vocab.owlfacet property)": [[23, "owlapy.vocab.OWLFacet.operator"]], "owlapy.vocab": [[23, "module-owlapy.vocab"]], "symbolic_form (owlapy.vocab.owlfacet property)": [[23, "owlapy.vocab.OWLFacet.symbolic_form"]]}})
\ No newline at end of file
+Search.setIndex({"docnames": ["autoapi/owlapy/_utils/index", "autoapi/owlapy/has/index", "autoapi/owlapy/index", "autoapi/owlapy/iri/index", "autoapi/owlapy/meta_classes/index", "autoapi/owlapy/model/index", "autoapi/owlapy/model/providers/index", "autoapi/owlapy/namespaces/index", "autoapi/owlapy/owl2sparql/converter/index", "autoapi/owlapy/owl2sparql/index", "autoapi/owlapy/owl_annotation/index", "autoapi/owlapy/owl_axiom/index", "autoapi/owlapy/owl_class_expression/index", "autoapi/owlapy/owl_individual/index", "autoapi/owlapy/owl_literal/index", "autoapi/owlapy/owl_property/index", "autoapi/owlapy/owl_restriction/index", "autoapi/owlapy/owlobject/index", "autoapi/owlapy/parser/index", "autoapi/owlapy/ranges/index", "autoapi/owlapy/render/index", "autoapi/owlapy/types/index", "autoapi/owlapy/util/index", "autoapi/owlapy/vocab/index", "index", "usage/main"], "filenames": ["autoapi/owlapy/_utils/index.rst", "autoapi/owlapy/has/index.rst", "autoapi/owlapy/index.rst", "autoapi/owlapy/iri/index.rst", "autoapi/owlapy/meta_classes/index.rst", "autoapi/owlapy/model/index.rst", "autoapi/owlapy/model/providers/index.rst", "autoapi/owlapy/namespaces/index.rst", "autoapi/owlapy/owl2sparql/converter/index.rst", "autoapi/owlapy/owl2sparql/index.rst", "autoapi/owlapy/owl_annotation/index.rst", "autoapi/owlapy/owl_axiom/index.rst", "autoapi/owlapy/owl_class_expression/index.rst", "autoapi/owlapy/owl_individual/index.rst", "autoapi/owlapy/owl_literal/index.rst", "autoapi/owlapy/owl_property/index.rst", "autoapi/owlapy/owl_restriction/index.rst", "autoapi/owlapy/owlobject/index.rst", "autoapi/owlapy/parser/index.rst", "autoapi/owlapy/ranges/index.rst", "autoapi/owlapy/render/index.rst", "autoapi/owlapy/types/index.rst", "autoapi/owlapy/util/index.rst", "autoapi/owlapy/vocab/index.rst", "index.rst", "usage/main.md"], "titles": ["owlapy._utils
", "owlapy.has
", "owlapy
", "owlapy.iri
", "owlapy.meta_classes
", "owlapy.model
", "owlapy.model.providers
", "owlapy.namespaces
", "owlapy.owl2sparql.converter
", "owlapy.owl2sparql
", "owlapy.owl_annotation
", "owlapy.owl_axiom
", "owlapy.owl_class_expression
", "owlapy.owl_individual
", "owlapy.owl_literal
", "owlapy.owl_property
", "owlapy.owl_restriction
", "owlapy.owlobject
", "owlapy.parser
", "owlapy.ranges
", "owlapy.render
", "owlapy.types
", "owlapy.util
", "owlapy.vocab
", "Welcome to OWLAPY!", "OWLAPY"], "terms": {"move": [0, 5], "arg": [0, 5], "sourc": [0, 1, 3, 4, 5, 6, 7, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "an": [0, 1, 3, 4, 5, 8, 10, 11, 12, 14, 15, 16, 17, 18, 22], "import": [0, 5, 11], "class": 0, "current": [0, 5], "set": [0, 5, 8, 11, 14, 15], "__module__": [0, 5], "attribut": 0, "thi": [0, 1, 3, 4, 5, 11, 12, 13, 14, 15, 16, 18, 21, 22], "i": [0, 1, 3, 5, 10, 11, 12, 14, 15, 16, 17, 18, 22], "us": [0, 1, 5, 8, 11, 15, 16, 18, 22], "document": [0, 5], "purpos": [0, 5], "hide": [0, 5], "intern": [0, 5], "packag": [0, 24], "sphinx": [0, 5], "paramet": [0, 4, 5, 8, 11, 16, 17, 18, 20, 22], "list": [0, 5, 8, 11, 18], "hasindex": [1, 5, 22], "base": [1, 3, 4, 5, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "protocol": [1, 5], "interfac": [1, 4, 5, 10, 11, 15, 16, 17], "type": [1, 2, 4, 5, 8, 11, 12, 14, 15, 16, 22], "index": [1, 5], "group": [1, 5], "object": [1, 4, 5, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 24], "when": [1, 5], "sort": [1, 5, 11, 22], "type_index": [1, 3, 5, 12, 13, 14, 15, 16, 21, 22], "classvar": [1, 5], "int": [1, 4, 5, 8, 14, 16, 18, 22], "__eq__": [1, 3, 5, 7, 11, 12, 15, 16, 17, 22], "other": [1, 3, 5, 7, 11, 12, 15, 16, 17, 22], "return": [1, 3, 4, 5, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22], "self": [1, 3, 5, 7, 11, 12, 15, 16, 17, 22], "valu": [1, 3, 4, 5, 7, 8, 10, 11, 12, 14, 15, 16, 17, 22], "model": [2, 8, 18, 20, 22], "provid": [2, 5, 17, 20], "owl2sparql": 2, "convert": [2, 9, 22], "ha": [2, 5, 17, 22], "iri": [2, 4, 5, 10, 11, 12, 13, 15, 17, 18, 21], "meta_class": [2, 5, 11, 12, 16, 17, 21], "namespac": [2, 3, 5, 18, 23], "owl_annot": [2, 3, 5, 11, 14], "owl_axiom": [2, 5], "owl_class_express": [2, 5, 11, 16], "owl_individu": [2, 5, 11, 16], "owl_liter": [2, 5, 11, 16], "owl_properti": [2, 5, 11, 16], "owl_restrict": [2, 6, 18], "owlobject": [2, 5, 10, 11, 12, 13, 15, 16, 18, 19, 20, 21, 22], "parser": 2, "rang": [2, 4, 5, 12, 16, 21], "render": [2, 8, 17], "util": 2, "vocab": [2, 16, 18], "__version__": 2, "0": [2, 3, 5, 22], "1": [2, 5, 8, 16, 22], "3": [2, 22], "str": [3, 5, 7, 8, 12, 13, 14, 15, 17, 18, 20, 23], "remaind": [3, 5, 23], "owlannotationsubject": [3, 5, 10, 11], "owlannotationvalu": [3, 5, 10, 11, 14], "consist": [3, 5], "properti": [3, 5, 7, 8, 11, 12, 13, 15, 16, 17, 19, 23], "The": [3, 4, 5, 8, 11, 12, 13, 14, 15, 16, 17, 18, 21, 22], "string": [3, 5, 14, 17, 18, 20, 23], "specifi": [3, 5], "remind": [3, 5, 12], "correspond": [3, 5, 15], "__slots__": [3, 4, 5, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22], "_namespac": [3, 5], "_remaind": [3, 5], "__weakref__": [3, 5], "final": [3, 5, 7, 12, 13, 14, 15, 16, 21, 23], "static": [3, 5, 23], "creat": [3, 5, 6], "__repr__": [3, 5, 7, 11, 12, 15, 16, 17], "repr": [3, 5, 7, 11, 12, 15, 16, 17], "__hash__": [3, 5, 7, 11, 12, 15, 16, 17], "hash": [3, 5, 7, 11, 12, 15, 16, 17], "is_noth": [3, 5], "determin": [3, 5, 12, 15, 16], "equal": [3, 5], "owl": [3, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24], "noth": [3, 5, 12], "name": [3, 5, 8, 12, 13, 15, 17, 21, 22, 23], "true": [3, 5, 8, 10, 12, 14, 15, 16], "http": [3, 5, 8, 14, 18], "www": [3, 5, 8, 14, 18], "w3": [3, 5, 8, 14, 18], "org": [3, 5, 8, 14, 18], "2002": [3, 5], "07": [3, 5], "otherwis": [3, 5, 10, 14], "fals": [3, 5, 8, 20, 22], "is_th": [3, 5], "thing": [3, 5, 12, 15], "is_reserved_vocabulari": [3, 5], "bool": [3, 5, 8, 10, 11, 12, 14, 15, 16, 17, 22, 23], "reserv": [3, 5], "vocabulari": [3, 5, 23], "start": [3, 5], "1999": [3, 5], "02": [3, 5], "22": [3, 5], "rdf": [3, 5, 7, 23], "syntax": [3, 5, 8, 18, 20], "n": [3, 5, 7, 18], "2000": [3, 5], "01": [3, 5], "schema": [3, 5], "2001": [3, 5, 14], "xmlschema": [3, 5, 14], "as_iri": [3, 5, 10], "mone": [3, 5, 10], "as_str": [3, 5], "cd": [3, 5], "should": [3, 5, 14, 22], "deprec": [3, 5], "get_short_form": [3, 5], "get": [3, 4, 5, 11, 12, 13, 14, 15, 16, 21], "short": [3, 5, 17, 20], "form": [3, 5, 12, 15, 16, 17, 20, 22], "A": [3, 4, 5, 7, 10, 11, 12, 14, 15, 16, 22], "repres": [3, 5, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21], "get_namespac": [3, 5], "get_remaind": [3, 5], "coincid": [3, 5], "ncname": [3, 5], "usual": [3, 5], "hasiri": [4, 5, 17, 21], "simpl": [4, 5], "access": [4, 5], "abstract": [4, 5, 8, 11, 12, 14, 15, 16, 17, 18, 22], "get_iri": [4, 5, 11, 12, 13, 15, 21], "hasoperand": [4, 5, 11, 12, 16], "gener": [4, 5, 8, 11, 16, 22], "_t": [4, 5, 16], "have": [4, 5], "collect": [4, 5], "operand": [4, 5, 11, 12, 16, 22], "iter": [4, 5, 8, 11, 12, 16, 22], "e": [4, 5, 8, 11, 12, 15, 16, 17, 22], "g": [4, 5, 11, 12, 15, 16, 22], "individu": [4, 5, 8, 10, 11, 12, 13, 16], "samea": [4, 5, 11, 12, 16], "axiom": [4, 5, 11, 12, 16], "equival": [4, 5, 11, 12, 16], "hasfil": [4, 5, 16], "filler": [4, 5, 16], "get_fil": [4, 5, 16], "restrict": [4, 5, 6, 15, 16], "In": [4, 5, 16], "case": [4, 5, 16, 18], "data": [4, 5, 11, 12, 15, 16, 21], "constant": [4, 5, 16, 22], "For": [4, 5, 15, 16], "quantifi": [4, 5, 16], "express": [4, 5, 8, 11, 12, 15, 16, 17, 18, 22], "hascardin": [4, 5, 16], "cardin": [4, 5, 16], "get_cardin": [4, 5, 16], "non": [4, 5, 16], "neg": [4, 5, 8, 16], "integ": [4, 5, 14, 16, 23], "owlrdfvocabulari": [5, 23], "_vocabulari": [5, 23], "enum": [5, 23], "enumer": [5, 16, 23], "owl_th": [5, 23], "owl_noth": [5, 23], "owl_class": [5, 23], "owl_named_individu": [5, 23], "owl_top_object_properti": [5, 23], "owl_bottom_object_properti": [5, 23], "owl_top_data_properti": [5, 23], "owl_bottom_data_properti": [5, 23], "rdfs_liter": [5, 23], "xsdvocabulari": [5, 23], "xsd": [5, 7, 23], "decim": [5, 23], "long": [5, 23], "doubl": [5, 14, 23], "float": [5, 14, 23], "boolean": [5, 12, 14, 23], "date": [5, 14, 23], "date_tim": [5, 23], "datetim": [5, 14, 23], "date_time_stamp": [5, 23], "datetimestamp": [5, 23], "durat": [5, 14, 23], "owlfacet": [5, 16, 18, 23], "symbolic_form": [5, 23], "oper": [5, 23], "callabl": [5, 20, 23], "_x": [5, 23], "facet": [5, 16, 23], "min_inclus": [5, 23], "mininclus": [5, 23], "min_exclus": [5, 23], "minexclus": [5, 23], "max_inclus": [5, 23], "maxinclus": [5, 23], "max_exclus": [5, 23], "maxexclus": [5, 23], "length": [5, 23], "min_length": [5, 23], "minlength": [5, 23], "max_length": [5, 23], "maxlength": [5, 23], "pattern": [5, 23], "total_digit": [5, 23], "totaldigit": [5, 23], "fraction_digit": [5, 23], "fractiondigit": [5, 23], "from_str": [5, 23], "modul": 5, "is_anonym": [5, 17], "owlent": [5, 8, 11, 12, 13, 15, 17, 20, 21], "owlnamedobject": [5, 17], "entiti": [5, 8, 11, 17], "2": [5, 11, 12, 13, 14, 15, 16, 17, 19, 21, 22], "specif": [5, 11, 12, 13, 14, 15, 16, 17, 19, 21], "to_string_id": [5, 17], "owlannotationobject": [5, 10], "marker": [5, 10, 15], "annot": [5, 10, 11, 14], "none": [5, 8, 10, 11, 14, 17, 18, 20, 22], "as_anonymous_individu": [5, 10], "anonym": [5, 10, 12, 13], "subject": [5, 8, 10, 11], "which": [5, 10, 11, 12, 14, 15, 17, 18], "can": [5, 10, 11, 15, 19, 22], "either": [5, 10, 11, 15], "uri": [5, 10], "liter": [5, 10, 14, 16], "is_liter": [5, 10, 14], "as_liter": [5, 10, 14], "owlliter": [5, 10, 11, 14, 16, 18], "owlnarybooleanclassexpress": [5, 12], "owlclassexpress": [5, 8, 11, 12, 16, 18, 22], "owlbooleanclassexpress": [5, 12], "owlpropertyrang": [5, 12, 19], "is_owl_th": [5, 12], "built": [5, 12], "method": [5, 12, 16, 17, 18], "doe": [5, 12], "is_owl_noth": [5, 12], "get_object_complement_of": [5, 12], "owlobjectcomplementof": [5, 12], "complement": [5, 12], "get_nnf": [5, 12], "negat": [5, 12, 22], "normal": [5, 12, 22], "nnf": [5, 12, 22], "op": [5, 12], "objectcomplementof": [5, 12], "_operand": [5, 12], "3003": [5, 12], "get_operand": [5, 12], "wrap": [5, 12], "owlanonymousclassexpress": [5, 12, 16], "owldatarang": [5, 11, 12, 16, 18, 19, 21, 22], "datarang": [5, 11, 19], "owlclass": [5, 11, 12, 18], "_iri": [5, 11, 12, 13, 15, 21], "_is_noth": [5, 12], "_is_th": [5, 12], "1001": [5, 12], "owlobjectunionof": [5, 12, 22], "objectunionof": [5, 12], "3002": [5, 12], "owlobjectintersectionof": [5, 12, 16], "3001": [5, 12], "owlth": [5, 12], "owlnoth": [5, 12], "owlobjectpropertyexpress": [5, 11, 15, 16, 18], "owlpropertyexpress": [5, 11, 15, 16], "high": [5, 15], "level": [5, 11, 15, 22], "describ": [5, 15], "differ": [5, 15, 20], "get_inverse_properti": [5, 15], "obtain": [5, 15, 16], "invers": [5, 15], "note": [5, 14, 15], "necessarili": [5, 15], "simplest": [5, 15], "get_named_properti": [5, 15], "owlobjectproperti": [5, 15, 18], "p": [5, 15, 16], "inv": [5, 15], "is_object_property_express": [5, 15], "owlproperti": [5, 11, 15], "aren": [5, 15], "t": [5, 11, 15], "By": [5, 15], "definit": [5, 15], "ar": [5, 8, 11, 15, 16], "possibli": [5, 15], "is_data_property_express": [5, 15], "is_owl_top_object_properti": [5, 15], "topobjectproperti": [5, 15], "is_owl_top_data_properti": [5, 15], "topdataproperti": [5, 15], "owldatapropertyexpress": [5, 11, 15, 16], "owldataproperti": [5, 15, 18], "1004": [5, 15], "1002": [5, 15], "owlobjectinverseof": [5, 15], "owlrestrict": [5, 16], "get_properti": [5, 11, 16], "being": [5, 16], "is_data_restrict": [5, 16], "is_object_restrict": [5, 16], "owlobjectallvaluesfrom": [5, 16], "owlquantifiedobjectrestrict": [5, 16, 18], "objectallvaluesfrom": [5, 16], "_properti": [5, 11, 16], "_filler": [5, 16], "3006": [5, 16], "owlobjectsomevaluesfrom": [5, 16], "objectsomevaluesfrom": [5, 16], "3005": [5, 16], "owlquantifiedrestrict": [5, 16], "owlobjectrestrict": [5, 16], "owlhasvaluerestrict": [5, 16], "owldatarestrict": [5, 16], "owlcardinalityrestrict": [5, 16], "_f": [5, 16], "min": [5, 6, 16], "max": [5, 6, 16], "owlobjectmincardin": [5, 16], "owlobjectcardinalityrestrict": [5, 16, 18], "objectmincardin": [5, 16], "_cardin": [5, 16], "3008": [5, 16], "owldataallvaluesfrom": [5, 16], "owlquantifieddatarestrict": [5, 16, 18], "dataallvaluesfrom": [5, 16], "3013": [5, 16], "owlobjecthasself": [5, 16, 18], "objecthasself": [5, 16], "3011": [5, 16], "owlobjectmaxcardin": [5, 16], "objectmaxcardin": [5, 16], "3010": [5, 16], "owlobjectexactcardin": [5, 16], "objectexactcardin": [5, 16], "3009": [5, 16], "as_intersection_of_min_max": [5, 16], "conjunct": [5, 16, 22], "semant": [5, 16], "structur": [5, 16], "simpler": [5, 16], "r": [5, 16], "c": [5, 16, 22], "owldataexactcardin": [5, 16], "owldatacardinalityrestrict": [5, 16, 18], "dataexactcardin": [5, 16], "3016": [5, 16], "d": [5, 16], "owldatamincardin": [5, 16], "datamincardin": [5, 16], "3015": [5, 16], "owldatamaxcardin": [5, 16], "datamaxcardin": [5, 16], "3017": [5, 16], "owldatasomevaluesfrom": [5, 16], "datasomevaluesfrom": [5, 16], "3012": [5, 16], "owldatahasvalu": [5, 16, 18], "datahasvalu": [5, 16], "3014": [5, 16], "as_some_values_from": [5, 16], "conveni": [5, 16], "existenti": [5, 16], "nomin": [5, 16], "simp": [5, 16], "hasvalu": [5, 16], "some": [5, 15, 16], "owldataoneof": [5, 16, 18], "dataoneof": [5, 16], "4003": [5, 16], "oneof": [5, 16], "code": [5, 16], "owlnamedindividu": [5, 8, 13, 18], "owlindividu": [5, 11, 13, 16], "1005": [5, 13], "owlequivalentclassesaxiom": [5, 11], "class_express": [5, 8, 11], "owlannot": [5, 11], "owlnaryclassaxiom": [5, 11], "equivalentclass": [5, 11], "contains_named_equivalent_class": [5, 11], "contains_owl_noth": [5, 11], "contains_owl_th": [5, 11], "named_class": [5, 11], "owlclassaxiom": [5, 11], "owllogicalaxiom": [5, 11], "owldatapropertydomainaxiom": [5, 11], "property_": [5, 11], "domain": [5, 11], "owlpropertydomainaxiom": [5, 11], "datapropertydomain": [5, 11], "owlaxiom": [5, 11], "ontologi": [5, 11, 17], "contain": [5, 11, 22], "These": [5, 11, 16], "declar": [5, 11], "logic": [5, 11, 18], "_annot": [5, 11], "is_annot": [5, 11], "is_logical_axiom": [5, 11], "is_annotation_axiom": [5, 11], "owldatapropertyrangeaxiom": [5, 11], "range_": [5, 11], "owlpropertyrangeaxiom": [5, 11], "datapropertyrang": [5, 11], "owlobjectpropertydomainaxiom": [5, 11], "objectpropertydomain": [5, 11], "owlobjectpropertyrangeaxiom": [5, 11], "objectpropertyrang": [5, 11], "owldatatyp": [5, 11, 14, 16, 18, 21], "datatyp": [5, 6, 11, 14, 16, 21], "4001": [5, 21], "4008": [5, 14], "get_liter": [5, 14], "lexic": [5, 14], "languag": [5, 14], "tag": [5, 14], "includ": [5, 11, 14], "is_boolean": [5, 14], "whether": [5, 11, 14, 22], "parse_boolean": [5, 14], "pars": [5, 14, 17, 18], "space": [5, 14], "is_doubl": [5, 14], "parse_doubl": [5, 14], "is_integ": [5, 14], "parse_integ": [5, 14], "is_str": [5, 14], "parse_str": [5, 14], "is_dat": [5, 14], "parse_d": [5, 14], "is_datetim": [5, 14], "parse_datetim": [5, 14], "is_dur": [5, 14], "parse_dur": [5, 14], "panda": [5, 14], "timedelta": [5, 14], "to_python": [5, 14], "get_datatyp": [5, 11, 14, 16], "owlontologyid": 5, "ontology_iri": 5, "version_iri": 5, "identifi": 5, "sinc": 5, "do": 5, "thei": 5, "option": 5, "also": [5, 11], "version": 5, "instanc": [5, 8, 16, 22], "bundl": 5, "inform": 5, "togeth": 5, "If": [5, 8], "doesn": [5, 11], "we": [5, 18], "sai": 5, "_ontology_iri": 5, "_version_iri": 5, "get_ontology_iri": 5, "get_version_iri": 5, "get_default_document_iri": 5, "default": [5, 18], "represent": [5, 24], "id": 5, "els": 5, "see": 5, "owlimportsdeclar": 5, "import_iri": 5, "statement": 5, "point": 5, "might": 5, "its": [5, 7, 11, 17], "mandat": 5, "exampl": [5, 8, 15, 17], "resolv": 5, "deploi": 5, "url": 5, "owlontologi": 5, "empti": 5, "mai": 5, "need": 5, "cannot": 5, "modifi": 5, "directli": 5, "chang": 5, "must": 5, "appli": 5, "via": 5, "owlontologymanag": 5, "classes_in_signatur": 5, "signatur": 5, "data_properties_in_signatur": 5, "object_properties_in_signatur": 5, "individuals_in_signatur": 5, "equivalent_classes_axiom": 5, "all": [5, 11, 18, 22], "retriev": 5, "general_class_axiom": 5, "subclass": [5, 18], "complex": 5, "sub": [5, 11], "disjointclass": [5, 11], "onli": [5, 8, 11], "data_property_domain_axiom": 5, "where": 5, "match": 5, "search": 5, "data_property_range_axiom": 5, "object_property_domain_axiom": 5, "object_property_range_axiom": 5, "get_owl_ontology_manag": 5, "_m": 5, "manag": 5, "get_ontology_id": 5, "belong": 5, "check": 5, "owlontologychang": 5, "get_ontologi": 5, "wa": 5, "applic": 5, "addimport": 5, "import_declar": 5, "ad": 5, "_ont": 5, "_declar": 5, "get_import_declar": 5, "pertain": 5, "It": [5, 11], "main": 5, "load": 5, "create_ontologi": 5, "new": 5, "newli": 5, "alreadi": 5, "exist": 5, "load_ontologi": 5, "assum": 5, "map": [5, 8], "expect": 5, "although": 5, "api": 5, "toler": 5, "situat": 5, "apply_chang": 5, "just": 5, "one": [5, 15], "through": 5, "implement": [5, 18], "call": 5, "rais": 5, "changeappli": 5, "unsuccessfulli": 5, "successfulli": 5, "add_axiom": 5, "add": 5, "singl": 5, "remove_axiom": 5, "remov": 5, "from": [5, 8, 22], "save_ontologi": 5, "document_iri": 5, "save": 5, "how": 5, "owlreason": 5, "reason": 5, "over": 5, "closur": 5, "particular": [5, 16], "root": [5, 8], "data_property_domain": 5, "pe": 5, "direct": 5, "indirect": 5, "respect": 5, "whose": 5, "let": 5, "equivalent_class": 5, "result": [5, 8, 18, 22], "super_class": [5, 11], "top": [5, 11, 22], "object_property_domain": 5, "object_property_rang": 5, "objectinverseof": [5, 15], "ce": [5, 8, 22], "only_nam": 5, "entail": 5, "unsatisfi": 5, "bottom": 5, "node": [5, 18], "disjoint_class": 5, "disjoint": 5, "strictsubclassof": 5, "different_individu": 5, "ind": 5, "x": [5, 8], "differentindividu": [5, 11], "same_individu": 5, "same": [5, 22], "sameindividu": [5, 11], "equivalent_object_properti": 5, "simplifi": [5, 16], "equivalentobjectproperti": [5, 11], "bottomdataproperti": 5, "equivalent_data_properti": 5, "dp": 5, "equivalentdataproperti": [5, 11], "data_property_valu": 5, "so": [5, 18], "taken": 5, "account": 5, "each": 5, "l": 5, "datapropertyassert": [5, 11], "object_property_valu": 5, "j": 5, "objectpropertyassert": [5, 11], "flush": 5, "ani": 5, "store": 5, "buffer": 5, "caus": 5, "take": 5, "consider": 5, "directclassassert": 5, "classassert": [5, 11], "sub_class": [5, 11], "strict": 5, "potenti": 5, "descend": 5, "directsubclassof": 5, "disjoint_object_properti": 5, "objectpropertycomplementof": 5, "strictsubobjectpropertyof": 5, "disjoint_data_properti": 5, "datapropertycomplementof": 5, "strictsubdatapropertyof": 5, "sub_data_properti": 5, "subproperti": 5, "directsubdatapropertyof": 5, "super_data_properti": 5, "stream": [5, 11], "super": [5, 11], "ancestor": 5, "sub_object_properti": 5, "directsubobjectpropertyof": 5, "bottomobjectproperti": 5, "super_object_properti": 5, "get_root_ontologi": 5, "": [5, 18], "is_isol": 5, "isol": 5, "is_using_triplestor": 5, "triplestor": 5, "owltopobjectproperti": [5, 14], "owlbottomobjectproperti": [5, 14], "owltopdataproperti": [5, 14], "owlbottomdataproperti": [5, 14], "doubleowldatatyp": [5, 14], "integerowldatatyp": [5, 14], "booleanowldatatyp": [5, 14], "stringowldatatyp": [5, 14], "dateowldatatyp": [5, 14], "datetimeowldatatyp": [5, 14], "durationowldatatyp": [5, 14], "topowldatatyp": [5, 14], "numeric_datatyp": [5, 14], "time_datatyp": [5, 14], "constructor": 6, "restriction_liter": 6, "owldatatypemaxexclusiverestrict": 6, "max_": 6, "owldatatyperestrict": [6, 16, 18], "exclus": 6, "owldatatypeminexclusiverestrict": 6, "min_": 6, "owldatatypemaxinclusiverestrict": 6, "inclus": 6, "owldatatypemininclusiverestrict": 6, "owldatatypeminmaxexclusiverestrict": 6, "owldatatypeminmaxinclusiverestrict": 6, "prefix": 7, "_prefix": 7, "_n": 7, "format": 8, "peek": 8, "last": 8, "element": [8, 22], "arrai": 8, "arr": 8, "variablesmap": 8, "helper": 8, "sparql": [8, 9], "convers": 8, "class_cnt": 8, "prop_cnt": 8, "ind_cnt": 8, "dict": 8, "get_vari": 8, "new_individual_vari": 8, "new_property_vari": 8, "__contains__": [8, 22], "item": [8, 22], "__getitem__": [8, 22], "owl2sparqlconvert": 8, "modal_depth": 8, "current_vari": 8, "variabl": 8, "parent": 8, "parent_var": 8, "variable_ent": 8, "cnt": 8, "grouping_var": 8, "having_condit": 8, "root_vari": 8, "named_individu": 8, "queri": 8, "namedindividu": 8, "stack_vari": 8, "var": 8, "stack_par": 8, "process": 8, "new_count_var": 8, "append_tripl": 8, "predic": 8, "object_": [8, 11], "append": 8, "frag": 8, "tripl": 8, "as_queri": 8, "count": [8, 22], "project": 8, "transform": [8, 22], "posit": 8, "problem": 8, "owl_expression_to_sparql": 8, "tr": [8, 18], "owl2": [8, 18], "unclear": 8, "affect": 11, "mean": 11, "exclud": 11, "owlpropertyaxiom": 11, "owlobjectpropertyaxiom": 11, "owldatapropertyaxiom": 11, "owlindividualaxiom": 11, "owldeclarationaxiom": 11, "_entiti": 11, "get_ent": 11, "owldatatypedefinitionaxiom": 11, "datatypedefinit": 11, "_datatyp": 11, "_datarang": 11, "get_datarang": 11, "owlhaskeyaxiom": 11, "property_express": 11, "haskei": 11, "_class_express": 11, "_property_express": 11, "get_class_express": 11, "get_property_express": 11, "owlnaryaxiom": 11, "_c": 11, "two": 11, "more": [11, 16], "could": 11, "multipl": 11, "pairwis": 11, "as_pairwise_axiom": 11, "appear": 11, "itself": 11, "unchang": 11, "owldisjointclassesaxiom": 11, "owlnaryindividualaxiom": 11, "_individu": 11, "owldifferentindividualsaxiom": 11, "owlsameindividualaxiom": 11, "owlnarypropertyaxiom": 11, "_p": 11, "owlequivalentobjectpropertiesaxiom": 11, "owldisjointobjectpropertiesaxiom": 11, "disjointobjectproperti": 11, "owlinverseobjectpropertiesaxiom": 11, "first": 11, "second": 11, "inverseobjectproperti": 11, "_first": 11, "_second": 11, "get_first_properti": 11, "get_second_properti": 11, "owlequivalentdatapropertiesaxiom": 11, "owldisjointdatapropertiesaxiom": 11, "disjointdataproperti": 11, "owlsubclassofaxiom": 11, "subclassof": 11, "_sub_class": 11, "_super_class": 11, "get_sub_class": 11, "get_super_class": 11, "owldisjointunionaxiom": 11, "cls_": 11, "disjointunion": 11, "_cl": 11, "get_owl_class": 11, "get_owl_equivalent_classes_axiom": 11, "get_owl_disjoint_classes_axiom": 11, "owlclassassertionaxiom": 11, "get_individu": 11, "owlannotationproperti": 11, "annotationproperti": 11, "variou": 11, "bind": 11, "_valu": [11, 16], "act": 11, "along": 11, "get_valu": 11, "depend": [11, 22], "upon": 11, "owlanonymousindividu": 11, "owlannotationaxiom": 11, "owlannotationassertionaxiom": 11, "annotationassert": 11, "_subject": 11, "get_subject": 11, "owlsubannotationpropertyofaxiom": 11, "sub_properti": 11, "super_properti": 11, "subannotationpropertyof": 11, "_sub_properti": 11, "_super_properti": 11, "get_sub_properti": 11, "get_super_properti": 11, "owlannotationpropertydomainaxiom": 11, "annotationpropertydomain": 11, "_domain": 11, "get_domain": 11, "owlannotationpropertyrangeaxiom": 11, "annotationpropertyrang": 11, "_rang": 11, "get_rang": 11, "owlsubpropertyaxiom": 11, "owlsubobjectpropertyofaxiom": 11, "subobjectpropertyof": 11, "owlsubdatapropertyofaxiom": 11, "subdatapropertyof": 11, "owlpropertyassertionaxiom": 11, "propertyassert": 11, "_object": 11, "get_object": 11, "owlobjectpropertyassertionaxiom": 11, "owlnegativeobjectpropertyassertionaxiom": 11, "negativeobjectpropertyassert": 11, "owldatapropertyassertionaxiom": 11, "owlnegativedatapropertyassertionaxiom": 11, "negativedatapropertyassert": 11, "owlunarypropertyaxiom": 11, "unari": 11, "owlobjectpropertycharacteristicaxiom": 11, "function": 11, "owlfunctionalobjectpropertyaxiom": 11, "functionalobjectproperti": 11, "owlasymmetricobjectpropertyaxiom": 11, "asymmetricobjectproperti": 11, "owlinversefunctionalobjectpropertyaxiom": 11, "inversefunctionalobjectproperti": 11, "owlirreflexiveobjectpropertyaxiom": 11, "irreflexiveobjectproperti": 11, "owlreflexiveobjectpropertyaxiom": 11, "reflexiveobjectproperti": 11, "owlsymmetricobjectpropertyaxiom": 11, "symmetricobjectproperti": 11, "owltransitiveobjectpropertyaxiom": 11, "transitiveobjectproperti": 11, "owldatapropertycharacteristicaxiom": 11, "owlfunctionaldatapropertyaxiom": 11, "functionaldataproperti": 11, "_r": 11, "owldatacomplementof": 12, "data_rang": 12, "datacomplementof": 12, "4002": 12, "get_data_rang": 12, "owlnarydatarang": 12, "owldataunionof": 12, "dataunionof": 12, "4005": 12, "owldataintersectionof": 12, "dataintersectionof": 12, "4004": 12, "refer": 15, "without": 15, "actual": 15, "consid": 15, "haspart": 15, "ispartof": 15, "inverseof": 15, "car": 15, "part": 15, "least": 15, "_inverse_properti": 15, "1003": 15, "get_invers": 15, "owlobjectoneof": [16, 18], "objectoneof": 16, "3004": 16, "exact": 16, "extens": 16, "as_object_union_of": 16, "union": 16, "singleton": 16, "standard": 16, "dl": [16, 20], "a0": 16, "unionof": 16, "owlobjecthasvalu": [16, 18], "objecthasvalu": 16, "_v": [16, 22], "3007": 16, "type_": 16, "facet_restrict": 16, "owlfacetrestrict": [16, 18], "datatyperestrict": 16, "_type": 16, "_facet_restrict": 16, "4006": 16, "get_facet_restrict": 16, "sequenc": 16, "_facet": 16, "_liter": 16, "4007": 16, "get_facet": 16, "get_facet_valu": 16, "owlobjectrender": [17, 20], "set_short_form_provid": [17, 20], "short_form_provid": [17, 20], "configur": [17, 20], "shorten": [17, 20, 22], "dure": [17, 20], "o": [17, 20, 22], "rendit": [17, 20], "owlobjectpars": [17, 18], "parse_express": [17, 18], "expression_str": [17, 18], "etc": 17, "anyth": 17, "__lt__": [17, 22], "manchester_grammar": 18, "manchesterowlsyntaxpars": 18, "grammar": 18, "parsimoni": 18, "nodevisitor": 18, "manchest": [18, 20], "follow": [18, 22], "slot": 18, "visit_union": 18, "children": 18, "visit_intersect": 18, "visit_primari": 18, "visit_some_only_r": 18, "visit_cardinality_r": 18, "visit_value_r": 18, "visit_has_self": 18, "visit_object_properti": 18, "visit_class_express": 18, "visit_individual_list": 18, "visit_data_primari": 18, "visit_data_some_only_r": 18, "visit_data_cardinality_r": 18, "visit_data_value_r": 18, "visit_data_union": 18, "visit_data_intersect": 18, "visit_literal_list": 18, "visit_data_parenthes": 18, "visit_datatype_restrict": 18, "visit_facet_restrict": 18, "visit_liter": 18, "visit_typed_liter": 18, "visit_string_literal_languag": 18, "visit_string_literal_no_languag": 18, "visit_quoted_str": 18, "visit_float_liter": 18, "visit_decimal_liter": 18, "visit_integer_liter": 18, "visit_boolean_liter": 18, "visit_datetime_liter": 18, "visit_duration_liter": 18, "visit_date_liter": 18, "visit_non_negative_integ": 18, "visit_datatype_iri": 18, "visit_datatyp": 18, "visit_facet": 18, "visit_class_iri": 18, "visit_individual_iri": 18, "visit_object_property_iri": 18, "visit_data_property_iri": 18, "visit_iri": 18, "visit_full_iri": 18, "visit_abbreviated_iri": 18, "visit_simple_iri": 18, "visit_parenthes": 18, "generic_visit": 18, "visitor": 18, "re": 18, "visit": 18, "visited_children": 18, "m": 18, "sure": 18, "make": 18, "sens": 18, "across": 18, "even": 18, "most": 18, "leav": 18, "now": 18, "dl_grammar": 18, "dlsyntaxpars": 18, "descript": 18, "dlparser": 18, "manchesterpars": 18, "dl_to_owl_express": 18, "dl_express": 18, "manchester_to_owl_express": 18, "manchester_express": 18, "dlsyntaxobjectrender": 20, "_simple_short_form_provid": 20, "_sfp": 20, "manchesterowlsyntaxowlobjectrender": 20, "no_render_th": 20, "_no_render_th": 20, "dlrender": 20, "manchesterrender": 20, "owl_expression_to_dl": 20, "owl_expression_to_manchest": 20, "orderedowlobject": 22, "_hasindex": 22, "holder": 22, "python": [22, 24], "order": 22, "impl": 22, "recurs": 22, "compon": 22, "_chain": 22, "get_class_nnf": 22, "toplevelcnf": 22, "get_top_level_cnf": 22, "topleveldnf": 22, "disjunct": 22, "get_top_level_dnf": 22, "combine_nary_express": 22, "combin": 22, "nest": 22, "nari": 22, "b": 22, "iter_count": 22, "number": 22, "as_index": 22, "cast": 22, "lrucach": 22, "maxsiz": 22, "_k": 22, "share": 22, "lru": 22, "cach": 22, "adapt": 22, "functool": 22, "lru_cach": 22, "sentinel": 22, "uniqu": 22, "signal": 22, "miss": 22, "prev": 22, "link": 22, "field": 22, "next": 22, "kei": 22, "__setitem__": 22, "cache_info": 22, "report": 22, "statist": 22, "cache_clear": 22, "clear": 22, "subpackag": 24, "submodul": 24, "placehold": 25}, "objects": {"": [[2, 0, 0, "-", "owlapy"]], "owlapy": [[2, 1, 1, "", "__version__"], [0, 0, 0, "-", "_utils"], [1, 0, 0, "-", "has"], [3, 0, 0, "-", "iri"], [4, 0, 0, "-", "meta_classes"], [5, 0, 0, "-", "model"], [7, 0, 0, "-", "namespaces"], [9, 0, 0, "-", "owl2sparql"], [10, 0, 0, "-", "owl_annotation"], [11, 0, 0, "-", "owl_axiom"], [12, 0, 0, "-", "owl_class_expression"], [13, 0, 0, "-", "owl_individual"], [14, 0, 0, "-", "owl_literal"], [15, 0, 0, "-", "owl_property"], [16, 0, 0, "-", "owl_restriction"], [17, 0, 0, "-", "owlobject"], [18, 0, 0, "-", "parser"], [19, 0, 0, "-", "ranges"], [20, 0, 0, "-", "render"], [21, 0, 0, "-", "types"], [22, 0, 0, "-", "util"], [23, 0, 0, "-", "vocab"]], "owlapy._utils": [[0, 2, 1, "", "MOVE"]], "owlapy.has": [[1, 3, 1, "", "HasIndex"]], "owlapy.has.HasIndex": [[1, 4, 1, "", "__eq__"], [1, 5, 1, "", "type_index"]], "owlapy.iri": [[3, 3, 1, "", "IRI"]], "owlapy.iri.IRI": [[3, 4, 1, "", "__eq__"], [3, 4, 1, "", "__hash__"], [3, 4, 1, "", "__repr__"], [3, 5, 1, "", "__slots__"], [3, 4, 1, "", "as_iri"], [3, 4, 1, "", "as_str"], [3, 4, 1, "", "create"], [3, 4, 1, "", "get_namespace"], [3, 4, 1, "", "get_remainder"], [3, 4, 1, "", "get_short_form"], [3, 4, 1, "", "is_nothing"], [3, 4, 1, "", "is_reserved_vocabulary"], [3, 4, 1, "", "is_thing"], [3, 6, 1, "", "reminder"], [3, 6, 1, "", "str"], [3, 5, 1, "", "type_index"]], "owlapy.meta_classes": [[4, 3, 1, "", "HasCardinality"], [4, 3, 1, "", "HasFiller"], [4, 3, 1, "", "HasIRI"], [4, 3, 1, "", "HasOperands"]], "owlapy.meta_classes.HasCardinality": [[4, 5, 1, "", "__slots__"], [4, 4, 1, "", "get_cardinality"]], "owlapy.meta_classes.HasFiller": [[4, 5, 1, "", "__slots__"], [4, 4, 1, "", "get_filler"]], "owlapy.meta_classes.HasIRI": [[4, 5, 1, "", "__slots__"], [4, 4, 1, "", "get_iri"]], "owlapy.meta_classes.HasOperands": [[4, 5, 1, "", "__slots__"], [4, 4, 1, "", "operands"]], "owlapy.model": [[5, 3, 1, "", "AddImport"], [5, 1, 1, "", "BooleanOWLDatatype"], [5, 1, 1, "", "DateOWLDatatype"], [5, 1, 1, "", "DateTimeOWLDatatype"], [5, 1, 1, "", "DoubleOWLDatatype"], [5, 1, 1, "", "DurationOWLDatatype"], [5, 3, 1, "", "HasCardinality"], [5, 3, 1, "", "HasFiller"], [5, 3, 1, "", "HasIRI"], [5, 3, 1, "", "HasIndex"], [5, 3, 1, "", "HasOperands"], [5, 3, 1, "", "IRI"], [5, 1, 1, "", "IntegerOWLDatatype"], [5, 1, 1, "", "Literals"], [5, 2, 1, "", "MOVE"], [5, 1, 1, "", "NUMERIC_DATATYPES"], [5, 3, 1, "", "OWLAnnotationObject"], [5, 3, 1, "", "OWLAnnotationSubject"], [5, 3, 1, "", "OWLAnnotationValue"], [5, 3, 1, "", "OWLAnonymousClassExpression"], [5, 3, 1, "", "OWLAxiom"], [5, 3, 1, "", "OWLBooleanClassExpression"], [5, 1, 1, "", "OWLBottomDataProperty"], [5, 1, 1, "", "OWLBottomObjectProperty"], [5, 3, 1, "", "OWLCardinalityRestriction"], [5, 3, 1, "", "OWLClass"], [5, 3, 1, "", "OWLClassAxiom"], [5, 3, 1, "", "OWLClassExpression"], [5, 3, 1, "", "OWLDataAllValuesFrom"], [5, 3, 1, "", "OWLDataCardinalityRestriction"], [5, 3, 1, "", "OWLDataExactCardinality"], [5, 3, 1, "", "OWLDataHasValue"], [5, 3, 1, "", "OWLDataMaxCardinality"], [5, 3, 1, "", "OWLDataMinCardinality"], [5, 3, 1, "", "OWLDataOneOf"], [5, 3, 1, "", "OWLDataProperty"], [5, 3, 1, "", "OWLDataPropertyDomainAxiom"], [5, 3, 1, "", "OWLDataPropertyExpression"], [5, 3, 1, "", "OWLDataPropertyRangeAxiom"], [5, 3, 1, "", "OWLDataRange"], [5, 3, 1, "", "OWLDataRestriction"], [5, 3, 1, "", "OWLDataSomeValuesFrom"], [5, 3, 1, "", "OWLDatatype"], [5, 3, 1, "", "OWLEntity"], [5, 3, 1, "", "OWLEquivalentClassesAxiom"], [5, 3, 1, "", "OWLFacet"], [5, 3, 1, "", "OWLHasValueRestriction"], [5, 3, 1, "", "OWLImportsDeclaration"], [5, 3, 1, "", "OWLIndividual"], [5, 3, 1, "", "OWLLiteral"], [5, 3, 1, "", "OWLNamedIndividual"], [5, 3, 1, "", "OWLNaryBooleanClassExpression"], [5, 1, 1, "", "OWLNothing"], [5, 3, 1, "", "OWLObject"], [5, 3, 1, "", "OWLObjectAllValuesFrom"], [5, 3, 1, "", "OWLObjectCardinalityRestriction"], [5, 3, 1, "", "OWLObjectComplementOf"], [5, 3, 1, "", "OWLObjectExactCardinality"], [5, 3, 1, "", "OWLObjectHasSelf"], [5, 3, 1, "", "OWLObjectIntersectionOf"], [5, 3, 1, "", "OWLObjectMaxCardinality"], [5, 3, 1, "", "OWLObjectMinCardinality"], [5, 3, 1, "", "OWLObjectProperty"], [5, 3, 1, "", "OWLObjectPropertyDomainAxiom"], [5, 3, 1, "", "OWLObjectPropertyExpression"], [5, 3, 1, "", "OWLObjectPropertyRangeAxiom"], [5, 3, 1, "", "OWLObjectRestriction"], [5, 3, 1, "", "OWLObjectSomeValuesFrom"], [5, 3, 1, "", "OWLObjectUnionOf"], [5, 3, 1, "", "OWLOntology"], [5, 3, 1, "", "OWLOntologyChange"], [5, 3, 1, "", "OWLOntologyID"], [5, 3, 1, "", "OWLOntologyManager"], [5, 3, 1, "", "OWLProperty"], [5, 3, 1, "", "OWLPropertyExpression"], [5, 3, 1, "", "OWLPropertyRange"], [5, 3, 1, "", "OWLQuantifiedDataRestriction"], [5, 3, 1, "", "OWLQuantifiedObjectRestriction"], [5, 3, 1, "", "OWLQuantifiedRestriction"], [5, 3, 1, "", "OWLRDFVocabulary"], [5, 3, 1, "", "OWLReasoner"], [5, 3, 1, "", "OWLRestriction"], [5, 1, 1, "", "OWLThing"], [5, 1, 1, "", "OWLTopDataProperty"], [5, 1, 1, "", "OWLTopObjectProperty"], [5, 1, 1, "", "StringOWLDatatype"], [5, 1, 1, "", "TIME_DATATYPES"], [5, 1, 1, "", "TopOWLDatatype"], [5, 3, 1, "", "XSDVocabulary"], [6, 0, 0, "-", "providers"]], "owlapy.model.AddImport": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "get_import_declaration"]], "owlapy.model.HasCardinality": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "get_cardinality"]], "owlapy.model.HasFiller": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "get_filler"]], "owlapy.model.HasIRI": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "get_iri"]], "owlapy.model.HasIndex": [[5, 4, 1, "", "__eq__"], [5, 5, 1, "", "type_index"]], "owlapy.model.HasOperands": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "operands"]], "owlapy.model.IRI": [[5, 4, 1, "", "__eq__"], [5, 4, 1, "", "__hash__"], [5, 4, 1, "", "__repr__"], [5, 5, 1, "", "__slots__"], [5, 4, 1, "", "as_iri"], [5, 4, 1, "", "as_str"], [5, 4, 1, "", "create"], [5, 4, 1, "", "get_namespace"], [5, 4, 1, "", "get_remainder"], [5, 4, 1, "", "get_short_form"], [5, 4, 1, "", "is_nothing"], [5, 4, 1, "", "is_reserved_vocabulary"], [5, 4, 1, "", "is_thing"], [5, 6, 1, "", "reminder"], [5, 6, 1, "", "str"], [5, 5, 1, "", "type_index"]], "owlapy.model.OWLAnnotationObject": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "as_anonymous_individual"], [5, 4, 1, "", "as_iri"]], "owlapy.model.OWLAnnotationSubject": [[5, 5, 1, "", "__slots__"]], "owlapy.model.OWLAnnotationValue": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "as_literal"], [5, 4, 1, "", "is_literal"]], "owlapy.model.OWLAnonymousClassExpression": [[5, 4, 1, "", "get_nnf"], [5, 4, 1, "", "get_object_complement_of"], [5, 4, 1, "", "is_owl_nothing"], [5, 4, 1, "", "is_owl_thing"]], "owlapy.model.OWLAxiom": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "annotations"], [5, 4, 1, "", "is_annotated"], [5, 4, 1, "", "is_annotation_axiom"], [5, 4, 1, "", "is_logical_axiom"]], "owlapy.model.OWLBooleanClassExpression": [[5, 5, 1, "", "__slots__"]], "owlapy.model.OWLCardinalityRestriction": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "get_cardinality"], [5, 4, 1, "", "get_filler"]], "owlapy.model.OWLClass": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "get_iri"], [5, 4, 1, "", "get_nnf"], [5, 4, 1, "", "get_object_complement_of"], [5, 4, 1, "", "is_owl_nothing"], [5, 4, 1, "", "is_owl_thing"], [5, 6, 1, "", "reminder"], [5, 6, 1, "", "str"], [5, 5, 1, "", "type_index"]], "owlapy.model.OWLClassAxiom": [[5, 5, 1, "", "__slots__"]], "owlapy.model.OWLClassExpression": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "get_nnf"], [5, 4, 1, "", "get_object_complement_of"], [5, 4, 1, "", "is_owl_nothing"], [5, 4, 1, "", "is_owl_thing"]], "owlapy.model.OWLDataAllValuesFrom": [[5, 4, 1, "", "__eq__"], [5, 4, 1, "", "__hash__"], [5, 4, 1, "", "__repr__"], [5, 5, 1, "", "__slots__"], [5, 4, 1, "", "get_property"], [5, 5, 1, "", "type_index"]], "owlapy.model.OWLDataCardinalityRestriction": [[5, 4, 1, "", "__eq__"], [5, 4, 1, "", "__hash__"], [5, 4, 1, "", "__repr__"], [5, 5, 1, "", "__slots__"], [5, 4, 1, "", "get_property"]], "owlapy.model.OWLDataExactCardinality": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "as_intersection_of_min_max"], [5, 5, 1, "", "type_index"]], "owlapy.model.OWLDataHasValue": [[5, 4, 1, "", "__eq__"], [5, 4, 1, "", "__hash__"], [5, 4, 1, "", "__repr__"], [5, 5, 1, "", "__slots__"], [5, 4, 1, "", "as_some_values_from"], [5, 4, 1, "", "get_property"], [5, 5, 1, "", "type_index"]], "owlapy.model.OWLDataMaxCardinality": [[5, 5, 1, "", "__slots__"], [5, 5, 1, "", "type_index"]], "owlapy.model.OWLDataMinCardinality": [[5, 5, 1, "", "__slots__"], [5, 5, 1, "", "type_index"]], "owlapy.model.OWLDataOneOf": [[5, 4, 1, "", "__eq__"], [5, 4, 1, "", "__hash__"], [5, 4, 1, "", "__repr__"], [5, 4, 1, "", "operands"], [5, 5, 1, "", "type_index"], [5, 4, 1, "", "values"]], "owlapy.model.OWLDataProperty": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "get_iri"], [5, 4, 1, "", "is_owl_top_data_property"], [5, 5, 1, "", "type_index"]], "owlapy.model.OWLDataPropertyDomainAxiom": [[5, 5, 1, "", "__slots__"]], "owlapy.model.OWLDataPropertyExpression": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "is_data_property_expression"]], "owlapy.model.OWLDataPropertyRangeAxiom": [[5, 5, 1, "", "__slots__"]], "owlapy.model.OWLDataRestriction": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "is_data_restriction"]], "owlapy.model.OWLDataSomeValuesFrom": [[5, 4, 1, "", "__eq__"], [5, 4, 1, "", "__hash__"], [5, 4, 1, "", "__repr__"], [5, 5, 1, "", "__slots__"], [5, 4, 1, "", "get_property"], [5, 5, 1, "", "type_index"]], "owlapy.model.OWLDatatype": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "get_iri"], [5, 5, 1, "", "type_index"]], "owlapy.model.OWLEntity": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "is_anonymous"], [5, 4, 1, "", "to_string_id"]], "owlapy.model.OWLEquivalentClassesAxiom": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "contains_named_equivalent_class"], [5, 4, 1, "", "contains_owl_nothing"], [5, 4, 1, "", "contains_owl_thing"], [5, 4, 1, "", "named_classes"]], "owlapy.model.OWLFacet": [[5, 5, 1, "", "FRACTION_DIGITS"], [5, 5, 1, "", "LENGTH"], [5, 5, 1, "", "MAX_EXCLUSIVE"], [5, 5, 1, "", "MAX_INCLUSIVE"], [5, 5, 1, "", "MAX_LENGTH"], [5, 5, 1, "", "MIN_EXCLUSIVE"], [5, 5, 1, "", "MIN_INCLUSIVE"], [5, 5, 1, "", "MIN_LENGTH"], [5, 5, 1, "", "PATTERN"], [5, 5, 1, "", "TOTAL_DIGITS"], [5, 4, 1, "", "from_str"], [5, 6, 1, "", "operator"], [5, 6, 1, "", "symbolic_form"]], "owlapy.model.OWLHasValueRestriction": [[5, 4, 1, "", "__eq__"], [5, 4, 1, "", "__hash__"], [5, 5, 1, "", "__slots__"], [5, 4, 1, "", "get_filler"]], "owlapy.model.OWLImportsDeclaration": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "get_iri"]], "owlapy.model.OWLIndividual": [[5, 5, 1, "", "__slots__"]], "owlapy.model.OWLLiteral": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "as_literal"], [5, 4, 1, "", "get_datatype"], [5, 4, 1, "", "get_literal"], [5, 4, 1, "", "is_boolean"], [5, 4, 1, "", "is_date"], [5, 4, 1, "", "is_datetime"], [5, 4, 1, "", "is_double"], [5, 4, 1, "", "is_duration"], [5, 4, 1, "", "is_integer"], [5, 4, 1, "", "is_literal"], [5, 4, 1, "", "is_string"], [5, 4, 1, "", "parse_boolean"], [5, 4, 1, "", "parse_date"], [5, 4, 1, "", "parse_datetime"], [5, 4, 1, "", "parse_double"], [5, 4, 1, "", "parse_duration"], [5, 4, 1, "", "parse_integer"], [5, 4, 1, "", "parse_string"], [5, 4, 1, "", "to_python"], [5, 5, 1, "", "type_index"]], "owlapy.model.OWLNamedIndividual": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "get_iri"], [5, 6, 1, "", "iri"], [5, 6, 1, "", "str"], [5, 5, 1, "", "type_index"]], "owlapy.model.OWLNaryBooleanClassExpression": [[5, 4, 1, "", "__eq__"], [5, 4, 1, "", "__hash__"], [5, 4, 1, "", "__repr__"], [5, 5, 1, "", "__slots__"], [5, 4, 1, "", "operands"]], "owlapy.model.OWLObject": [[5, 4, 1, "", "__eq__"], [5, 4, 1, "", "__hash__"], [5, 4, 1, "", "__repr__"], [5, 5, 1, "", "__slots__"], [5, 4, 1, "", "is_anonymous"]], "owlapy.model.OWLObjectAllValuesFrom": [[5, 4, 1, "", "__eq__"], [5, 4, 1, "", "__hash__"], [5, 4, 1, "", "__repr__"], [5, 5, 1, "", "__slots__"], [5, 4, 1, "", "get_property"], [5, 5, 1, "", "type_index"]], "owlapy.model.OWLObjectCardinalityRestriction": [[5, 4, 1, "", "__eq__"], [5, 4, 1, "", "__hash__"], [5, 4, 1, "", "__repr__"], [5, 5, 1, "", "__slots__"], [5, 4, 1, "", "get_property"]], "owlapy.model.OWLObjectComplementOf": [[5, 4, 1, "", "__eq__"], [5, 4, 1, "", "__hash__"], [5, 4, 1, "", "__repr__"], [5, 5, 1, "", "__slots__"], [5, 4, 1, "", "get_operand"], [5, 4, 1, "", "operands"], [5, 5, 1, "", "type_index"]], "owlapy.model.OWLObjectExactCardinality": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "as_intersection_of_min_max"], [5, 5, 1, "", "type_index"]], "owlapy.model.OWLObjectHasSelf": [[5, 4, 1, "", "__eq__"], [5, 4, 1, "", "__hash__"], [5, 4, 1, "", "__repr__"], [5, 5, 1, "", "__slots__"], [5, 4, 1, "", "get_property"], [5, 5, 1, "", "type_index"]], "owlapy.model.OWLObjectIntersectionOf": [[5, 5, 1, "", "__slots__"], [5, 5, 1, "", "type_index"]], "owlapy.model.OWLObjectMaxCardinality": [[5, 5, 1, "", "__slots__"], [5, 5, 1, "", "type_index"]], "owlapy.model.OWLObjectMinCardinality": [[5, 5, 1, "", "__slots__"], [5, 5, 1, "", "type_index"]], "owlapy.model.OWLObjectProperty": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "get_inverse_property"], [5, 4, 1, "", "get_iri"], [5, 4, 1, "", "get_named_property"], [5, 6, 1, "", "iri"], [5, 4, 1, "", "is_owl_top_object_property"], [5, 6, 1, "", "str"], [5, 5, 1, "", "type_index"]], "owlapy.model.OWLObjectPropertyDomainAxiom": [[5, 5, 1, "", "__slots__"]], "owlapy.model.OWLObjectPropertyExpression": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "get_inverse_property"], [5, 4, 1, "", "get_named_property"], [5, 4, 1, "", "is_object_property_expression"]], "owlapy.model.OWLObjectPropertyRangeAxiom": [[5, 5, 1, "", "__slots__"]], "owlapy.model.OWLObjectRestriction": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "get_property"], [5, 4, 1, "", "is_object_restriction"]], "owlapy.model.OWLObjectSomeValuesFrom": [[5, 4, 1, "", "__eq__"], [5, 4, 1, "", "__hash__"], [5, 4, 1, "", "__repr__"], [5, 5, 1, "", "__slots__"], [5, 4, 1, "", "get_property"], [5, 5, 1, "", "type_index"]], "owlapy.model.OWLObjectUnionOf": [[5, 5, 1, "", "__slots__"], [5, 5, 1, "", "type_index"]], "owlapy.model.OWLOntology": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "classes_in_signature"], [5, 4, 1, "", "data_properties_in_signature"], [5, 4, 1, "", "data_property_domain_axioms"], [5, 4, 1, "", "data_property_range_axioms"], [5, 4, 1, "", "equivalent_classes_axioms"], [5, 4, 1, "", "general_class_axioms"], [5, 4, 1, "", "get_ontology_id"], [5, 4, 1, "", "get_owl_ontology_manager"], [5, 4, 1, "", "individuals_in_signature"], [5, 4, 1, "", "is_anonymous"], [5, 4, 1, "", "object_properties_in_signature"], [5, 4, 1, "", "object_property_domain_axioms"], [5, 4, 1, "", "object_property_range_axioms"], [5, 5, 1, "", "type_index"]], "owlapy.model.OWLOntologyChange": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "get_ontology"]], "owlapy.model.OWLOntologyID": [[5, 4, 1, "", "__eq__"], [5, 4, 1, "", "__repr__"], [5, 5, 1, "", "__slots__"], [5, 4, 1, "", "get_default_document_iri"], [5, 4, 1, "", "get_ontology_iri"], [5, 4, 1, "", "get_version_iri"], [5, 4, 1, "", "is_anonymous"]], "owlapy.model.OWLOntologyManager": [[5, 4, 1, "", "add_axiom"], [5, 4, 1, "", "apply_change"], [5, 4, 1, "", "create_ontology"], [5, 4, 1, "", "load_ontology"], [5, 4, 1, "", "remove_axiom"], [5, 4, 1, "", "save_ontology"]], "owlapy.model.OWLProperty": [[5, 5, 1, "", "__slots__"]], "owlapy.model.OWLPropertyExpression": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "is_data_property_expression"], [5, 4, 1, "", "is_object_property_expression"], [5, 4, 1, "", "is_owl_top_data_property"], [5, 4, 1, "", "is_owl_top_object_property"]], "owlapy.model.OWLQuantifiedDataRestriction": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "get_filler"]], "owlapy.model.OWLQuantifiedObjectRestriction": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "get_filler"]], "owlapy.model.OWLQuantifiedRestriction": [[5, 5, 1, "", "__slots__"]], "owlapy.model.OWLRDFVocabulary": [[5, 5, 1, "", "OWL_BOTTOM_DATA_PROPERTY"], [5, 5, 1, "", "OWL_BOTTOM_OBJECT_PROPERTY"], [5, 5, 1, "", "OWL_CLASS"], [5, 5, 1, "", "OWL_NAMED_INDIVIDUAL"], [5, 5, 1, "", "OWL_NOTHING"], [5, 5, 1, "", "OWL_THING"], [5, 5, 1, "", "OWL_TOP_DATA_PROPERTY"], [5, 5, 1, "", "OWL_TOP_OBJECT_PROPERTY"], [5, 5, 1, "", "RDFS_LITERAL"]], "owlapy.model.OWLReasoner": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "data_property_domains"], [5, 4, 1, "", "data_property_values"], [5, 4, 1, "", "different_individuals"], [5, 4, 1, "", "disjoint_classes"], [5, 4, 1, "", "disjoint_data_properties"], [5, 4, 1, "", "disjoint_object_properties"], [5, 4, 1, "", "equivalent_classes"], [5, 4, 1, "", "equivalent_data_properties"], [5, 4, 1, "", "equivalent_object_properties"], [5, 4, 1, "", "flush"], [5, 4, 1, "", "get_root_ontology"], [5, 4, 1, "", "instances"], [5, 4, 1, "", "is_isolated"], [5, 4, 1, "", "is_using_triplestore"], [5, 4, 1, "", "object_property_domains"], [5, 4, 1, "", "object_property_ranges"], [5, 4, 1, "", "object_property_values"], [5, 4, 1, "", "same_individuals"], [5, 4, 1, "", "sub_classes"], [5, 4, 1, "", "sub_data_properties"], [5, 4, 1, "", "sub_object_properties"], [5, 4, 1, "", "super_classes"], [5, 4, 1, "", "super_data_properties"], [5, 4, 1, "", "super_object_properties"], [5, 4, 1, "", "types"]], "owlapy.model.OWLRestriction": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "get_property"], [5, 4, 1, "", "is_data_restriction"], [5, 4, 1, "", "is_object_restriction"]], "owlapy.model.XSDVocabulary": [[5, 5, 1, "", "BOOLEAN"], [5, 5, 1, "", "DATE"], [5, 5, 1, "", "DATE_TIME"], [5, 5, 1, "", "DATE_TIME_STAMP"], [5, 5, 1, "", "DECIMAL"], [5, 5, 1, "", "DOUBLE"], [5, 5, 1, "", "DURATION"], [5, 5, 1, "", "FLOAT"], [5, 5, 1, "", "INTEGER"], [5, 5, 1, "", "LONG"], [5, 5, 1, "", "STRING"]], "owlapy.model.providers": [[6, 2, 1, "", "OWLDatatypeMaxExclusiveRestriction"], [6, 2, 1, "", "OWLDatatypeMaxInclusiveRestriction"], [6, 2, 1, "", "OWLDatatypeMinExclusiveRestriction"], [6, 2, 1, "", "OWLDatatypeMinInclusiveRestriction"], [6, 2, 1, "", "OWLDatatypeMinMaxExclusiveRestriction"], [6, 2, 1, "", "OWLDatatypeMinMaxInclusiveRestriction"], [6, 1, 1, "", "Restriction_Literals"]], "owlapy.namespaces": [[7, 3, 1, "", "Namespaces"], [7, 1, 1, "", "OWL"], [7, 1, 1, "", "RDF"], [7, 1, 1, "", "RDFS"], [7, 1, 1, "", "XSD"]], "owlapy.namespaces.Namespaces": [[7, 4, 1, "", "__eq__"], [7, 4, 1, "", "__hash__"], [7, 4, 1, "", "__repr__"], [7, 5, 1, "", "__slots__"], [7, 6, 1, "", "ns"], [7, 6, 1, "", "prefix"]], "owlapy.owl2sparql": [[8, 0, 0, "-", "converter"]], "owlapy.owl2sparql.converter": [[8, 3, 1, "", "Owl2SparqlConverter"], [8, 3, 1, "", "VariablesMapping"], [8, 1, 1, "", "converter"], [8, 2, 1, "", "owl_expression_to_sparql"], [8, 2, 1, "", "peek"]], "owlapy.owl2sparql.converter.Owl2SparqlConverter": [[8, 5, 1, "", "__slots__"], [8, 4, 1, "", "append"], [8, 4, 1, "", "append_triple"], [8, 4, 1, "", "as_query"], [8, 5, 1, "", "ce"], [8, 5, 1, "", "cnt"], [8, 4, 1, "", "convert"], [8, 6, 1, "", "current_variable"], [8, 5, 1, "", "grouping_vars"], [8, 5, 1, "", "having_conditions"], [8, 5, 1, "", "mapping"], [8, 6, 1, "", "modal_depth"], [8, 4, 1, "", "new_count_var"], [8, 5, 1, "", "parent"], [8, 5, 1, "", "parent_var"], [8, 4, 1, "", "process"], [8, 5, 1, "", "properties"], [8, 4, 1, "", "render"], [8, 5, 1, "", "sparql"], [8, 4, 1, "", "stack_parent"], [8, 4, 1, "", "stack_variable"], [8, 4, 1, "", "triple"], [8, 5, 1, "", "variable_entities"], [8, 5, 1, "", "variables"]], "owlapy.owl2sparql.converter.VariablesMapping": [[8, 4, 1, "", "__contains__"], [8, 4, 1, "", "__getitem__"], [8, 5, 1, "", "__slots__"], [8, 4, 1, "", "get_variable"], [8, 4, 1, "", "new_individual_variable"], [8, 4, 1, "", "new_property_variable"]], "owlapy.owl_annotation": [[10, 3, 1, "", "OWLAnnotationObject"], [10, 3, 1, "", "OWLAnnotationSubject"], [10, 3, 1, "", "OWLAnnotationValue"]], "owlapy.owl_annotation.OWLAnnotationObject": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "as_anonymous_individual"], [10, 4, 1, "", "as_iri"]], "owlapy.owl_annotation.OWLAnnotationSubject": [[10, 5, 1, "", "__slots__"]], "owlapy.owl_annotation.OWLAnnotationValue": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "as_literal"], [10, 4, 1, "", "is_literal"]], "owlapy.owl_axiom": [[11, 3, 1, "", "OWLAnnotation"], [11, 3, 1, "", "OWLAnnotationAssertionAxiom"], [11, 3, 1, "", "OWLAnnotationAxiom"], [11, 3, 1, "", "OWLAnnotationProperty"], [11, 3, 1, "", "OWLAnnotationPropertyDomainAxiom"], [11, 3, 1, "", "OWLAnnotationPropertyRangeAxiom"], [11, 3, 1, "", "OWLAsymmetricObjectPropertyAxiom"], [11, 3, 1, "", "OWLAxiom"], [11, 3, 1, "", "OWLClassAssertionAxiom"], [11, 3, 1, "", "OWLClassAxiom"], [11, 3, 1, "", "OWLDataPropertyAssertionAxiom"], [11, 3, 1, "", "OWLDataPropertyAxiom"], [11, 3, 1, "", "OWLDataPropertyCharacteristicAxiom"], [11, 3, 1, "", "OWLDataPropertyDomainAxiom"], [11, 3, 1, "", "OWLDataPropertyRangeAxiom"], [11, 3, 1, "", "OWLDatatypeDefinitionAxiom"], [11, 3, 1, "", "OWLDeclarationAxiom"], [11, 3, 1, "", "OWLDifferentIndividualsAxiom"], [11, 3, 1, "", "OWLDisjointClassesAxiom"], [11, 3, 1, "", "OWLDisjointDataPropertiesAxiom"], [11, 3, 1, "", "OWLDisjointObjectPropertiesAxiom"], [11, 3, 1, "", "OWLDisjointUnionAxiom"], [11, 3, 1, "", "OWLEquivalentClassesAxiom"], [11, 3, 1, "", "OWLEquivalentDataPropertiesAxiom"], [11, 3, 1, "", "OWLEquivalentObjectPropertiesAxiom"], [11, 3, 1, "", "OWLFunctionalDataPropertyAxiom"], [11, 3, 1, "", "OWLFunctionalObjectPropertyAxiom"], [11, 3, 1, "", "OWLHasKeyAxiom"], [11, 3, 1, "", "OWLIndividualAxiom"], [11, 3, 1, "", "OWLInverseFunctionalObjectPropertyAxiom"], [11, 3, 1, "", "OWLInverseObjectPropertiesAxiom"], [11, 3, 1, "", "OWLIrreflexiveObjectPropertyAxiom"], [11, 3, 1, "", "OWLLogicalAxiom"], [11, 3, 1, "", "OWLNaryAxiom"], [11, 3, 1, "", "OWLNaryClassAxiom"], [11, 3, 1, "", "OWLNaryIndividualAxiom"], [11, 3, 1, "", "OWLNaryPropertyAxiom"], [11, 3, 1, "", "OWLNegativeDataPropertyAssertionAxiom"], [11, 3, 1, "", "OWLNegativeObjectPropertyAssertionAxiom"], [11, 3, 1, "", "OWLObjectPropertyAssertionAxiom"], [11, 3, 1, "", "OWLObjectPropertyAxiom"], [11, 3, 1, "", "OWLObjectPropertyCharacteristicAxiom"], [11, 3, 1, "", "OWLObjectPropertyDomainAxiom"], [11, 3, 1, "", "OWLObjectPropertyRangeAxiom"], [11, 3, 1, "", "OWLPropertyAssertionAxiom"], [11, 3, 1, "", "OWLPropertyAxiom"], [11, 3, 1, "", "OWLPropertyDomainAxiom"], [11, 3, 1, "", "OWLPropertyRangeAxiom"], [11, 3, 1, "", "OWLReflexiveObjectPropertyAxiom"], [11, 3, 1, "", "OWLSameIndividualAxiom"], [11, 3, 1, "", "OWLSubAnnotationPropertyOfAxiom"], [11, 3, 1, "", "OWLSubClassOfAxiom"], [11, 3, 1, "", "OWLSubDataPropertyOfAxiom"], [11, 3, 1, "", "OWLSubObjectPropertyOfAxiom"], [11, 3, 1, "", "OWLSubPropertyAxiom"], [11, 3, 1, "", "OWLSymmetricObjectPropertyAxiom"], [11, 3, 1, "", "OWLTransitiveObjectPropertyAxiom"], [11, 3, 1, "", "OWLUnaryPropertyAxiom"]], "owlapy.owl_axiom.OWLAnnotation": [[11, 4, 1, "", "__eq__"], [11, 4, 1, "", "__hash__"], [11, 4, 1, "", "__repr__"], [11, 5, 1, "", "__slots__"], [11, 4, 1, "", "get_property"], [11, 4, 1, "", "get_value"]], "owlapy.owl_axiom.OWLAnnotationAssertionAxiom": [[11, 4, 1, "", "__eq__"], [11, 4, 1, "", "__hash__"], [11, 4, 1, "", "__repr__"], [11, 5, 1, "", "__slots__"], [11, 4, 1, "", "get_property"], [11, 4, 1, "", "get_subject"], [11, 4, 1, "", "get_value"]], "owlapy.owl_axiom.OWLAnnotationAxiom": [[11, 5, 1, "", "__slots__"], [11, 4, 1, "", "is_annotation_axiom"]], "owlapy.owl_axiom.OWLAnnotationProperty": [[11, 5, 1, "", "__slots__"], [11, 4, 1, "", "get_iri"]], "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom": [[11, 4, 1, "", "__eq__"], [11, 4, 1, "", "__hash__"], [11, 4, 1, "", "__repr__"], [11, 5, 1, "", "__slots__"], [11, 4, 1, "", "get_domain"], [11, 4, 1, "", "get_property"]], "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom": [[11, 4, 1, "", "__eq__"], [11, 4, 1, "", "__hash__"], [11, 4, 1, "", "__repr__"], [11, 5, 1, "", "__slots__"], [11, 4, 1, "", "get_property"], [11, 4, 1, "", "get_range"]], "owlapy.owl_axiom.OWLAsymmetricObjectPropertyAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLAxiom": [[11, 5, 1, "", "__slots__"], [11, 4, 1, "", "annotations"], [11, 4, 1, "", "is_annotated"], [11, 4, 1, "", "is_annotation_axiom"], [11, 4, 1, "", "is_logical_axiom"]], "owlapy.owl_axiom.OWLClassAssertionAxiom": [[11, 4, 1, "", "__eq__"], [11, 4, 1, "", "__hash__"], [11, 4, 1, "", "__repr__"], [11, 5, 1, "", "__slots__"], [11, 4, 1, "", "get_class_expression"], [11, 4, 1, "", "get_individual"]], "owlapy.owl_axiom.OWLClassAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyAssertionAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom": [[11, 4, 1, "", "__eq__"], [11, 4, 1, "", "__hash__"], [11, 4, 1, "", "__repr__"], [11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyDomainAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyRangeAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom": [[11, 4, 1, "", "__eq__"], [11, 4, 1, "", "__hash__"], [11, 4, 1, "", "__repr__"], [11, 5, 1, "", "__slots__"], [11, 4, 1, "", "get_datarange"], [11, 4, 1, "", "get_datatype"]], "owlapy.owl_axiom.OWLDeclarationAxiom": [[11, 4, 1, "", "__eq__"], [11, 4, 1, "", "__hash__"], [11, 4, 1, "", "__repr__"], [11, 5, 1, "", "__slots__"], [11, 4, 1, "", "get_entity"]], "owlapy.owl_axiom.OWLDifferentIndividualsAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDisjointClassesAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDisjointDataPropertiesAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDisjointObjectPropertiesAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDisjointUnionAxiom": [[11, 4, 1, "", "__eq__"], [11, 4, 1, "", "__hash__"], [11, 4, 1, "", "__repr__"], [11, 5, 1, "", "__slots__"], [11, 4, 1, "", "get_class_expressions"], [11, 4, 1, "", "get_owl_class"], [11, 4, 1, "", "get_owl_disjoint_classes_axiom"], [11, 4, 1, "", "get_owl_equivalent_classes_axiom"]], "owlapy.owl_axiom.OWLEquivalentClassesAxiom": [[11, 5, 1, "", "__slots__"], [11, 4, 1, "", "contains_named_equivalent_class"], [11, 4, 1, "", "contains_owl_nothing"], [11, 4, 1, "", "contains_owl_thing"], [11, 4, 1, "", "named_classes"]], "owlapy.owl_axiom.OWLEquivalentDataPropertiesAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLEquivalentObjectPropertiesAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLFunctionalDataPropertyAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLFunctionalObjectPropertyAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLHasKeyAxiom": [[11, 4, 1, "", "__eq__"], [11, 4, 1, "", "__hash__"], [11, 4, 1, "", "__repr__"], [11, 5, 1, "", "__slots__"], [11, 4, 1, "", "get_class_expression"], [11, 4, 1, "", "get_property_expressions"], [11, 4, 1, "", "operands"]], "owlapy.owl_axiom.OWLIndividualAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLInverseFunctionalObjectPropertyAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom": [[11, 4, 1, "", "__repr__"], [11, 5, 1, "", "__slots__"], [11, 4, 1, "", "get_first_property"], [11, 4, 1, "", "get_second_property"]], "owlapy.owl_axiom.OWLIrreflexiveObjectPropertyAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLLogicalAxiom": [[11, 5, 1, "", "__slots__"], [11, 4, 1, "", "is_logical_axiom"]], "owlapy.owl_axiom.OWLNaryAxiom": [[11, 5, 1, "", "__slots__"], [11, 4, 1, "", "as_pairwise_axioms"]], "owlapy.owl_axiom.OWLNaryClassAxiom": [[11, 4, 1, "", "__eq__"], [11, 4, 1, "", "__hash__"], [11, 4, 1, "", "__repr__"], [11, 5, 1, "", "__slots__"], [11, 4, 1, "", "as_pairwise_axioms"], [11, 4, 1, "", "class_expressions"]], "owlapy.owl_axiom.OWLNaryIndividualAxiom": [[11, 4, 1, "", "__eq__"], [11, 4, 1, "", "__hash__"], [11, 4, 1, "", "__repr__"], [11, 5, 1, "", "__slots__"], [11, 4, 1, "", "as_pairwise_axioms"], [11, 4, 1, "", "individuals"]], "owlapy.owl_axiom.OWLNaryPropertyAxiom": [[11, 4, 1, "", "__eq__"], [11, 4, 1, "", "__hash__"], [11, 4, 1, "", "__repr__"], [11, 5, 1, "", "__slots__"], [11, 4, 1, "", "as_pairwise_axioms"], [11, 4, 1, "", "properties"]], "owlapy.owl_axiom.OWLNegativeDataPropertyAssertionAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLNegativeObjectPropertyAssertionAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyAssertionAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom": [[11, 4, 1, "", "__eq__"], [11, 4, 1, "", "__hash__"], [11, 4, 1, "", "__repr__"], [11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyDomainAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyRangeAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLPropertyAssertionAxiom": [[11, 4, 1, "", "__eq__"], [11, 4, 1, "", "__hash__"], [11, 4, 1, "", "__repr__"], [11, 5, 1, "", "__slots__"], [11, 4, 1, "", "get_object"], [11, 4, 1, "", "get_property"], [11, 4, 1, "", "get_subject"]], "owlapy.owl_axiom.OWLPropertyAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLPropertyDomainAxiom": [[11, 4, 1, "", "__eq__"], [11, 4, 1, "", "__hash__"], [11, 4, 1, "", "__repr__"], [11, 5, 1, "", "__slots__"], [11, 4, 1, "", "get_domain"]], "owlapy.owl_axiom.OWLPropertyRangeAxiom": [[11, 4, 1, "", "__eq__"], [11, 4, 1, "", "__hash__"], [11, 4, 1, "", "__repr__"], [11, 5, 1, "", "__slots__"], [11, 4, 1, "", "get_range"]], "owlapy.owl_axiom.OWLReflexiveObjectPropertyAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLSameIndividualAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom": [[11, 4, 1, "", "__eq__"], [11, 4, 1, "", "__hash__"], [11, 4, 1, "", "__repr__"], [11, 5, 1, "", "__slots__"], [11, 4, 1, "", "get_sub_property"], [11, 4, 1, "", "get_super_property"]], "owlapy.owl_axiom.OWLSubClassOfAxiom": [[11, 4, 1, "", "__eq__"], [11, 4, 1, "", "__hash__"], [11, 4, 1, "", "__repr__"], [11, 5, 1, "", "__slots__"], [11, 4, 1, "", "get_sub_class"], [11, 4, 1, "", "get_super_class"]], "owlapy.owl_axiom.OWLSubDataPropertyOfAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLSubObjectPropertyOfAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLSubPropertyAxiom": [[11, 4, 1, "", "__eq__"], [11, 4, 1, "", "__hash__"], [11, 4, 1, "", "__repr__"], [11, 5, 1, "", "__slots__"], [11, 4, 1, "", "get_sub_property"], [11, 4, 1, "", "get_super_property"]], "owlapy.owl_axiom.OWLSymmetricObjectPropertyAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLTransitiveObjectPropertyAxiom": [[11, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLUnaryPropertyAxiom": [[11, 5, 1, "", "__slots__"], [11, 4, 1, "", "get_property"]], "owlapy.owl_class_expression": [[12, 3, 1, "", "OWLAnonymousClassExpression"], [12, 3, 1, "", "OWLBooleanClassExpression"], [12, 3, 1, "", "OWLClass"], [12, 3, 1, "", "OWLClassExpression"], [12, 3, 1, "", "OWLDataComplementOf"], [12, 3, 1, "", "OWLDataIntersectionOf"], [12, 3, 1, "", "OWLDataUnionOf"], [12, 3, 1, "", "OWLNaryBooleanClassExpression"], [12, 3, 1, "", "OWLNaryDataRange"], [12, 1, 1, "", "OWLNothing"], [12, 3, 1, "", "OWLObjectComplementOf"], [12, 3, 1, "", "OWLObjectIntersectionOf"], [12, 3, 1, "", "OWLObjectUnionOf"], [12, 1, 1, "", "OWLThing"]], "owlapy.owl_class_expression.OWLAnonymousClassExpression": [[12, 4, 1, "", "get_nnf"], [12, 4, 1, "", "get_object_complement_of"], [12, 4, 1, "", "is_owl_nothing"], [12, 4, 1, "", "is_owl_thing"]], "owlapy.owl_class_expression.OWLBooleanClassExpression": [[12, 5, 1, "", "__slots__"]], "owlapy.owl_class_expression.OWLClass": [[12, 5, 1, "", "__slots__"], [12, 4, 1, "", "get_iri"], [12, 4, 1, "", "get_nnf"], [12, 4, 1, "", "get_object_complement_of"], [12, 4, 1, "", "is_owl_nothing"], [12, 4, 1, "", "is_owl_thing"], [12, 6, 1, "", "reminder"], [12, 6, 1, "", "str"], [12, 5, 1, "", "type_index"]], "owlapy.owl_class_expression.OWLClassExpression": [[12, 5, 1, "", "__slots__"], [12, 4, 1, "", "get_nnf"], [12, 4, 1, "", "get_object_complement_of"], [12, 4, 1, "", "is_owl_nothing"], [12, 4, 1, "", "is_owl_thing"]], "owlapy.owl_class_expression.OWLDataComplementOf": [[12, 4, 1, "", "__eq__"], [12, 4, 1, "", "__hash__"], [12, 4, 1, "", "__repr__"], [12, 4, 1, "", "get_data_range"], [12, 5, 1, "", "type_index"]], "owlapy.owl_class_expression.OWLDataIntersectionOf": [[12, 5, 1, "", "__slots__"], [12, 5, 1, "", "type_index"]], "owlapy.owl_class_expression.OWLDataUnionOf": [[12, 5, 1, "", "__slots__"], [12, 5, 1, "", "type_index"]], "owlapy.owl_class_expression.OWLNaryBooleanClassExpression": [[12, 4, 1, "", "__eq__"], [12, 4, 1, "", "__hash__"], [12, 4, 1, "", "__repr__"], [12, 5, 1, "", "__slots__"], [12, 4, 1, "", "operands"]], "owlapy.owl_class_expression.OWLNaryDataRange": [[12, 4, 1, "", "__eq__"], [12, 4, 1, "", "__hash__"], [12, 4, 1, "", "__repr__"], [12, 5, 1, "", "__slots__"], [12, 4, 1, "", "operands"]], "owlapy.owl_class_expression.OWLObjectComplementOf": [[12, 4, 1, "", "__eq__"], [12, 4, 1, "", "__hash__"], [12, 4, 1, "", "__repr__"], [12, 5, 1, "", "__slots__"], [12, 4, 1, "", "get_operand"], [12, 4, 1, "", "operands"], [12, 5, 1, "", "type_index"]], "owlapy.owl_class_expression.OWLObjectIntersectionOf": [[12, 5, 1, "", "__slots__"], [12, 5, 1, "", "type_index"]], "owlapy.owl_class_expression.OWLObjectUnionOf": [[12, 5, 1, "", "__slots__"], [12, 5, 1, "", "type_index"]], "owlapy.owl_individual": [[13, 3, 1, "", "OWLIndividual"], [13, 3, 1, "", "OWLNamedIndividual"]], "owlapy.owl_individual.OWLIndividual": [[13, 5, 1, "", "__slots__"]], "owlapy.owl_individual.OWLNamedIndividual": [[13, 5, 1, "", "__slots__"], [13, 4, 1, "", "get_iri"], [13, 6, 1, "", "iri"], [13, 6, 1, "", "str"], [13, 5, 1, "", "type_index"]], "owlapy.owl_literal": [[14, 1, 1, "", "BooleanOWLDatatype"], [14, 1, 1, "", "DateOWLDatatype"], [14, 1, 1, "", "DateTimeOWLDatatype"], [14, 1, 1, "", "DoubleOWLDatatype"], [14, 1, 1, "", "DurationOWLDatatype"], [14, 1, 1, "", "IntegerOWLDatatype"], [14, 1, 1, "", "Literals"], [14, 1, 1, "", "NUMERIC_DATATYPES"], [14, 1, 1, "", "OWLBottomDataProperty"], [14, 1, 1, "", "OWLBottomObjectProperty"], [14, 3, 1, "", "OWLLiteral"], [14, 1, 1, "", "OWLTopDataProperty"], [14, 1, 1, "", "OWLTopObjectProperty"], [14, 1, 1, "", "StringOWLDatatype"], [14, 1, 1, "", "TIME_DATATYPES"], [14, 1, 1, "", "TopOWLDatatype"]], "owlapy.owl_literal.OWLLiteral": [[14, 5, 1, "", "__slots__"], [14, 4, 1, "", "as_literal"], [14, 4, 1, "", "get_datatype"], [14, 4, 1, "", "get_literal"], [14, 4, 1, "", "is_boolean"], [14, 4, 1, "", "is_date"], [14, 4, 1, "", "is_datetime"], [14, 4, 1, "", "is_double"], [14, 4, 1, "", "is_duration"], [14, 4, 1, "", "is_integer"], [14, 4, 1, "", "is_literal"], [14, 4, 1, "", "is_string"], [14, 4, 1, "", "parse_boolean"], [14, 4, 1, "", "parse_date"], [14, 4, 1, "", "parse_datetime"], [14, 4, 1, "", "parse_double"], [14, 4, 1, "", "parse_duration"], [14, 4, 1, "", "parse_integer"], [14, 4, 1, "", "parse_string"], [14, 4, 1, "", "to_python"], [14, 5, 1, "", "type_index"]], "owlapy.owl_property": [[15, 3, 1, "", "OWLDataProperty"], [15, 3, 1, "", "OWLDataPropertyExpression"], [15, 3, 1, "", "OWLObjectInverseOf"], [15, 3, 1, "", "OWLObjectProperty"], [15, 3, 1, "", "OWLObjectPropertyExpression"], [15, 3, 1, "", "OWLProperty"], [15, 3, 1, "", "OWLPropertyExpression"]], "owlapy.owl_property.OWLDataProperty": [[15, 5, 1, "", "__slots__"], [15, 4, 1, "", "get_iri"], [15, 4, 1, "", "is_owl_top_data_property"], [15, 5, 1, "", "type_index"]], "owlapy.owl_property.OWLDataPropertyExpression": [[15, 5, 1, "", "__slots__"], [15, 4, 1, "", "is_data_property_expression"]], "owlapy.owl_property.OWLObjectInverseOf": [[15, 4, 1, "", "__eq__"], [15, 4, 1, "", "__hash__"], [15, 4, 1, "", "__repr__"], [15, 5, 1, "", "__slots__"], [15, 4, 1, "", "get_inverse"], [15, 4, 1, "", "get_inverse_property"], [15, 4, 1, "", "get_named_property"], [15, 5, 1, "", "type_index"]], "owlapy.owl_property.OWLObjectProperty": [[15, 5, 1, "", "__slots__"], [15, 4, 1, "", "get_inverse_property"], [15, 4, 1, "", "get_iri"], [15, 4, 1, "", "get_named_property"], [15, 6, 1, "", "iri"], [15, 4, 1, "", "is_owl_top_object_property"], [15, 6, 1, "", "str"], [15, 5, 1, "", "type_index"]], "owlapy.owl_property.OWLObjectPropertyExpression": [[15, 5, 1, "", "__slots__"], [15, 4, 1, "", "get_inverse_property"], [15, 4, 1, "", "get_named_property"], [15, 4, 1, "", "is_object_property_expression"]], "owlapy.owl_property.OWLProperty": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_property.OWLPropertyExpression": [[15, 5, 1, "", "__slots__"], [15, 4, 1, "", "is_data_property_expression"], [15, 4, 1, "", "is_object_property_expression"], [15, 4, 1, "", "is_owl_top_data_property"], [15, 4, 1, "", "is_owl_top_object_property"]], "owlapy.owl_restriction": [[16, 1, 1, "", "Literals"], [16, 3, 1, "", "OWLCardinalityRestriction"], [16, 3, 1, "", "OWLDataAllValuesFrom"], [16, 3, 1, "", "OWLDataCardinalityRestriction"], [16, 3, 1, "", "OWLDataExactCardinality"], [16, 3, 1, "", "OWLDataHasValue"], [16, 3, 1, "", "OWLDataMaxCardinality"], [16, 3, 1, "", "OWLDataMinCardinality"], [16, 3, 1, "", "OWLDataOneOf"], [16, 3, 1, "", "OWLDataRestriction"], [16, 3, 1, "", "OWLDataSomeValuesFrom"], [16, 3, 1, "", "OWLDatatypeRestriction"], [16, 3, 1, "", "OWLFacetRestriction"], [16, 3, 1, "", "OWLHasValueRestriction"], [16, 3, 1, "", "OWLObjectAllValuesFrom"], [16, 3, 1, "", "OWLObjectCardinalityRestriction"], [16, 3, 1, "", "OWLObjectExactCardinality"], [16, 3, 1, "", "OWLObjectHasSelf"], [16, 3, 1, "", "OWLObjectHasValue"], [16, 3, 1, "", "OWLObjectMaxCardinality"], [16, 3, 1, "", "OWLObjectMinCardinality"], [16, 3, 1, "", "OWLObjectOneOf"], [16, 3, 1, "", "OWLObjectRestriction"], [16, 3, 1, "", "OWLObjectSomeValuesFrom"], [16, 3, 1, "", "OWLQuantifiedDataRestriction"], [16, 3, 1, "", "OWLQuantifiedObjectRestriction"], [16, 3, 1, "", "OWLQuantifiedRestriction"], [16, 3, 1, "", "OWLRestriction"]], "owlapy.owl_restriction.OWLCardinalityRestriction": [[16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_cardinality"], [16, 4, 1, "", "get_filler"]], "owlapy.owl_restriction.OWLDataAllValuesFrom": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_property"], [16, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLDataCardinalityRestriction": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_property"]], "owlapy.owl_restriction.OWLDataExactCardinality": [[16, 5, 1, "", "__slots__"], [16, 4, 1, "", "as_intersection_of_min_max"], [16, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLDataHasValue": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "as_some_values_from"], [16, 4, 1, "", "get_property"], [16, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLDataMaxCardinality": [[16, 5, 1, "", "__slots__"], [16, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLDataMinCardinality": [[16, 5, 1, "", "__slots__"], [16, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLDataOneOf": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 4, 1, "", "operands"], [16, 5, 1, "", "type_index"], [16, 4, 1, "", "values"]], "owlapy.owl_restriction.OWLDataRestriction": [[16, 5, 1, "", "__slots__"], [16, 4, 1, "", "is_data_restriction"]], "owlapy.owl_restriction.OWLDataSomeValuesFrom": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_property"], [16, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLDatatypeRestriction": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_datatype"], [16, 4, 1, "", "get_facet_restrictions"], [16, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLFacetRestriction": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_facet"], [16, 4, 1, "", "get_facet_value"], [16, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLHasValueRestriction": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_filler"]], "owlapy.owl_restriction.OWLObjectAllValuesFrom": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_property"], [16, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLObjectCardinalityRestriction": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_property"]], "owlapy.owl_restriction.OWLObjectExactCardinality": [[16, 5, 1, "", "__slots__"], [16, 4, 1, "", "as_intersection_of_min_max"], [16, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLObjectHasSelf": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_property"], [16, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLObjectHasValue": [[16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "as_some_values_from"], [16, 4, 1, "", "get_property"], [16, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLObjectMaxCardinality": [[16, 5, 1, "", "__slots__"], [16, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLObjectMinCardinality": [[16, 5, 1, "", "__slots__"], [16, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLObjectOneOf": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "as_object_union_of"], [16, 4, 1, "", "individuals"], [16, 4, 1, "", "operands"], [16, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLObjectRestriction": [[16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_property"], [16, 4, 1, "", "is_object_restriction"]], "owlapy.owl_restriction.OWLObjectSomeValuesFrom": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_property"], [16, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLQuantifiedDataRestriction": [[16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_filler"]], "owlapy.owl_restriction.OWLQuantifiedObjectRestriction": [[16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_filler"]], "owlapy.owl_restriction.OWLQuantifiedRestriction": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_restriction.OWLRestriction": [[16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_property"], [16, 4, 1, "", "is_data_restriction"], [16, 4, 1, "", "is_object_restriction"]], "owlapy.owlobject": [[17, 3, 1, "", "OWLEntity"], [17, 3, 1, "", "OWLNamedObject"], [17, 3, 1, "", "OWLObject"], [17, 3, 1, "", "OWLObjectParser"], [17, 3, 1, "", "OWLObjectRenderer"]], "owlapy.owlobject.OWLEntity": [[17, 5, 1, "", "__slots__"], [17, 4, 1, "", "is_anonymous"], [17, 4, 1, "", "to_string_id"]], "owlapy.owlobject.OWLNamedObject": [[17, 4, 1, "", "__eq__"], [17, 4, 1, "", "__hash__"], [17, 4, 1, "", "__lt__"], [17, 4, 1, "", "__repr__"], [17, 5, 1, "", "__slots__"]], "owlapy.owlobject.OWLObject": [[17, 4, 1, "", "__eq__"], [17, 4, 1, "", "__hash__"], [17, 4, 1, "", "__repr__"], [17, 5, 1, "", "__slots__"], [17, 4, 1, "", "is_anonymous"]], "owlapy.owlobject.OWLObjectParser": [[17, 4, 1, "", "parse_expression"]], "owlapy.owlobject.OWLObjectRenderer": [[17, 4, 1, "", "render"], [17, 4, 1, "", "set_short_form_provider"]], "owlapy.parser": [[18, 3, 1, "", "DLSyntaxParser"], [18, 1, 1, "", "DL_GRAMMAR"], [18, 1, 1, "", "DLparser"], [18, 1, 1, "", "MANCHESTER_GRAMMAR"], [18, 3, 1, "", "ManchesterOWLSyntaxParser"], [18, 1, 1, "", "ManchesterParser"], [18, 2, 1, "", "dl_to_owl_expression"], [18, 2, 1, "", "manchester_to_owl_expression"]], "owlapy.parser.DLSyntaxParser": [[18, 4, 1, "", "generic_visit"], [18, 5, 1, "", "ns"], [18, 4, 1, "", "parse_expression"], [18, 5, 1, "", "slots"], [18, 4, 1, "", "visit_abbreviated_iri"], [18, 4, 1, "", "visit_boolean_literal"], [18, 4, 1, "", "visit_cardinality_res"], [18, 4, 1, "", "visit_class_expression"], [18, 4, 1, "", "visit_class_iri"], [18, 4, 1, "", "visit_data_cardinality_res"], [18, 4, 1, "", "visit_data_intersection"], [18, 4, 1, "", "visit_data_parentheses"], [18, 4, 1, "", "visit_data_primary"], [18, 4, 1, "", "visit_data_property_iri"], [18, 4, 1, "", "visit_data_some_only_res"], [18, 4, 1, "", "visit_data_union"], [18, 4, 1, "", "visit_data_value_res"], [18, 4, 1, "", "visit_datatype"], [18, 4, 1, "", "visit_datatype_iri"], [18, 4, 1, "", "visit_datatype_restriction"], [18, 4, 1, "", "visit_date_literal"], [18, 4, 1, "", "visit_datetime_literal"], [18, 4, 1, "", "visit_decimal_literal"], [18, 4, 1, "", "visit_duration_literal"], [18, 4, 1, "", "visit_facet"], [18, 4, 1, "", "visit_facet_restriction"], [18, 4, 1, "", "visit_facet_restrictions"], [18, 4, 1, "", "visit_float_literal"], [18, 4, 1, "", "visit_full_iri"], [18, 4, 1, "", "visit_has_self"], [18, 4, 1, "", "visit_individual_iri"], [18, 4, 1, "", "visit_individual_list"], [18, 4, 1, "", "visit_integer_literal"], [18, 4, 1, "", "visit_intersection"], [18, 4, 1, "", "visit_iri"], [18, 4, 1, "", "visit_literal"], [18, 4, 1, "", "visit_literal_list"], [18, 4, 1, "", "visit_non_negative_integer"], [18, 4, 1, "", "visit_object_property"], [18, 4, 1, "", "visit_object_property_iri"], [18, 4, 1, "", "visit_parentheses"], [18, 4, 1, "", "visit_primary"], [18, 4, 1, "", "visit_quoted_string"], [18, 4, 1, "", "visit_simple_iri"], [18, 4, 1, "", "visit_some_only_res"], [18, 4, 1, "", "visit_string_literal_language"], [18, 4, 1, "", "visit_string_literal_no_language"], [18, 4, 1, "", "visit_typed_literal"], [18, 4, 1, "", "visit_union"], [18, 4, 1, "", "visit_value_res"]], "owlapy.parser.ManchesterOWLSyntaxParser": [[18, 4, 1, "", "generic_visit"], [18, 5, 1, "", "ns"], [18, 4, 1, "", "parse_expression"], [18, 5, 1, "", "slots"], [18, 4, 1, "", "visit_abbreviated_iri"], [18, 4, 1, "", "visit_boolean_literal"], [18, 4, 1, "", "visit_cardinality_res"], [18, 4, 1, "", "visit_class_expression"], [18, 4, 1, "", "visit_class_iri"], [18, 4, 1, "", "visit_data_cardinality_res"], [18, 4, 1, "", "visit_data_intersection"], [18, 4, 1, "", "visit_data_parentheses"], [18, 4, 1, "", "visit_data_primary"], [18, 4, 1, "", "visit_data_property_iri"], [18, 4, 1, "", "visit_data_some_only_res"], [18, 4, 1, "", "visit_data_union"], [18, 4, 1, "", "visit_data_value_res"], [18, 4, 1, "", "visit_datatype"], [18, 4, 1, "", "visit_datatype_iri"], [18, 4, 1, "", "visit_datatype_restriction"], [18, 4, 1, "", "visit_date_literal"], [18, 4, 1, "", "visit_datetime_literal"], [18, 4, 1, "", "visit_decimal_literal"], [18, 4, 1, "", "visit_duration_literal"], [18, 4, 1, "", "visit_facet"], [18, 4, 1, "", "visit_facet_restriction"], [18, 4, 1, "", "visit_facet_restrictions"], [18, 4, 1, "", "visit_float_literal"], [18, 4, 1, "", "visit_full_iri"], [18, 4, 1, "", "visit_has_self"], [18, 4, 1, "", "visit_individual_iri"], [18, 4, 1, "", "visit_individual_list"], [18, 4, 1, "", "visit_integer_literal"], [18, 4, 1, "", "visit_intersection"], [18, 4, 1, "", "visit_iri"], [18, 4, 1, "", "visit_literal"], [18, 4, 1, "", "visit_literal_list"], [18, 4, 1, "", "visit_non_negative_integer"], [18, 4, 1, "", "visit_object_property"], [18, 4, 1, "", "visit_object_property_iri"], [18, 4, 1, "", "visit_parentheses"], [18, 4, 1, "", "visit_primary"], [18, 4, 1, "", "visit_quoted_string"], [18, 4, 1, "", "visit_simple_iri"], [18, 4, 1, "", "visit_some_only_res"], [18, 4, 1, "", "visit_string_literal_language"], [18, 4, 1, "", "visit_string_literal_no_language"], [18, 4, 1, "", "visit_typed_literal"], [18, 4, 1, "", "visit_union"], [18, 4, 1, "", "visit_value_res"]], "owlapy.ranges": [[19, 3, 1, "", "OWLDataRange"], [19, 3, 1, "", "OWLPropertyRange"]], "owlapy.render": [[20, 3, 1, "", "DLSyntaxObjectRenderer"], [20, 1, 1, "", "DLrenderer"], [20, 3, 1, "", "ManchesterOWLSyntaxOWLObjectRenderer"], [20, 1, 1, "", "ManchesterRenderer"], [20, 2, 1, "", "owl_expression_to_dl"], [20, 2, 1, "", "owl_expression_to_manchester"]], "owlapy.render.DLSyntaxObjectRenderer": [[20, 5, 1, "", "__slots__"], [20, 4, 1, "", "render"], [20, 4, 1, "", "set_short_form_provider"]], "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer": [[20, 5, 1, "", "__slots__"], [20, 4, 1, "", "render"], [20, 4, 1, "", "set_short_form_provider"]], "owlapy.types": [[21, 3, 1, "", "OWLDatatype"]], "owlapy.types.OWLDatatype": [[21, 5, 1, "", "__slots__"], [21, 4, 1, "", "get_iri"], [21, 5, 1, "", "type_index"]], "owlapy.util": [[22, 3, 1, "", "LRUCache"], [22, 3, 1, "", "NNF"], [22, 3, 1, "", "OrderedOWLObject"], [22, 3, 1, "", "TopLevelCNF"], [22, 3, 1, "", "TopLevelDNF"], [22, 2, 1, "", "as_index"], [22, 2, 1, "", "combine_nary_expressions"], [22, 2, 1, "", "iter_count"]], "owlapy.util.LRUCache": [[22, 5, 1, "", "KEY"], [22, 5, 1, "", "NEXT"], [22, 5, 1, "", "PREV"], [22, 5, 1, "", "RESULT"], [22, 4, 1, "", "__contains__"], [22, 4, 1, "", "__getitem__"], [22, 4, 1, "", "__setitem__"], [22, 4, 1, "", "cache_clear"], [22, 4, 1, "", "cache_info"], [22, 5, 1, "id1", "sentinel"]], "owlapy.util.NNF": [[22, 4, 1, "", "get_class_nnf"]], "owlapy.util.OrderedOWLObject": [[22, 4, 1, "", "__eq__"], [22, 4, 1, "", "__lt__"], [22, 5, 1, "", "__slots__"], [22, 5, 1, "id0", "o"]], "owlapy.util.TopLevelCNF": [[22, 4, 1, "", "get_top_level_cnf"]], "owlapy.util.TopLevelDNF": [[22, 4, 1, "", "get_top_level_dnf"]], "owlapy.vocab": [[23, 3, 1, "", "OWLFacet"], [23, 3, 1, "", "OWLRDFVocabulary"], [23, 3, 1, "", "XSDVocabulary"]], "owlapy.vocab.OWLFacet": [[23, 5, 1, "", "FRACTION_DIGITS"], [23, 5, 1, "", "LENGTH"], [23, 5, 1, "", "MAX_EXCLUSIVE"], [23, 5, 1, "", "MAX_INCLUSIVE"], [23, 5, 1, "", "MAX_LENGTH"], [23, 5, 1, "", "MIN_EXCLUSIVE"], [23, 5, 1, "", "MIN_INCLUSIVE"], [23, 5, 1, "", "MIN_LENGTH"], [23, 5, 1, "", "PATTERN"], [23, 5, 1, "", "TOTAL_DIGITS"], [23, 4, 1, "", "from_str"], [23, 6, 1, "", "operator"], [23, 6, 1, "", "symbolic_form"]], "owlapy.vocab.OWLRDFVocabulary": [[23, 5, 1, "", "OWL_BOTTOM_DATA_PROPERTY"], [23, 5, 1, "", "OWL_BOTTOM_OBJECT_PROPERTY"], [23, 5, 1, "", "OWL_CLASS"], [23, 5, 1, "", "OWL_NAMED_INDIVIDUAL"], [23, 5, 1, "", "OWL_NOTHING"], [23, 5, 1, "", "OWL_THING"], [23, 5, 1, "", "OWL_TOP_DATA_PROPERTY"], [23, 5, 1, "", "OWL_TOP_OBJECT_PROPERTY"], [23, 5, 1, "", "RDFS_LITERAL"]], "owlapy.vocab.XSDVocabulary": [[23, 5, 1, "", "BOOLEAN"], [23, 5, 1, "", "DATE"], [23, 5, 1, "", "DATE_TIME"], [23, 5, 1, "", "DATE_TIME_STAMP"], [23, 5, 1, "", "DECIMAL"], [23, 5, 1, "", "DOUBLE"], [23, 5, 1, "", "DURATION"], [23, 5, 1, "", "FLOAT"], [23, 5, 1, "", "INTEGER"], [23, 5, 1, "", "LONG"], [23, 5, 1, "", "STRING"]]}, "objtypes": {"0": "py:module", "1": "py:data", "2": "py:function", "3": "py:class", "4": "py:method", "5": "py:attribute", "6": "py:property"}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "data", "Python data"], "2": ["py", "function", "Python function"], "3": ["py", "class", "Python class"], "4": ["py", "method", "Python method"], "5": ["py", "attribute", "Python attribute"], "6": ["py", "property", "Python property"]}, "titleterms": {"owlapi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25], "_util": 0, "modul": [0, 1, 3, 4, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "content": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24], "function": [0, 5, 6, 8, 18, 20, 22], "ha": 1, "class": [1, 3, 4, 5, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "subpackag": 2, "submodul": [2, 5, 9], "packag": [2, 5], "iri": 3, "meta_class": 4, "model": [5, 6], "attribut": [5, 6, 7, 8, 12, 14, 16, 18, 20], "provid": 6, "namespac": 7, "owl2sparql": [8, 9], "convert": 8, "owl_annot": 10, "owl_axiom": 11, "owl_class_express": 12, "owl_individu": 13, "owl_liter": 14, "owl_properti": 15, "owl_restrict": 16, "owlobject": 17, "parser": 18, "rang": 19, "render": 20, "type": 21, "util": 22, "vocab": 23, "welcom": 24}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1, "sphinx": 60}, "alltitles": {"owlapy._utils": [[0, "module-owlapy._utils"]], "Module Contents": [[0, "module-contents"], [1, "module-contents"], [3, "module-contents"], [4, "module-contents"], [6, "module-contents"], [7, "module-contents"], [8, "module-contents"], [10, "module-contents"], [11, "module-contents"], [12, "module-contents"], [13, "module-contents"], [14, "module-contents"], [15, "module-contents"], [16, "module-contents"], [17, "module-contents"], [18, "module-contents"], [19, "module-contents"], [20, "module-contents"], [21, "module-contents"], [22, "module-contents"], [23, "module-contents"]], "Functions": [[0, "functions"], [5, "functions"], [6, "functions"], [8, "functions"], [18, "functions"], [20, "functions"], [22, "functions"]], "owlapy.has": [[1, "module-owlapy.has"]], "Classes": [[1, "classes"], [3, "classes"], [4, "classes"], [5, "classes"], [7, "classes"], [8, "classes"], [10, "classes"], [11, "classes"], [12, "classes"], [13, "classes"], [14, "classes"], [15, "classes"], [16, "classes"], [17, "classes"], [18, "classes"], [19, "classes"], [20, "classes"], [21, "classes"], [22, "classes"], [23, "classes"]], "owlapy": [[2, "module-owlapy"]], "Subpackages": [[2, "subpackages"]], "Submodules": [[2, "submodules"], [5, "submodules"], [9, "submodules"]], "Package Contents": [[2, "package-contents"], [5, "package-contents"]], "owlapy.iri": [[3, "module-owlapy.iri"]], "owlapy.meta_classes": [[4, "module-owlapy.meta_classes"]], "owlapy.model": [[5, "module-owlapy.model"]], "Attributes": [[5, "attributes"], [6, "attributes"], [7, "attributes"], [8, "attributes"], [12, "attributes"], [14, "attributes"], [16, "attributes"], [18, "attributes"], [20, "attributes"]], "owlapy.model.providers": [[6, "module-owlapy.model.providers"]], "owlapy.namespaces": [[7, "module-owlapy.namespaces"]], "owlapy.owl2sparql.converter": [[8, "module-owlapy.owl2sparql.converter"]], "owlapy.owl2sparql": [[9, "module-owlapy.owl2sparql"]], "owlapy.owl_annotation": [[10, "module-owlapy.owl_annotation"]], "owlapy.owl_axiom": [[11, "module-owlapy.owl_axiom"]], "owlapy.owl_class_expression": [[12, "module-owlapy.owl_class_expression"]], "owlapy.owl_individual": [[13, "module-owlapy.owl_individual"]], "owlapy.owl_literal": [[14, "module-owlapy.owl_literal"]], "owlapy.owl_property": [[15, "module-owlapy.owl_property"]], "owlapy.owl_restriction": [[16, "module-owlapy.owl_restriction"]], "owlapy.owlobject": [[17, "module-owlapy.owlobject"]], "owlapy.parser": [[18, "module-owlapy.parser"]], "owlapy.ranges": [[19, "module-owlapy.ranges"]], "owlapy.render": [[20, "module-owlapy.render"]], "owlapy.types": [[21, "module-owlapy.types"]], "owlapy.util": [[22, "module-owlapy.util"]], "owlapy.vocab": [[23, "module-owlapy.vocab"]], "Welcome to OWLAPY!": [[24, "welcome-to-owlapy"]], "Contents:": [[24, null]], "OWLAPY": [[25, "owlapy"]]}, "indexentries": {"move() (in module owlapy._utils)": [[0, "owlapy._utils.MOVE"]], "module": [[0, "module-owlapy._utils"], [1, "module-owlapy.has"], [2, "module-owlapy"], [3, "module-owlapy.iri"], [4, "module-owlapy.meta_classes"], [5, "module-owlapy.model"], [6, "module-owlapy.model.providers"], [7, "module-owlapy.namespaces"], [8, "module-owlapy.owl2sparql.converter"], [9, "module-owlapy.owl2sparql"], [10, "module-owlapy.owl_annotation"], [11, "module-owlapy.owl_axiom"], [12, "module-owlapy.owl_class_expression"], [13, "module-owlapy.owl_individual"], [14, "module-owlapy.owl_literal"], [15, "module-owlapy.owl_property"], [16, "module-owlapy.owl_restriction"], [17, "module-owlapy.owlobject"], [18, "module-owlapy.parser"], [19, "module-owlapy.ranges"], [20, "module-owlapy.render"], [21, "module-owlapy.types"], [22, "module-owlapy.util"], [23, "module-owlapy.vocab"]], "owlapy._utils": [[0, "module-owlapy._utils"]], "hasindex (class in owlapy.has)": [[1, "owlapy.has.HasIndex"]], "__eq__() (owlapy.has.hasindex method)": [[1, "owlapy.has.HasIndex.__eq__"]], "owlapy.has": [[1, "module-owlapy.has"]], "type_index (owlapy.has.hasindex attribute)": [[1, "owlapy.has.HasIndex.type_index"]], "__version__ (in module owlapy)": [[2, "owlapy.__version__"]], "owlapy": [[2, "module-owlapy"]], "iri (class in owlapy.iri)": [[3, "owlapy.iri.IRI"]], "__eq__() (owlapy.iri.iri method)": [[3, "owlapy.iri.IRI.__eq__"]], "__hash__() (owlapy.iri.iri method)": [[3, "owlapy.iri.IRI.__hash__"]], "__repr__() (owlapy.iri.iri method)": [[3, "owlapy.iri.IRI.__repr__"]], "__slots__ (owlapy.iri.iri attribute)": [[3, "owlapy.iri.IRI.__slots__"]], "as_iri() (owlapy.iri.iri method)": [[3, "owlapy.iri.IRI.as_iri"]], "as_str() (owlapy.iri.iri method)": [[3, "owlapy.iri.IRI.as_str"]], "create() (owlapy.iri.iri static method)": [[3, "owlapy.iri.IRI.create"]], "get_namespace() (owlapy.iri.iri method)": [[3, "owlapy.iri.IRI.get_namespace"]], "get_remainder() (owlapy.iri.iri method)": [[3, "owlapy.iri.IRI.get_remainder"]], "get_short_form() (owlapy.iri.iri method)": [[3, "owlapy.iri.IRI.get_short_form"]], "is_nothing() (owlapy.iri.iri method)": [[3, "owlapy.iri.IRI.is_nothing"]], "is_reserved_vocabulary() (owlapy.iri.iri method)": [[3, "owlapy.iri.IRI.is_reserved_vocabulary"]], "is_thing() (owlapy.iri.iri method)": [[3, "owlapy.iri.IRI.is_thing"]], "owlapy.iri": [[3, "module-owlapy.iri"]], "reminder (owlapy.iri.iri property)": [[3, "owlapy.iri.IRI.reminder"]], "str (owlapy.iri.iri property)": [[3, "owlapy.iri.IRI.str"]], "type_index (owlapy.iri.iri attribute)": [[3, "owlapy.iri.IRI.type_index"]], "hascardinality (class in owlapy.meta_classes)": [[4, "owlapy.meta_classes.HasCardinality"]], "hasfiller (class in owlapy.meta_classes)": [[4, "owlapy.meta_classes.HasFiller"]], "hasiri (class in owlapy.meta_classes)": [[4, "owlapy.meta_classes.HasIRI"]], "hasoperands (class in owlapy.meta_classes)": [[4, "owlapy.meta_classes.HasOperands"]], "__slots__ (owlapy.meta_classes.hascardinality attribute)": [[4, "owlapy.meta_classes.HasCardinality.__slots__"]], "__slots__ (owlapy.meta_classes.hasfiller attribute)": [[4, "owlapy.meta_classes.HasFiller.__slots__"]], "__slots__ (owlapy.meta_classes.hasiri attribute)": [[4, "owlapy.meta_classes.HasIRI.__slots__"]], "__slots__ (owlapy.meta_classes.hasoperands attribute)": [[4, "owlapy.meta_classes.HasOperands.__slots__"]], "get_cardinality() (owlapy.meta_classes.hascardinality method)": [[4, "owlapy.meta_classes.HasCardinality.get_cardinality"]], "get_filler() (owlapy.meta_classes.hasfiller method)": [[4, "owlapy.meta_classes.HasFiller.get_filler"]], "get_iri() (owlapy.meta_classes.hasiri method)": [[4, "owlapy.meta_classes.HasIRI.get_iri"]], "operands() (owlapy.meta_classes.hasoperands method)": [[4, "owlapy.meta_classes.HasOperands.operands"]], "owlapy.meta_classes": [[4, "module-owlapy.meta_classes"]], "addimport (class in owlapy.model)": [[5, "owlapy.model.AddImport"]], "boolean (owlapy.model.xsdvocabulary attribute)": [[5, "owlapy.model.XSDVocabulary.BOOLEAN"]], "booleanowldatatype (in module owlapy.model)": [[5, "owlapy.model.BooleanOWLDatatype"]], "date (owlapy.model.xsdvocabulary attribute)": [[5, "owlapy.model.XSDVocabulary.DATE"]], "date_time (owlapy.model.xsdvocabulary attribute)": [[5, "owlapy.model.XSDVocabulary.DATE_TIME"]], "date_time_stamp (owlapy.model.xsdvocabulary attribute)": [[5, "owlapy.model.XSDVocabulary.DATE_TIME_STAMP"]], "decimal (owlapy.model.xsdvocabulary attribute)": [[5, "owlapy.model.XSDVocabulary.DECIMAL"]], "double (owlapy.model.xsdvocabulary attribute)": [[5, "owlapy.model.XSDVocabulary.DOUBLE"]], "duration (owlapy.model.xsdvocabulary attribute)": [[5, "owlapy.model.XSDVocabulary.DURATION"]], "dateowldatatype (in module owlapy.model)": [[5, "owlapy.model.DateOWLDatatype"]], "datetimeowldatatype (in module owlapy.model)": [[5, "owlapy.model.DateTimeOWLDatatype"]], "doubleowldatatype (in module owlapy.model)": [[5, "owlapy.model.DoubleOWLDatatype"]], "durationowldatatype (in module owlapy.model)": [[5, "owlapy.model.DurationOWLDatatype"]], "float (owlapy.model.xsdvocabulary attribute)": [[5, "owlapy.model.XSDVocabulary.FLOAT"]], "fraction_digits (owlapy.model.owlfacet attribute)": [[5, "owlapy.model.OWLFacet.FRACTION_DIGITS"]], "hascardinality (class in owlapy.model)": [[5, "owlapy.model.HasCardinality"]], "hasfiller (class in owlapy.model)": [[5, "owlapy.model.HasFiller"]], "hasiri (class in owlapy.model)": [[5, "owlapy.model.HasIRI"]], "hasindex (class in owlapy.model)": [[5, "owlapy.model.HasIndex"]], "hasoperands (class in owlapy.model)": [[5, "owlapy.model.HasOperands"]], "integer (owlapy.model.xsdvocabulary attribute)": [[5, "owlapy.model.XSDVocabulary.INTEGER"]], "iri (class in owlapy.model)": [[5, "owlapy.model.IRI"]], "integerowldatatype (in module owlapy.model)": [[5, "owlapy.model.IntegerOWLDatatype"]], "length (owlapy.model.owlfacet attribute)": [[5, "owlapy.model.OWLFacet.LENGTH"]], "long (owlapy.model.xsdvocabulary attribute)": [[5, "owlapy.model.XSDVocabulary.LONG"]], "literals (in module owlapy.model)": [[5, "owlapy.model.Literals"]], "max_exclusive (owlapy.model.owlfacet attribute)": [[5, "owlapy.model.OWLFacet.MAX_EXCLUSIVE"]], "max_inclusive (owlapy.model.owlfacet attribute)": [[5, "owlapy.model.OWLFacet.MAX_INCLUSIVE"]], "max_length (owlapy.model.owlfacet attribute)": [[5, "owlapy.model.OWLFacet.MAX_LENGTH"]], "min_exclusive (owlapy.model.owlfacet attribute)": [[5, "owlapy.model.OWLFacet.MIN_EXCLUSIVE"]], "min_inclusive (owlapy.model.owlfacet attribute)": [[5, "owlapy.model.OWLFacet.MIN_INCLUSIVE"]], "min_length (owlapy.model.owlfacet attribute)": [[5, "owlapy.model.OWLFacet.MIN_LENGTH"]], "move() (in module owlapy.model)": [[5, "owlapy.model.MOVE"]], "numeric_datatypes (in module owlapy.model)": [[5, "owlapy.model.NUMERIC_DATATYPES"]], "owlannotationobject (class in owlapy.model)": [[5, "owlapy.model.OWLAnnotationObject"]], "owlannotationsubject (class in owlapy.model)": [[5, "owlapy.model.OWLAnnotationSubject"]], "owlannotationvalue (class in owlapy.model)": [[5, "owlapy.model.OWLAnnotationValue"]], "owlanonymousclassexpression (class in owlapy.model)": [[5, "owlapy.model.OWLAnonymousClassExpression"]], "owlaxiom (class in owlapy.model)": [[5, "owlapy.model.OWLAxiom"]], "owlbooleanclassexpression (class in owlapy.model)": [[5, "owlapy.model.OWLBooleanClassExpression"]], "owlbottomdataproperty (in module owlapy.model)": [[5, "owlapy.model.OWLBottomDataProperty"]], "owlbottomobjectproperty (in module owlapy.model)": [[5, "owlapy.model.OWLBottomObjectProperty"]], "owlcardinalityrestriction (class in owlapy.model)": [[5, "owlapy.model.OWLCardinalityRestriction"]], "owlclass (class in owlapy.model)": [[5, "owlapy.model.OWLClass"]], "owlclassaxiom (class in owlapy.model)": [[5, "owlapy.model.OWLClassAxiom"]], "owlclassexpression (class in owlapy.model)": [[5, "owlapy.model.OWLClassExpression"]], "owldataallvaluesfrom (class in owlapy.model)": [[5, "owlapy.model.OWLDataAllValuesFrom"]], "owldatacardinalityrestriction (class in owlapy.model)": [[5, "owlapy.model.OWLDataCardinalityRestriction"]], "owldataexactcardinality (class in owlapy.model)": [[5, "owlapy.model.OWLDataExactCardinality"]], "owldatahasvalue (class in owlapy.model)": [[5, "owlapy.model.OWLDataHasValue"]], "owldatamaxcardinality (class in owlapy.model)": [[5, "owlapy.model.OWLDataMaxCardinality"]], "owldatamincardinality (class in owlapy.model)": [[5, "owlapy.model.OWLDataMinCardinality"]], "owldataoneof (class in owlapy.model)": [[5, "owlapy.model.OWLDataOneOf"]], "owldataproperty (class in owlapy.model)": [[5, "owlapy.model.OWLDataProperty"]], "owldatapropertydomainaxiom (class in owlapy.model)": [[5, "owlapy.model.OWLDataPropertyDomainAxiom"]], "owldatapropertyexpression (class in owlapy.model)": [[5, "owlapy.model.OWLDataPropertyExpression"]], "owldatapropertyrangeaxiom (class in owlapy.model)": [[5, "owlapy.model.OWLDataPropertyRangeAxiom"]], "owldatarange (class in owlapy.model)": [[5, "owlapy.model.OWLDataRange"]], "owldatarestriction (class in owlapy.model)": [[5, "owlapy.model.OWLDataRestriction"]], "owldatasomevaluesfrom (class in owlapy.model)": [[5, "owlapy.model.OWLDataSomeValuesFrom"]], "owldatatype (class in owlapy.model)": [[5, "owlapy.model.OWLDatatype"]], "owlentity (class in owlapy.model)": [[5, "owlapy.model.OWLEntity"]], "owlequivalentclassesaxiom (class in owlapy.model)": [[5, "owlapy.model.OWLEquivalentClassesAxiom"]], "owlfacet (class in owlapy.model)": [[5, "owlapy.model.OWLFacet"]], "owlhasvaluerestriction (class in owlapy.model)": [[5, "owlapy.model.OWLHasValueRestriction"]], "owlimportsdeclaration (class in owlapy.model)": [[5, "owlapy.model.OWLImportsDeclaration"]], "owlindividual (class in owlapy.model)": [[5, "owlapy.model.OWLIndividual"]], "owlliteral (class in owlapy.model)": [[5, "owlapy.model.OWLLiteral"]], "owlnamedindividual (class in owlapy.model)": [[5, "owlapy.model.OWLNamedIndividual"]], "owlnarybooleanclassexpression (class in owlapy.model)": [[5, "owlapy.model.OWLNaryBooleanClassExpression"]], "owlnothing (in module owlapy.model)": [[5, "owlapy.model.OWLNothing"]], "owlobject (class in owlapy.model)": [[5, "owlapy.model.OWLObject"]], "owlobjectallvaluesfrom (class in owlapy.model)": [[5, "owlapy.model.OWLObjectAllValuesFrom"]], "owlobjectcardinalityrestriction (class in owlapy.model)": [[5, "owlapy.model.OWLObjectCardinalityRestriction"]], "owlobjectcomplementof (class in owlapy.model)": [[5, "owlapy.model.OWLObjectComplementOf"]], "owlobjectexactcardinality (class in owlapy.model)": [[5, "owlapy.model.OWLObjectExactCardinality"]], "owlobjecthasself (class in owlapy.model)": [[5, "owlapy.model.OWLObjectHasSelf"]], "owlobjectintersectionof (class in owlapy.model)": [[5, "owlapy.model.OWLObjectIntersectionOf"]], "owlobjectmaxcardinality (class in owlapy.model)": [[5, "owlapy.model.OWLObjectMaxCardinality"]], "owlobjectmincardinality (class in owlapy.model)": [[5, "owlapy.model.OWLObjectMinCardinality"]], "owlobjectproperty (class in owlapy.model)": [[5, "owlapy.model.OWLObjectProperty"]], "owlobjectpropertydomainaxiom (class in owlapy.model)": [[5, "owlapy.model.OWLObjectPropertyDomainAxiom"]], "owlobjectpropertyexpression (class in owlapy.model)": [[5, "owlapy.model.OWLObjectPropertyExpression"]], "owlobjectpropertyrangeaxiom (class in owlapy.model)": [[5, "owlapy.model.OWLObjectPropertyRangeAxiom"]], "owlobjectrestriction (class in owlapy.model)": [[5, "owlapy.model.OWLObjectRestriction"]], "owlobjectsomevaluesfrom (class in owlapy.model)": [[5, "owlapy.model.OWLObjectSomeValuesFrom"]], "owlobjectunionof (class in owlapy.model)": [[5, "owlapy.model.OWLObjectUnionOf"]], "owlontology (class in owlapy.model)": [[5, "owlapy.model.OWLOntology"]], "owlontologychange (class in owlapy.model)": [[5, "owlapy.model.OWLOntologyChange"]], "owlontologyid (class in owlapy.model)": [[5, "owlapy.model.OWLOntologyID"]], "owlontologymanager (class in owlapy.model)": [[5, "owlapy.model.OWLOntologyManager"]], "owlproperty (class in owlapy.model)": [[5, "owlapy.model.OWLProperty"]], "owlpropertyexpression (class in owlapy.model)": [[5, "owlapy.model.OWLPropertyExpression"]], "owlpropertyrange (class in owlapy.model)": [[5, "owlapy.model.OWLPropertyRange"]], "owlquantifieddatarestriction (class in owlapy.model)": [[5, "owlapy.model.OWLQuantifiedDataRestriction"]], "owlquantifiedobjectrestriction (class in owlapy.model)": [[5, "owlapy.model.OWLQuantifiedObjectRestriction"]], "owlquantifiedrestriction (class in owlapy.model)": [[5, "owlapy.model.OWLQuantifiedRestriction"]], "owlrdfvocabulary (class in owlapy.model)": [[5, "owlapy.model.OWLRDFVocabulary"]], "owlreasoner (class in owlapy.model)": [[5, "owlapy.model.OWLReasoner"]], "owlrestriction (class in owlapy.model)": [[5, "owlapy.model.OWLRestriction"]], "owlthing (in module owlapy.model)": [[5, "owlapy.model.OWLThing"]], "owltopdataproperty (in module owlapy.model)": [[5, "owlapy.model.OWLTopDataProperty"]], "owltopobjectproperty (in module owlapy.model)": [[5, "owlapy.model.OWLTopObjectProperty"]], "owl_bottom_data_property (owlapy.model.owlrdfvocabulary attribute)": [[5, "owlapy.model.OWLRDFVocabulary.OWL_BOTTOM_DATA_PROPERTY"]], "owl_bottom_object_property (owlapy.model.owlrdfvocabulary attribute)": [[5, "owlapy.model.OWLRDFVocabulary.OWL_BOTTOM_OBJECT_PROPERTY"]], "owl_class (owlapy.model.owlrdfvocabulary attribute)": [[5, "owlapy.model.OWLRDFVocabulary.OWL_CLASS"]], "owl_named_individual (owlapy.model.owlrdfvocabulary attribute)": [[5, "owlapy.model.OWLRDFVocabulary.OWL_NAMED_INDIVIDUAL"]], "owl_nothing (owlapy.model.owlrdfvocabulary attribute)": [[5, "owlapy.model.OWLRDFVocabulary.OWL_NOTHING"]], "owl_thing (owlapy.model.owlrdfvocabulary attribute)": [[5, "owlapy.model.OWLRDFVocabulary.OWL_THING"]], "owl_top_data_property (owlapy.model.owlrdfvocabulary attribute)": [[5, "owlapy.model.OWLRDFVocabulary.OWL_TOP_DATA_PROPERTY"]], "owl_top_object_property (owlapy.model.owlrdfvocabulary attribute)": [[5, "owlapy.model.OWLRDFVocabulary.OWL_TOP_OBJECT_PROPERTY"]], "pattern (owlapy.model.owlfacet attribute)": [[5, "owlapy.model.OWLFacet.PATTERN"]], "rdfs_literal (owlapy.model.owlrdfvocabulary attribute)": [[5, "owlapy.model.OWLRDFVocabulary.RDFS_LITERAL"]], "string (owlapy.model.xsdvocabulary attribute)": [[5, "owlapy.model.XSDVocabulary.STRING"]], "stringowldatatype (in module owlapy.model)": [[5, "owlapy.model.StringOWLDatatype"]], "time_datatypes (in module owlapy.model)": [[5, "owlapy.model.TIME_DATATYPES"]], "total_digits (owlapy.model.owlfacet attribute)": [[5, "owlapy.model.OWLFacet.TOTAL_DIGITS"]], "topowldatatype (in module owlapy.model)": [[5, "owlapy.model.TopOWLDatatype"]], "xsdvocabulary (class in owlapy.model)": [[5, "owlapy.model.XSDVocabulary"]], "__eq__() (owlapy.model.hasindex method)": [[5, "owlapy.model.HasIndex.__eq__"]], "__eq__() (owlapy.model.iri method)": [[5, "owlapy.model.IRI.__eq__"]], "__eq__() (owlapy.model.owldataallvaluesfrom method)": [[5, "owlapy.model.OWLDataAllValuesFrom.__eq__"]], "__eq__() (owlapy.model.owldatacardinalityrestriction method)": [[5, "owlapy.model.OWLDataCardinalityRestriction.__eq__"]], "__eq__() (owlapy.model.owldatahasvalue method)": [[5, "owlapy.model.OWLDataHasValue.__eq__"]], "__eq__() (owlapy.model.owldataoneof method)": [[5, "owlapy.model.OWLDataOneOf.__eq__"]], "__eq__() (owlapy.model.owldatasomevaluesfrom method)": [[5, "owlapy.model.OWLDataSomeValuesFrom.__eq__"]], "__eq__() (owlapy.model.owlhasvaluerestriction method)": [[5, "owlapy.model.OWLHasValueRestriction.__eq__"]], "__eq__() (owlapy.model.owlnarybooleanclassexpression method)": [[5, "owlapy.model.OWLNaryBooleanClassExpression.__eq__"]], "__eq__() (owlapy.model.owlobject method)": [[5, "owlapy.model.OWLObject.__eq__"]], "__eq__() (owlapy.model.owlobjectallvaluesfrom method)": [[5, "owlapy.model.OWLObjectAllValuesFrom.__eq__"]], "__eq__() (owlapy.model.owlobjectcardinalityrestriction method)": [[5, "owlapy.model.OWLObjectCardinalityRestriction.__eq__"]], "__eq__() (owlapy.model.owlobjectcomplementof method)": [[5, "owlapy.model.OWLObjectComplementOf.__eq__"]], "__eq__() (owlapy.model.owlobjecthasself method)": [[5, "owlapy.model.OWLObjectHasSelf.__eq__"]], "__eq__() (owlapy.model.owlobjectsomevaluesfrom method)": [[5, "owlapy.model.OWLObjectSomeValuesFrom.__eq__"]], "__eq__() (owlapy.model.owlontologyid method)": [[5, "owlapy.model.OWLOntologyID.__eq__"]], "__hash__() (owlapy.model.iri method)": [[5, "owlapy.model.IRI.__hash__"]], "__hash__() (owlapy.model.owldataallvaluesfrom method)": [[5, "owlapy.model.OWLDataAllValuesFrom.__hash__"]], "__hash__() (owlapy.model.owldatacardinalityrestriction method)": [[5, "owlapy.model.OWLDataCardinalityRestriction.__hash__"]], "__hash__() (owlapy.model.owldatahasvalue method)": [[5, "owlapy.model.OWLDataHasValue.__hash__"]], "__hash__() (owlapy.model.owldataoneof method)": [[5, "owlapy.model.OWLDataOneOf.__hash__"]], "__hash__() (owlapy.model.owldatasomevaluesfrom method)": [[5, "owlapy.model.OWLDataSomeValuesFrom.__hash__"]], "__hash__() (owlapy.model.owlhasvaluerestriction method)": [[5, "owlapy.model.OWLHasValueRestriction.__hash__"]], "__hash__() (owlapy.model.owlnarybooleanclassexpression method)": [[5, "owlapy.model.OWLNaryBooleanClassExpression.__hash__"]], "__hash__() (owlapy.model.owlobject method)": [[5, "owlapy.model.OWLObject.__hash__"]], "__hash__() (owlapy.model.owlobjectallvaluesfrom method)": [[5, "owlapy.model.OWLObjectAllValuesFrom.__hash__"]], "__hash__() (owlapy.model.owlobjectcardinalityrestriction method)": [[5, "owlapy.model.OWLObjectCardinalityRestriction.__hash__"]], "__hash__() (owlapy.model.owlobjectcomplementof method)": [[5, "owlapy.model.OWLObjectComplementOf.__hash__"]], "__hash__() (owlapy.model.owlobjecthasself method)": [[5, "owlapy.model.OWLObjectHasSelf.__hash__"]], "__hash__() (owlapy.model.owlobjectsomevaluesfrom method)": [[5, "owlapy.model.OWLObjectSomeValuesFrom.__hash__"]], "__repr__() (owlapy.model.iri method)": [[5, "owlapy.model.IRI.__repr__"]], "__repr__() (owlapy.model.owldataallvaluesfrom method)": [[5, "owlapy.model.OWLDataAllValuesFrom.__repr__"]], "__repr__() (owlapy.model.owldatacardinalityrestriction method)": [[5, "owlapy.model.OWLDataCardinalityRestriction.__repr__"]], "__repr__() (owlapy.model.owldatahasvalue method)": [[5, "owlapy.model.OWLDataHasValue.__repr__"]], "__repr__() (owlapy.model.owldataoneof method)": [[5, "owlapy.model.OWLDataOneOf.__repr__"]], "__repr__() (owlapy.model.owldatasomevaluesfrom method)": [[5, "owlapy.model.OWLDataSomeValuesFrom.__repr__"]], "__repr__() (owlapy.model.owlnarybooleanclassexpression method)": [[5, "owlapy.model.OWLNaryBooleanClassExpression.__repr__"]], "__repr__() (owlapy.model.owlobject method)": [[5, "owlapy.model.OWLObject.__repr__"]], "__repr__() (owlapy.model.owlobjectallvaluesfrom method)": [[5, "owlapy.model.OWLObjectAllValuesFrom.__repr__"]], "__repr__() (owlapy.model.owlobjectcardinalityrestriction method)": [[5, "owlapy.model.OWLObjectCardinalityRestriction.__repr__"]], "__repr__() (owlapy.model.owlobjectcomplementof method)": [[5, "owlapy.model.OWLObjectComplementOf.__repr__"]], "__repr__() (owlapy.model.owlobjecthasself method)": [[5, "owlapy.model.OWLObjectHasSelf.__repr__"]], "__repr__() (owlapy.model.owlobjectsomevaluesfrom method)": [[5, "owlapy.model.OWLObjectSomeValuesFrom.__repr__"]], "__repr__() (owlapy.model.owlontologyid method)": [[5, "owlapy.model.OWLOntologyID.__repr__"]], "__slots__ (owlapy.model.addimport attribute)": [[5, "owlapy.model.AddImport.__slots__"]], "__slots__ (owlapy.model.hascardinality attribute)": [[5, "owlapy.model.HasCardinality.__slots__"]], "__slots__ (owlapy.model.hasfiller attribute)": [[5, "owlapy.model.HasFiller.__slots__"]], "__slots__ (owlapy.model.hasiri attribute)": [[5, "owlapy.model.HasIRI.__slots__"]], "__slots__ (owlapy.model.hasoperands attribute)": [[5, "owlapy.model.HasOperands.__slots__"]], "__slots__ (owlapy.model.iri attribute)": [[5, "owlapy.model.IRI.__slots__"]], "__slots__ (owlapy.model.owlannotationobject attribute)": [[5, "owlapy.model.OWLAnnotationObject.__slots__"]], "__slots__ (owlapy.model.owlannotationsubject attribute)": [[5, "owlapy.model.OWLAnnotationSubject.__slots__"]], "__slots__ (owlapy.model.owlannotationvalue attribute)": [[5, "owlapy.model.OWLAnnotationValue.__slots__"]], "__slots__ (owlapy.model.owlaxiom attribute)": [[5, "owlapy.model.OWLAxiom.__slots__"]], "__slots__ (owlapy.model.owlbooleanclassexpression attribute)": [[5, "owlapy.model.OWLBooleanClassExpression.__slots__"]], "__slots__ (owlapy.model.owlcardinalityrestriction attribute)": [[5, "owlapy.model.OWLCardinalityRestriction.__slots__"]], "__slots__ (owlapy.model.owlclass attribute)": [[5, "owlapy.model.OWLClass.__slots__"]], "__slots__ (owlapy.model.owlclassaxiom attribute)": [[5, "owlapy.model.OWLClassAxiom.__slots__"]], "__slots__ (owlapy.model.owlclassexpression attribute)": [[5, "owlapy.model.OWLClassExpression.__slots__"]], "__slots__ (owlapy.model.owldataallvaluesfrom attribute)": [[5, "owlapy.model.OWLDataAllValuesFrom.__slots__"]], "__slots__ (owlapy.model.owldatacardinalityrestriction attribute)": [[5, "owlapy.model.OWLDataCardinalityRestriction.__slots__"]], "__slots__ (owlapy.model.owldataexactcardinality attribute)": [[5, "owlapy.model.OWLDataExactCardinality.__slots__"]], "__slots__ (owlapy.model.owldatahasvalue attribute)": [[5, "owlapy.model.OWLDataHasValue.__slots__"]], "__slots__ (owlapy.model.owldatamaxcardinality attribute)": [[5, "owlapy.model.OWLDataMaxCardinality.__slots__"]], "__slots__ (owlapy.model.owldatamincardinality attribute)": [[5, "owlapy.model.OWLDataMinCardinality.__slots__"]], "__slots__ (owlapy.model.owldataproperty attribute)": [[5, "owlapy.model.OWLDataProperty.__slots__"]], "__slots__ (owlapy.model.owldatapropertydomainaxiom attribute)": [[5, "owlapy.model.OWLDataPropertyDomainAxiom.__slots__"]], "__slots__ (owlapy.model.owldatapropertyexpression attribute)": [[5, "owlapy.model.OWLDataPropertyExpression.__slots__"]], "__slots__ (owlapy.model.owldatapropertyrangeaxiom attribute)": [[5, "owlapy.model.OWLDataPropertyRangeAxiom.__slots__"]], "__slots__ (owlapy.model.owldatarestriction attribute)": [[5, "owlapy.model.OWLDataRestriction.__slots__"]], "__slots__ (owlapy.model.owldatasomevaluesfrom attribute)": [[5, "owlapy.model.OWLDataSomeValuesFrom.__slots__"]], "__slots__ (owlapy.model.owldatatype attribute)": [[5, "owlapy.model.OWLDatatype.__slots__"]], "__slots__ (owlapy.model.owlentity attribute)": [[5, "owlapy.model.OWLEntity.__slots__"]], "__slots__ (owlapy.model.owlequivalentclassesaxiom attribute)": [[5, "owlapy.model.OWLEquivalentClassesAxiom.__slots__"]], "__slots__ (owlapy.model.owlhasvaluerestriction attribute)": [[5, "owlapy.model.OWLHasValueRestriction.__slots__"]], "__slots__ (owlapy.model.owlimportsdeclaration attribute)": [[5, "owlapy.model.OWLImportsDeclaration.__slots__"]], "__slots__ (owlapy.model.owlindividual attribute)": [[5, "owlapy.model.OWLIndividual.__slots__"]], "__slots__ (owlapy.model.owlliteral attribute)": [[5, "owlapy.model.OWLLiteral.__slots__"]], "__slots__ (owlapy.model.owlnamedindividual attribute)": [[5, "owlapy.model.OWLNamedIndividual.__slots__"]], "__slots__ (owlapy.model.owlnarybooleanclassexpression attribute)": [[5, "owlapy.model.OWLNaryBooleanClassExpression.__slots__"]], "__slots__ (owlapy.model.owlobject attribute)": [[5, "owlapy.model.OWLObject.__slots__"]], "__slots__ (owlapy.model.owlobjectallvaluesfrom attribute)": [[5, "owlapy.model.OWLObjectAllValuesFrom.__slots__"]], "__slots__ (owlapy.model.owlobjectcardinalityrestriction attribute)": [[5, "owlapy.model.OWLObjectCardinalityRestriction.__slots__"]], "__slots__ (owlapy.model.owlobjectcomplementof attribute)": [[5, "owlapy.model.OWLObjectComplementOf.__slots__"]], "__slots__ (owlapy.model.owlobjectexactcardinality attribute)": [[5, "owlapy.model.OWLObjectExactCardinality.__slots__"]], "__slots__ (owlapy.model.owlobjecthasself attribute)": [[5, "owlapy.model.OWLObjectHasSelf.__slots__"]], "__slots__ (owlapy.model.owlobjectintersectionof attribute)": [[5, "owlapy.model.OWLObjectIntersectionOf.__slots__"]], "__slots__ (owlapy.model.owlobjectmaxcardinality attribute)": [[5, "owlapy.model.OWLObjectMaxCardinality.__slots__"]], "__slots__ (owlapy.model.owlobjectmincardinality attribute)": [[5, "owlapy.model.OWLObjectMinCardinality.__slots__"]], "__slots__ (owlapy.model.owlobjectproperty attribute)": [[5, "owlapy.model.OWLObjectProperty.__slots__"]], "__slots__ (owlapy.model.owlobjectpropertydomainaxiom attribute)": [[5, "owlapy.model.OWLObjectPropertyDomainAxiom.__slots__"]], "__slots__ (owlapy.model.owlobjectpropertyexpression attribute)": [[5, "owlapy.model.OWLObjectPropertyExpression.__slots__"]], "__slots__ (owlapy.model.owlobjectpropertyrangeaxiom attribute)": [[5, "owlapy.model.OWLObjectPropertyRangeAxiom.__slots__"]], "__slots__ (owlapy.model.owlobjectrestriction attribute)": [[5, "owlapy.model.OWLObjectRestriction.__slots__"]], "__slots__ (owlapy.model.owlobjectsomevaluesfrom attribute)": [[5, "owlapy.model.OWLObjectSomeValuesFrom.__slots__"]], "__slots__ (owlapy.model.owlobjectunionof attribute)": [[5, "owlapy.model.OWLObjectUnionOf.__slots__"]], "__slots__ (owlapy.model.owlontology attribute)": [[5, "owlapy.model.OWLOntology.__slots__"]], "__slots__ (owlapy.model.owlontologychange attribute)": [[5, "owlapy.model.OWLOntologyChange.__slots__"]], "__slots__ (owlapy.model.owlontologyid attribute)": [[5, "owlapy.model.OWLOntologyID.__slots__"]], "__slots__ (owlapy.model.owlproperty attribute)": [[5, "owlapy.model.OWLProperty.__slots__"]], "__slots__ (owlapy.model.owlpropertyexpression attribute)": [[5, "owlapy.model.OWLPropertyExpression.__slots__"]], "__slots__ (owlapy.model.owlquantifieddatarestriction attribute)": [[5, "owlapy.model.OWLQuantifiedDataRestriction.__slots__"]], "__slots__ (owlapy.model.owlquantifiedobjectrestriction attribute)": [[5, "owlapy.model.OWLQuantifiedObjectRestriction.__slots__"]], "__slots__ (owlapy.model.owlquantifiedrestriction attribute)": [[5, "owlapy.model.OWLQuantifiedRestriction.__slots__"]], "__slots__ (owlapy.model.owlreasoner attribute)": [[5, "owlapy.model.OWLReasoner.__slots__"]], "__slots__ (owlapy.model.owlrestriction attribute)": [[5, "owlapy.model.OWLRestriction.__slots__"]], "add_axiom() (owlapy.model.owlontologymanager method)": [[5, "owlapy.model.OWLOntologyManager.add_axiom"]], "annotations() (owlapy.model.owlaxiom method)": [[5, "owlapy.model.OWLAxiom.annotations"]], "apply_change() (owlapy.model.owlontologymanager method)": [[5, "owlapy.model.OWLOntologyManager.apply_change"]], "as_anonymous_individual() (owlapy.model.owlannotationobject method)": [[5, "owlapy.model.OWLAnnotationObject.as_anonymous_individual"]], "as_intersection_of_min_max() (owlapy.model.owldataexactcardinality method)": [[5, "owlapy.model.OWLDataExactCardinality.as_intersection_of_min_max"]], "as_intersection_of_min_max() (owlapy.model.owlobjectexactcardinality method)": [[5, "owlapy.model.OWLObjectExactCardinality.as_intersection_of_min_max"]], "as_iri() (owlapy.model.iri method)": [[5, "owlapy.model.IRI.as_iri"]], "as_iri() (owlapy.model.owlannotationobject method)": [[5, "owlapy.model.OWLAnnotationObject.as_iri"]], "as_literal() (owlapy.model.owlannotationvalue method)": [[5, "owlapy.model.OWLAnnotationValue.as_literal"]], "as_literal() (owlapy.model.owlliteral method)": [[5, "owlapy.model.OWLLiteral.as_literal"]], "as_some_values_from() (owlapy.model.owldatahasvalue method)": [[5, "owlapy.model.OWLDataHasValue.as_some_values_from"]], "as_str() (owlapy.model.iri method)": [[5, "owlapy.model.IRI.as_str"]], "classes_in_signature() (owlapy.model.owlontology method)": [[5, "owlapy.model.OWLOntology.classes_in_signature"]], "contains_named_equivalent_class() (owlapy.model.owlequivalentclassesaxiom method)": [[5, "owlapy.model.OWLEquivalentClassesAxiom.contains_named_equivalent_class"]], "contains_owl_nothing() (owlapy.model.owlequivalentclassesaxiom method)": [[5, "owlapy.model.OWLEquivalentClassesAxiom.contains_owl_nothing"]], "contains_owl_thing() (owlapy.model.owlequivalentclassesaxiom method)": [[5, "owlapy.model.OWLEquivalentClassesAxiom.contains_owl_thing"]], "create() (owlapy.model.iri static method)": [[5, "owlapy.model.IRI.create"]], "create_ontology() (owlapy.model.owlontologymanager method)": [[5, "owlapy.model.OWLOntologyManager.create_ontology"]], "data_properties_in_signature() (owlapy.model.owlontology method)": [[5, "owlapy.model.OWLOntology.data_properties_in_signature"]], "data_property_domain_axioms() (owlapy.model.owlontology method)": [[5, "owlapy.model.OWLOntology.data_property_domain_axioms"]], "data_property_domains() (owlapy.model.owlreasoner method)": [[5, "owlapy.model.OWLReasoner.data_property_domains"]], "data_property_range_axioms() (owlapy.model.owlontology method)": [[5, "owlapy.model.OWLOntology.data_property_range_axioms"]], "data_property_values() (owlapy.model.owlreasoner method)": [[5, "owlapy.model.OWLReasoner.data_property_values"]], "different_individuals() (owlapy.model.owlreasoner method)": [[5, "owlapy.model.OWLReasoner.different_individuals"]], "disjoint_classes() (owlapy.model.owlreasoner method)": [[5, "owlapy.model.OWLReasoner.disjoint_classes"]], "disjoint_data_properties() (owlapy.model.owlreasoner method)": [[5, "owlapy.model.OWLReasoner.disjoint_data_properties"]], "disjoint_object_properties() (owlapy.model.owlreasoner method)": [[5, "owlapy.model.OWLReasoner.disjoint_object_properties"]], "equivalent_classes() (owlapy.model.owlreasoner method)": [[5, "owlapy.model.OWLReasoner.equivalent_classes"]], "equivalent_classes_axioms() (owlapy.model.owlontology method)": [[5, "owlapy.model.OWLOntology.equivalent_classes_axioms"]], "equivalent_data_properties() (owlapy.model.owlreasoner method)": [[5, "owlapy.model.OWLReasoner.equivalent_data_properties"]], "equivalent_object_properties() (owlapy.model.owlreasoner method)": [[5, "owlapy.model.OWLReasoner.equivalent_object_properties"]], "flush() (owlapy.model.owlreasoner method)": [[5, "owlapy.model.OWLReasoner.flush"]], "from_str() (owlapy.model.owlfacet static method)": [[5, "owlapy.model.OWLFacet.from_str"]], "general_class_axioms() (owlapy.model.owlontology method)": [[5, "owlapy.model.OWLOntology.general_class_axioms"]], "get_cardinality() (owlapy.model.hascardinality method)": [[5, "owlapy.model.HasCardinality.get_cardinality"]], "get_cardinality() (owlapy.model.owlcardinalityrestriction method)": [[5, "owlapy.model.OWLCardinalityRestriction.get_cardinality"]], "get_datatype() (owlapy.model.owlliteral method)": [[5, "owlapy.model.OWLLiteral.get_datatype"]], "get_default_document_iri() (owlapy.model.owlontologyid method)": [[5, "owlapy.model.OWLOntologyID.get_default_document_iri"]], "get_filler() (owlapy.model.hasfiller method)": [[5, "owlapy.model.HasFiller.get_filler"]], "get_filler() (owlapy.model.owlcardinalityrestriction method)": [[5, "owlapy.model.OWLCardinalityRestriction.get_filler"]], "get_filler() (owlapy.model.owlhasvaluerestriction method)": [[5, "owlapy.model.OWLHasValueRestriction.get_filler"]], "get_filler() (owlapy.model.owlquantifieddatarestriction method)": [[5, "owlapy.model.OWLQuantifiedDataRestriction.get_filler"]], "get_filler() (owlapy.model.owlquantifiedobjectrestriction method)": [[5, "owlapy.model.OWLQuantifiedObjectRestriction.get_filler"]], "get_import_declaration() (owlapy.model.addimport method)": [[5, "owlapy.model.AddImport.get_import_declaration"]], "get_inverse_property() (owlapy.model.owlobjectproperty method)": [[5, "owlapy.model.OWLObjectProperty.get_inverse_property"]], "get_inverse_property() (owlapy.model.owlobjectpropertyexpression method)": [[5, "owlapy.model.OWLObjectPropertyExpression.get_inverse_property"]], "get_iri() (owlapy.model.hasiri method)": [[5, "owlapy.model.HasIRI.get_iri"]], "get_iri() (owlapy.model.owlclass method)": [[5, "owlapy.model.OWLClass.get_iri"]], "get_iri() (owlapy.model.owldataproperty method)": [[5, "owlapy.model.OWLDataProperty.get_iri"]], "get_iri() (owlapy.model.owldatatype method)": [[5, "owlapy.model.OWLDatatype.get_iri"]], "get_iri() (owlapy.model.owlimportsdeclaration method)": [[5, "owlapy.model.OWLImportsDeclaration.get_iri"]], "get_iri() (owlapy.model.owlnamedindividual method)": [[5, "owlapy.model.OWLNamedIndividual.get_iri"]], "get_iri() (owlapy.model.owlobjectproperty method)": [[5, "owlapy.model.OWLObjectProperty.get_iri"]], "get_literal() (owlapy.model.owlliteral method)": [[5, "owlapy.model.OWLLiteral.get_literal"]], "get_named_property() (owlapy.model.owlobjectproperty method)": [[5, "owlapy.model.OWLObjectProperty.get_named_property"]], "get_named_property() (owlapy.model.owlobjectpropertyexpression method)": [[5, "owlapy.model.OWLObjectPropertyExpression.get_named_property"]], "get_namespace() (owlapy.model.iri method)": [[5, "owlapy.model.IRI.get_namespace"]], "get_nnf() (owlapy.model.owlanonymousclassexpression method)": [[5, "owlapy.model.OWLAnonymousClassExpression.get_nnf"]], "get_nnf() (owlapy.model.owlclass method)": [[5, "owlapy.model.OWLClass.get_nnf"]], "get_nnf() (owlapy.model.owlclassexpression method)": [[5, "owlapy.model.OWLClassExpression.get_nnf"]], "get_object_complement_of() (owlapy.model.owlanonymousclassexpression method)": [[5, "owlapy.model.OWLAnonymousClassExpression.get_object_complement_of"]], "get_object_complement_of() (owlapy.model.owlclass method)": [[5, "owlapy.model.OWLClass.get_object_complement_of"]], "get_object_complement_of() (owlapy.model.owlclassexpression method)": [[5, "owlapy.model.OWLClassExpression.get_object_complement_of"]], "get_ontology() (owlapy.model.owlontologychange method)": [[5, "owlapy.model.OWLOntologyChange.get_ontology"]], "get_ontology_id() (owlapy.model.owlontology method)": [[5, "owlapy.model.OWLOntology.get_ontology_id"]], "get_ontology_iri() (owlapy.model.owlontologyid method)": [[5, "owlapy.model.OWLOntologyID.get_ontology_iri"]], "get_operand() (owlapy.model.owlobjectcomplementof method)": [[5, "owlapy.model.OWLObjectComplementOf.get_operand"]], "get_owl_ontology_manager() (owlapy.model.owlontology method)": [[5, "owlapy.model.OWLOntology.get_owl_ontology_manager"]], "get_property() (owlapy.model.owldataallvaluesfrom method)": [[5, "owlapy.model.OWLDataAllValuesFrom.get_property"]], "get_property() (owlapy.model.owldatacardinalityrestriction method)": [[5, "owlapy.model.OWLDataCardinalityRestriction.get_property"]], "get_property() (owlapy.model.owldatahasvalue method)": [[5, "owlapy.model.OWLDataHasValue.get_property"]], "get_property() (owlapy.model.owldatasomevaluesfrom method)": [[5, "owlapy.model.OWLDataSomeValuesFrom.get_property"]], "get_property() (owlapy.model.owlobjectallvaluesfrom method)": [[5, "owlapy.model.OWLObjectAllValuesFrom.get_property"]], "get_property() (owlapy.model.owlobjectcardinalityrestriction method)": [[5, "owlapy.model.OWLObjectCardinalityRestriction.get_property"]], "get_property() (owlapy.model.owlobjecthasself method)": [[5, "owlapy.model.OWLObjectHasSelf.get_property"]], "get_property() (owlapy.model.owlobjectrestriction method)": [[5, "owlapy.model.OWLObjectRestriction.get_property"]], "get_property() (owlapy.model.owlobjectsomevaluesfrom method)": [[5, "owlapy.model.OWLObjectSomeValuesFrom.get_property"]], "get_property() (owlapy.model.owlrestriction method)": [[5, "owlapy.model.OWLRestriction.get_property"]], "get_remainder() (owlapy.model.iri method)": [[5, "owlapy.model.IRI.get_remainder"]], "get_root_ontology() (owlapy.model.owlreasoner method)": [[5, "owlapy.model.OWLReasoner.get_root_ontology"]], "get_short_form() (owlapy.model.iri method)": [[5, "owlapy.model.IRI.get_short_form"]], "get_version_iri() (owlapy.model.owlontologyid method)": [[5, "owlapy.model.OWLOntologyID.get_version_iri"]], "individuals_in_signature() (owlapy.model.owlontology method)": [[5, "owlapy.model.OWLOntology.individuals_in_signature"]], "instances() (owlapy.model.owlreasoner method)": [[5, "owlapy.model.OWLReasoner.instances"]], "iri (owlapy.model.owlnamedindividual property)": [[5, "owlapy.model.OWLNamedIndividual.iri"]], "iri (owlapy.model.owlobjectproperty property)": [[5, "owlapy.model.OWLObjectProperty.iri"]], "is_annotated() (owlapy.model.owlaxiom method)": [[5, "owlapy.model.OWLAxiom.is_annotated"]], "is_annotation_axiom() (owlapy.model.owlaxiom method)": [[5, "owlapy.model.OWLAxiom.is_annotation_axiom"]], "is_anonymous() (owlapy.model.owlentity method)": [[5, "owlapy.model.OWLEntity.is_anonymous"]], "is_anonymous() (owlapy.model.owlobject method)": [[5, "owlapy.model.OWLObject.is_anonymous"]], "is_anonymous() (owlapy.model.owlontology method)": [[5, "owlapy.model.OWLOntology.is_anonymous"]], "is_anonymous() (owlapy.model.owlontologyid method)": [[5, "owlapy.model.OWLOntologyID.is_anonymous"]], "is_boolean() (owlapy.model.owlliteral method)": [[5, "owlapy.model.OWLLiteral.is_boolean"]], "is_data_property_expression() (owlapy.model.owldatapropertyexpression method)": [[5, "owlapy.model.OWLDataPropertyExpression.is_data_property_expression"]], "is_data_property_expression() (owlapy.model.owlpropertyexpression method)": [[5, "owlapy.model.OWLPropertyExpression.is_data_property_expression"]], "is_data_restriction() (owlapy.model.owldatarestriction method)": [[5, "owlapy.model.OWLDataRestriction.is_data_restriction"]], "is_data_restriction() (owlapy.model.owlrestriction method)": [[5, "owlapy.model.OWLRestriction.is_data_restriction"]], "is_date() (owlapy.model.owlliteral method)": [[5, "owlapy.model.OWLLiteral.is_date"]], "is_datetime() (owlapy.model.owlliteral method)": [[5, "owlapy.model.OWLLiteral.is_datetime"]], "is_double() (owlapy.model.owlliteral method)": [[5, "owlapy.model.OWLLiteral.is_double"]], "is_duration() (owlapy.model.owlliteral method)": [[5, "owlapy.model.OWLLiteral.is_duration"]], "is_integer() (owlapy.model.owlliteral method)": [[5, "owlapy.model.OWLLiteral.is_integer"]], "is_isolated() (owlapy.model.owlreasoner method)": [[5, "owlapy.model.OWLReasoner.is_isolated"]], "is_literal() (owlapy.model.owlannotationvalue method)": [[5, "owlapy.model.OWLAnnotationValue.is_literal"]], "is_literal() (owlapy.model.owlliteral method)": [[5, "owlapy.model.OWLLiteral.is_literal"]], "is_logical_axiom() (owlapy.model.owlaxiom method)": [[5, "owlapy.model.OWLAxiom.is_logical_axiom"]], "is_nothing() (owlapy.model.iri method)": [[5, "owlapy.model.IRI.is_nothing"]], "is_object_property_expression() (owlapy.model.owlobjectpropertyexpression method)": [[5, "owlapy.model.OWLObjectPropertyExpression.is_object_property_expression"]], "is_object_property_expression() (owlapy.model.owlpropertyexpression method)": [[5, "owlapy.model.OWLPropertyExpression.is_object_property_expression"]], "is_object_restriction() (owlapy.model.owlobjectrestriction method)": [[5, "owlapy.model.OWLObjectRestriction.is_object_restriction"]], "is_object_restriction() (owlapy.model.owlrestriction method)": [[5, "owlapy.model.OWLRestriction.is_object_restriction"]], "is_owl_nothing() (owlapy.model.owlanonymousclassexpression method)": [[5, "owlapy.model.OWLAnonymousClassExpression.is_owl_nothing"]], "is_owl_nothing() (owlapy.model.owlclass method)": [[5, "owlapy.model.OWLClass.is_owl_nothing"]], "is_owl_nothing() (owlapy.model.owlclassexpression method)": [[5, "owlapy.model.OWLClassExpression.is_owl_nothing"]], "is_owl_thing() (owlapy.model.owlanonymousclassexpression method)": [[5, "owlapy.model.OWLAnonymousClassExpression.is_owl_thing"]], "is_owl_thing() (owlapy.model.owlclass method)": [[5, "owlapy.model.OWLClass.is_owl_thing"]], "is_owl_thing() (owlapy.model.owlclassexpression method)": [[5, "owlapy.model.OWLClassExpression.is_owl_thing"]], "is_owl_top_data_property() (owlapy.model.owldataproperty method)": [[5, "owlapy.model.OWLDataProperty.is_owl_top_data_property"]], "is_owl_top_data_property() (owlapy.model.owlpropertyexpression method)": [[5, "owlapy.model.OWLPropertyExpression.is_owl_top_data_property"]], "is_owl_top_object_property() (owlapy.model.owlobjectproperty method)": [[5, "owlapy.model.OWLObjectProperty.is_owl_top_object_property"]], "is_owl_top_object_property() (owlapy.model.owlpropertyexpression method)": [[5, "owlapy.model.OWLPropertyExpression.is_owl_top_object_property"]], "is_reserved_vocabulary() (owlapy.model.iri method)": [[5, "owlapy.model.IRI.is_reserved_vocabulary"]], "is_string() (owlapy.model.owlliteral method)": [[5, "owlapy.model.OWLLiteral.is_string"]], "is_thing() (owlapy.model.iri method)": [[5, "owlapy.model.IRI.is_thing"]], "is_using_triplestore() (owlapy.model.owlreasoner method)": [[5, "owlapy.model.OWLReasoner.is_using_triplestore"]], "load_ontology() (owlapy.model.owlontologymanager method)": [[5, "owlapy.model.OWLOntologyManager.load_ontology"]], "named_classes() (owlapy.model.owlequivalentclassesaxiom method)": [[5, "owlapy.model.OWLEquivalentClassesAxiom.named_classes"]], "object_properties_in_signature() (owlapy.model.owlontology method)": [[5, "owlapy.model.OWLOntology.object_properties_in_signature"]], "object_property_domain_axioms() (owlapy.model.owlontology method)": [[5, "owlapy.model.OWLOntology.object_property_domain_axioms"]], "object_property_domains() (owlapy.model.owlreasoner method)": [[5, "owlapy.model.OWLReasoner.object_property_domains"]], "object_property_range_axioms() (owlapy.model.owlontology method)": [[5, "owlapy.model.OWLOntology.object_property_range_axioms"]], "object_property_ranges() (owlapy.model.owlreasoner method)": [[5, "owlapy.model.OWLReasoner.object_property_ranges"]], "object_property_values() (owlapy.model.owlreasoner method)": [[5, "owlapy.model.OWLReasoner.object_property_values"]], "operands() (owlapy.model.hasoperands method)": [[5, "owlapy.model.HasOperands.operands"]], "operands() (owlapy.model.owldataoneof method)": [[5, "owlapy.model.OWLDataOneOf.operands"]], "operands() (owlapy.model.owlnarybooleanclassexpression method)": [[5, "owlapy.model.OWLNaryBooleanClassExpression.operands"]], "operands() (owlapy.model.owlobjectcomplementof method)": [[5, "owlapy.model.OWLObjectComplementOf.operands"]], "operator (owlapy.model.owlfacet property)": [[5, "owlapy.model.OWLFacet.operator"]], "owlapy.model": [[5, "module-owlapy.model"]], "parse_boolean() (owlapy.model.owlliteral method)": [[5, "owlapy.model.OWLLiteral.parse_boolean"]], "parse_date() (owlapy.model.owlliteral method)": [[5, "owlapy.model.OWLLiteral.parse_date"]], "parse_datetime() (owlapy.model.owlliteral method)": [[5, "owlapy.model.OWLLiteral.parse_datetime"]], "parse_double() (owlapy.model.owlliteral method)": [[5, "owlapy.model.OWLLiteral.parse_double"]], "parse_duration() (owlapy.model.owlliteral method)": [[5, "owlapy.model.OWLLiteral.parse_duration"]], "parse_integer() (owlapy.model.owlliteral method)": [[5, "owlapy.model.OWLLiteral.parse_integer"]], "parse_string() (owlapy.model.owlliteral method)": [[5, "owlapy.model.OWLLiteral.parse_string"]], "reminder (owlapy.model.iri property)": [[5, "owlapy.model.IRI.reminder"]], "reminder (owlapy.model.owlclass property)": [[5, "owlapy.model.OWLClass.reminder"]], "remove_axiom() (owlapy.model.owlontologymanager method)": [[5, "owlapy.model.OWLOntologyManager.remove_axiom"]], "same_individuals() (owlapy.model.owlreasoner method)": [[5, "owlapy.model.OWLReasoner.same_individuals"]], "save_ontology() (owlapy.model.owlontologymanager method)": [[5, "owlapy.model.OWLOntologyManager.save_ontology"]], "str (owlapy.model.iri property)": [[5, "owlapy.model.IRI.str"]], "str (owlapy.model.owlclass property)": [[5, "owlapy.model.OWLClass.str"]], "str (owlapy.model.owlnamedindividual property)": [[5, "owlapy.model.OWLNamedIndividual.str"]], "str (owlapy.model.owlobjectproperty property)": [[5, "owlapy.model.OWLObjectProperty.str"]], "sub_classes() (owlapy.model.owlreasoner method)": [[5, "owlapy.model.OWLReasoner.sub_classes"]], "sub_data_properties() (owlapy.model.owlreasoner method)": [[5, "owlapy.model.OWLReasoner.sub_data_properties"]], "sub_object_properties() (owlapy.model.owlreasoner method)": [[5, "owlapy.model.OWLReasoner.sub_object_properties"]], "super_classes() (owlapy.model.owlreasoner method)": [[5, "owlapy.model.OWLReasoner.super_classes"]], "super_data_properties() (owlapy.model.owlreasoner method)": [[5, "owlapy.model.OWLReasoner.super_data_properties"]], "super_object_properties() (owlapy.model.owlreasoner method)": [[5, "owlapy.model.OWLReasoner.super_object_properties"]], "symbolic_form (owlapy.model.owlfacet property)": [[5, "owlapy.model.OWLFacet.symbolic_form"]], "to_python() (owlapy.model.owlliteral method)": [[5, "owlapy.model.OWLLiteral.to_python"]], "to_string_id() (owlapy.model.owlentity method)": [[5, "owlapy.model.OWLEntity.to_string_id"]], "type_index (owlapy.model.hasindex attribute)": [[5, "owlapy.model.HasIndex.type_index"]], "type_index (owlapy.model.iri attribute)": [[5, "owlapy.model.IRI.type_index"]], "type_index (owlapy.model.owlclass attribute)": [[5, "owlapy.model.OWLClass.type_index"]], "type_index (owlapy.model.owldataallvaluesfrom attribute)": [[5, "owlapy.model.OWLDataAllValuesFrom.type_index"]], "type_index (owlapy.model.owldataexactcardinality attribute)": [[5, "owlapy.model.OWLDataExactCardinality.type_index"]], "type_index (owlapy.model.owldatahasvalue attribute)": [[5, "owlapy.model.OWLDataHasValue.type_index"]], "type_index (owlapy.model.owldatamaxcardinality attribute)": [[5, "owlapy.model.OWLDataMaxCardinality.type_index"]], "type_index (owlapy.model.owldatamincardinality attribute)": [[5, "owlapy.model.OWLDataMinCardinality.type_index"]], "type_index (owlapy.model.owldataoneof attribute)": [[5, "owlapy.model.OWLDataOneOf.type_index"]], "type_index (owlapy.model.owldataproperty attribute)": [[5, "owlapy.model.OWLDataProperty.type_index"]], "type_index (owlapy.model.owldatasomevaluesfrom attribute)": [[5, "owlapy.model.OWLDataSomeValuesFrom.type_index"]], "type_index (owlapy.model.owldatatype attribute)": [[5, "owlapy.model.OWLDatatype.type_index"]], "type_index (owlapy.model.owlliteral attribute)": [[5, "owlapy.model.OWLLiteral.type_index"]], "type_index (owlapy.model.owlnamedindividual attribute)": [[5, "owlapy.model.OWLNamedIndividual.type_index"]], "type_index (owlapy.model.owlobjectallvaluesfrom attribute)": [[5, "owlapy.model.OWLObjectAllValuesFrom.type_index"]], "type_index (owlapy.model.owlobjectcomplementof attribute)": [[5, "owlapy.model.OWLObjectComplementOf.type_index"]], "type_index (owlapy.model.owlobjectexactcardinality attribute)": [[5, "owlapy.model.OWLObjectExactCardinality.type_index"]], "type_index (owlapy.model.owlobjecthasself attribute)": [[5, "owlapy.model.OWLObjectHasSelf.type_index"]], "type_index (owlapy.model.owlobjectintersectionof attribute)": [[5, "owlapy.model.OWLObjectIntersectionOf.type_index"]], "type_index (owlapy.model.owlobjectmaxcardinality attribute)": [[5, "owlapy.model.OWLObjectMaxCardinality.type_index"]], "type_index (owlapy.model.owlobjectmincardinality attribute)": [[5, "owlapy.model.OWLObjectMinCardinality.type_index"]], "type_index (owlapy.model.owlobjectproperty attribute)": [[5, "owlapy.model.OWLObjectProperty.type_index"]], "type_index (owlapy.model.owlobjectsomevaluesfrom attribute)": [[5, "owlapy.model.OWLObjectSomeValuesFrom.type_index"]], "type_index (owlapy.model.owlobjectunionof attribute)": [[5, "owlapy.model.OWLObjectUnionOf.type_index"]], "type_index (owlapy.model.owlontology attribute)": [[5, "owlapy.model.OWLOntology.type_index"]], "types() (owlapy.model.owlreasoner method)": [[5, "owlapy.model.OWLReasoner.types"]], "values() (owlapy.model.owldataoneof method)": [[5, "owlapy.model.OWLDataOneOf.values"]], "owldatatypemaxexclusiverestriction() (in module owlapy.model.providers)": [[6, "owlapy.model.providers.OWLDatatypeMaxExclusiveRestriction"]], "owldatatypemaxinclusiverestriction() (in module owlapy.model.providers)": [[6, "owlapy.model.providers.OWLDatatypeMaxInclusiveRestriction"]], "owldatatypeminexclusiverestriction() (in module owlapy.model.providers)": [[6, "owlapy.model.providers.OWLDatatypeMinExclusiveRestriction"]], "owldatatypemininclusiverestriction() (in module owlapy.model.providers)": [[6, "owlapy.model.providers.OWLDatatypeMinInclusiveRestriction"]], "owldatatypeminmaxexclusiverestriction() (in module owlapy.model.providers)": [[6, "owlapy.model.providers.OWLDatatypeMinMaxExclusiveRestriction"]], "owldatatypeminmaxinclusiverestriction() (in module owlapy.model.providers)": [[6, "owlapy.model.providers.OWLDatatypeMinMaxInclusiveRestriction"]], "restriction_literals (in module owlapy.model.providers)": [[6, "owlapy.model.providers.Restriction_Literals"]], "owlapy.model.providers": [[6, "module-owlapy.model.providers"]], "namespaces (class in owlapy.namespaces)": [[7, "owlapy.namespaces.Namespaces"]], "owl (in module owlapy.namespaces)": [[7, "owlapy.namespaces.OWL"]], "rdf (in module owlapy.namespaces)": [[7, "owlapy.namespaces.RDF"]], "rdfs (in module owlapy.namespaces)": [[7, "owlapy.namespaces.RDFS"]], "xsd (in module owlapy.namespaces)": [[7, "owlapy.namespaces.XSD"]], "__eq__() (owlapy.namespaces.namespaces method)": [[7, "owlapy.namespaces.Namespaces.__eq__"]], "__hash__() (owlapy.namespaces.namespaces method)": [[7, "owlapy.namespaces.Namespaces.__hash__"]], "__repr__() (owlapy.namespaces.namespaces method)": [[7, "owlapy.namespaces.Namespaces.__repr__"]], "__slots__ (owlapy.namespaces.namespaces attribute)": [[7, "owlapy.namespaces.Namespaces.__slots__"]], "ns (owlapy.namespaces.namespaces property)": [[7, "owlapy.namespaces.Namespaces.ns"]], "owlapy.namespaces": [[7, "module-owlapy.namespaces"]], "prefix (owlapy.namespaces.namespaces property)": [[7, "owlapy.namespaces.Namespaces.prefix"]], "owl2sparqlconverter (class in owlapy.owl2sparql.converter)": [[8, "owlapy.owl2sparql.converter.Owl2SparqlConverter"]], "variablesmapping (class in owlapy.owl2sparql.converter)": [[8, "owlapy.owl2sparql.converter.VariablesMapping"]], "__contains__() (owlapy.owl2sparql.converter.variablesmapping method)": [[8, "owlapy.owl2sparql.converter.VariablesMapping.__contains__"]], "__getitem__() (owlapy.owl2sparql.converter.variablesmapping method)": [[8, "owlapy.owl2sparql.converter.VariablesMapping.__getitem__"]], "__slots__ (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[8, "owlapy.owl2sparql.converter.Owl2SparqlConverter.__slots__"]], "__slots__ (owlapy.owl2sparql.converter.variablesmapping attribute)": [[8, "owlapy.owl2sparql.converter.VariablesMapping.__slots__"]], "append() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[8, "owlapy.owl2sparql.converter.Owl2SparqlConverter.append"]], "append_triple() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[8, "owlapy.owl2sparql.converter.Owl2SparqlConverter.append_triple"]], "as_query() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[8, "owlapy.owl2sparql.converter.Owl2SparqlConverter.as_query"]], "ce (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[8, "owlapy.owl2sparql.converter.Owl2SparqlConverter.ce"]], "cnt (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[8, "owlapy.owl2sparql.converter.Owl2SparqlConverter.cnt"]], "convert() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[8, "owlapy.owl2sparql.converter.Owl2SparqlConverter.convert"]], "converter (in module owlapy.owl2sparql.converter)": [[8, "owlapy.owl2sparql.converter.converter"]], "current_variable (owlapy.owl2sparql.converter.owl2sparqlconverter property)": [[8, "owlapy.owl2sparql.converter.Owl2SparqlConverter.current_variable"]], "get_variable() (owlapy.owl2sparql.converter.variablesmapping method)": [[8, "owlapy.owl2sparql.converter.VariablesMapping.get_variable"]], "grouping_vars (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[8, "owlapy.owl2sparql.converter.Owl2SparqlConverter.grouping_vars"]], "having_conditions (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[8, "owlapy.owl2sparql.converter.Owl2SparqlConverter.having_conditions"]], "mapping (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[8, "owlapy.owl2sparql.converter.Owl2SparqlConverter.mapping"]], "modal_depth (owlapy.owl2sparql.converter.owl2sparqlconverter property)": [[8, "owlapy.owl2sparql.converter.Owl2SparqlConverter.modal_depth"]], "new_count_var() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[8, "owlapy.owl2sparql.converter.Owl2SparqlConverter.new_count_var"]], "new_individual_variable() (owlapy.owl2sparql.converter.variablesmapping method)": [[8, "owlapy.owl2sparql.converter.VariablesMapping.new_individual_variable"]], "new_property_variable() (owlapy.owl2sparql.converter.variablesmapping method)": [[8, "owlapy.owl2sparql.converter.VariablesMapping.new_property_variable"]], "owl_expression_to_sparql() (in module owlapy.owl2sparql.converter)": [[8, "owlapy.owl2sparql.converter.owl_expression_to_sparql"]], "owlapy.owl2sparql.converter": [[8, "module-owlapy.owl2sparql.converter"]], "parent (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[8, "owlapy.owl2sparql.converter.Owl2SparqlConverter.parent"]], "parent_var (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[8, "owlapy.owl2sparql.converter.Owl2SparqlConverter.parent_var"]], "peek() (in module owlapy.owl2sparql.converter)": [[8, "owlapy.owl2sparql.converter.peek"]], "process() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[8, "owlapy.owl2sparql.converter.Owl2SparqlConverter.process"]], "properties (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[8, "owlapy.owl2sparql.converter.Owl2SparqlConverter.properties"]], "render() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[8, "owlapy.owl2sparql.converter.Owl2SparqlConverter.render"]], "sparql (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[8, "owlapy.owl2sparql.converter.Owl2SparqlConverter.sparql"]], "stack_parent() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[8, "owlapy.owl2sparql.converter.Owl2SparqlConverter.stack_parent"]], "stack_variable() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[8, "owlapy.owl2sparql.converter.Owl2SparqlConverter.stack_variable"]], "triple() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[8, "owlapy.owl2sparql.converter.Owl2SparqlConverter.triple"]], "variable_entities (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[8, "owlapy.owl2sparql.converter.Owl2SparqlConverter.variable_entities"]], "variables (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[8, "owlapy.owl2sparql.converter.Owl2SparqlConverter.variables"]], "owlapy.owl2sparql": [[9, "module-owlapy.owl2sparql"]], "owlannotationobject (class in owlapy.owl_annotation)": [[10, "owlapy.owl_annotation.OWLAnnotationObject"]], "owlannotationsubject (class in owlapy.owl_annotation)": [[10, "owlapy.owl_annotation.OWLAnnotationSubject"]], "owlannotationvalue (class in owlapy.owl_annotation)": [[10, "owlapy.owl_annotation.OWLAnnotationValue"]], "__slots__ (owlapy.owl_annotation.owlannotationobject attribute)": [[10, "owlapy.owl_annotation.OWLAnnotationObject.__slots__"]], "__slots__ (owlapy.owl_annotation.owlannotationsubject attribute)": [[10, "owlapy.owl_annotation.OWLAnnotationSubject.__slots__"]], "__slots__ (owlapy.owl_annotation.owlannotationvalue attribute)": [[10, "owlapy.owl_annotation.OWLAnnotationValue.__slots__"]], "as_anonymous_individual() (owlapy.owl_annotation.owlannotationobject method)": [[10, "owlapy.owl_annotation.OWLAnnotationObject.as_anonymous_individual"]], "as_iri() (owlapy.owl_annotation.owlannotationobject method)": [[10, "owlapy.owl_annotation.OWLAnnotationObject.as_iri"]], "as_literal() (owlapy.owl_annotation.owlannotationvalue method)": [[10, "owlapy.owl_annotation.OWLAnnotationValue.as_literal"]], "is_literal() (owlapy.owl_annotation.owlannotationvalue method)": [[10, "owlapy.owl_annotation.OWLAnnotationValue.is_literal"]], "owlapy.owl_annotation": [[10, "module-owlapy.owl_annotation"]], "owlannotation (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLAnnotation"]], "owlannotationassertionaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom"]], "owlannotationaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLAnnotationAxiom"]], "owlannotationproperty (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLAnnotationProperty"]], "owlannotationpropertydomainaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom"]], "owlannotationpropertyrangeaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom"]], "owlasymmetricobjectpropertyaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLAsymmetricObjectPropertyAxiom"]], "owlaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLAxiom"]], "owlclassassertionaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLClassAssertionAxiom"]], "owlclassaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLClassAxiom"]], "owldatapropertyassertionaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLDataPropertyAssertionAxiom"]], "owldatapropertyaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLDataPropertyAxiom"]], "owldatapropertycharacteristicaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom"]], "owldatapropertydomainaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLDataPropertyDomainAxiom"]], "owldatapropertyrangeaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLDataPropertyRangeAxiom"]], "owldatatypedefinitionaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom"]], "owldeclarationaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLDeclarationAxiom"]], "owldifferentindividualsaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLDifferentIndividualsAxiom"]], "owldisjointclassesaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLDisjointClassesAxiom"]], "owldisjointdatapropertiesaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLDisjointDataPropertiesAxiom"]], "owldisjointobjectpropertiesaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLDisjointObjectPropertiesAxiom"]], "owldisjointunionaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLDisjointUnionAxiom"]], "owlequivalentclassesaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLEquivalentClassesAxiom"]], "owlequivalentdatapropertiesaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLEquivalentDataPropertiesAxiom"]], "owlequivalentobjectpropertiesaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLEquivalentObjectPropertiesAxiom"]], "owlfunctionaldatapropertyaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLFunctionalDataPropertyAxiom"]], "owlfunctionalobjectpropertyaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLFunctionalObjectPropertyAxiom"]], "owlhaskeyaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLHasKeyAxiom"]], "owlindividualaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLIndividualAxiom"]], "owlinversefunctionalobjectpropertyaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLInverseFunctionalObjectPropertyAxiom"]], "owlinverseobjectpropertiesaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom"]], "owlirreflexiveobjectpropertyaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLIrreflexiveObjectPropertyAxiom"]], "owllogicalaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLLogicalAxiom"]], "owlnaryaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLNaryAxiom"]], "owlnaryclassaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLNaryClassAxiom"]], "owlnaryindividualaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLNaryIndividualAxiom"]], "owlnarypropertyaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLNaryPropertyAxiom"]], "owlnegativedatapropertyassertionaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLNegativeDataPropertyAssertionAxiom"]], "owlnegativeobjectpropertyassertionaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLNegativeObjectPropertyAssertionAxiom"]], "owlobjectpropertyassertionaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLObjectPropertyAssertionAxiom"]], "owlobjectpropertyaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLObjectPropertyAxiom"]], "owlobjectpropertycharacteristicaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom"]], "owlobjectpropertydomainaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLObjectPropertyDomainAxiom"]], "owlobjectpropertyrangeaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLObjectPropertyRangeAxiom"]], "owlpropertyassertionaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLPropertyAssertionAxiom"]], "owlpropertyaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLPropertyAxiom"]], "owlpropertydomainaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLPropertyDomainAxiom"]], "owlpropertyrangeaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLPropertyRangeAxiom"]], "owlreflexiveobjectpropertyaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLReflexiveObjectPropertyAxiom"]], "owlsameindividualaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLSameIndividualAxiom"]], "owlsubannotationpropertyofaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom"]], "owlsubclassofaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLSubClassOfAxiom"]], "owlsubdatapropertyofaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLSubDataPropertyOfAxiom"]], "owlsubobjectpropertyofaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLSubObjectPropertyOfAxiom"]], "owlsubpropertyaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLSubPropertyAxiom"]], "owlsymmetricobjectpropertyaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLSymmetricObjectPropertyAxiom"]], "owltransitiveobjectpropertyaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLTransitiveObjectPropertyAxiom"]], "owlunarypropertyaxiom (class in owlapy.owl_axiom)": [[11, "owlapy.owl_axiom.OWLUnaryPropertyAxiom"]], "__eq__() (owlapy.owl_axiom.owlannotation method)": [[11, "owlapy.owl_axiom.OWLAnnotation.__eq__"]], "__eq__() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[11, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[11, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[11, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[11, "owlapy.owl_axiom.OWLClassAssertionAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owldatapropertycharacteristicaxiom method)": [[11, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[11, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owldeclarationaxiom method)": [[11, "owlapy.owl_axiom.OWLDeclarationAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[11, "owlapy.owl_axiom.OWLDisjointUnionAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[11, "owlapy.owl_axiom.OWLHasKeyAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[11, "owlapy.owl_axiom.OWLNaryClassAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[11, "owlapy.owl_axiom.OWLNaryIndividualAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[11, "owlapy.owl_axiom.OWLNaryPropertyAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlobjectpropertycharacteristicaxiom method)": [[11, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[11, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlpropertydomainaxiom method)": [[11, "owlapy.owl_axiom.OWLPropertyDomainAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlpropertyrangeaxiom method)": [[11, "owlapy.owl_axiom.OWLPropertyRangeAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[11, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[11, "owlapy.owl_axiom.OWLSubClassOfAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[11, "owlapy.owl_axiom.OWLSubPropertyAxiom.__eq__"]], "__hash__() (owlapy.owl_axiom.owlannotation method)": [[11, "owlapy.owl_axiom.OWLAnnotation.__hash__"]], "__hash__() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[11, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[11, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[11, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[11, "owlapy.owl_axiom.OWLClassAssertionAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owldatapropertycharacteristicaxiom method)": [[11, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[11, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owldeclarationaxiom method)": [[11, "owlapy.owl_axiom.OWLDeclarationAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[11, "owlapy.owl_axiom.OWLDisjointUnionAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[11, "owlapy.owl_axiom.OWLHasKeyAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[11, "owlapy.owl_axiom.OWLNaryClassAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[11, "owlapy.owl_axiom.OWLNaryIndividualAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[11, "owlapy.owl_axiom.OWLNaryPropertyAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlobjectpropertycharacteristicaxiom method)": [[11, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[11, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlpropertydomainaxiom method)": [[11, "owlapy.owl_axiom.OWLPropertyDomainAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlpropertyrangeaxiom method)": [[11, "owlapy.owl_axiom.OWLPropertyRangeAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[11, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[11, "owlapy.owl_axiom.OWLSubClassOfAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[11, "owlapy.owl_axiom.OWLSubPropertyAxiom.__hash__"]], "__repr__() (owlapy.owl_axiom.owlannotation method)": [[11, "owlapy.owl_axiom.OWLAnnotation.__repr__"]], "__repr__() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[11, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[11, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[11, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[11, "owlapy.owl_axiom.OWLClassAssertionAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owldatapropertycharacteristicaxiom method)": [[11, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[11, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owldeclarationaxiom method)": [[11, "owlapy.owl_axiom.OWLDeclarationAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[11, "owlapy.owl_axiom.OWLDisjointUnionAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[11, "owlapy.owl_axiom.OWLHasKeyAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlinverseobjectpropertiesaxiom method)": [[11, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[11, "owlapy.owl_axiom.OWLNaryClassAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[11, "owlapy.owl_axiom.OWLNaryIndividualAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[11, "owlapy.owl_axiom.OWLNaryPropertyAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlobjectpropertycharacteristicaxiom method)": [[11, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[11, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlpropertydomainaxiom method)": [[11, "owlapy.owl_axiom.OWLPropertyDomainAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlpropertyrangeaxiom method)": [[11, "owlapy.owl_axiom.OWLPropertyRangeAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[11, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[11, "owlapy.owl_axiom.OWLSubClassOfAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[11, "owlapy.owl_axiom.OWLSubPropertyAxiom.__repr__"]], "__slots__ (owlapy.owl_axiom.owlannotation attribute)": [[11, "owlapy.owl_axiom.OWLAnnotation.__slots__"]], "__slots__ (owlapy.owl_axiom.owlannotationassertionaxiom attribute)": [[11, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlannotationaxiom attribute)": [[11, "owlapy.owl_axiom.OWLAnnotationAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlannotationproperty attribute)": [[11, "owlapy.owl_axiom.OWLAnnotationProperty.__slots__"]], "__slots__ (owlapy.owl_axiom.owlannotationpropertydomainaxiom attribute)": [[11, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlannotationpropertyrangeaxiom attribute)": [[11, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlasymmetricobjectpropertyaxiom attribute)": [[11, "owlapy.owl_axiom.OWLAsymmetricObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlaxiom attribute)": [[11, "owlapy.owl_axiom.OWLAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlclassassertionaxiom attribute)": [[11, "owlapy.owl_axiom.OWLClassAssertionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlclassaxiom attribute)": [[11, "owlapy.owl_axiom.OWLClassAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldatapropertyassertionaxiom attribute)": [[11, "owlapy.owl_axiom.OWLDataPropertyAssertionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldatapropertyaxiom attribute)": [[11, "owlapy.owl_axiom.OWLDataPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldatapropertycharacteristicaxiom attribute)": [[11, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldatapropertydomainaxiom attribute)": [[11, "owlapy.owl_axiom.OWLDataPropertyDomainAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldatapropertyrangeaxiom attribute)": [[11, "owlapy.owl_axiom.OWLDataPropertyRangeAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldatatypedefinitionaxiom attribute)": [[11, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldeclarationaxiom attribute)": [[11, "owlapy.owl_axiom.OWLDeclarationAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldifferentindividualsaxiom attribute)": [[11, "owlapy.owl_axiom.OWLDifferentIndividualsAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldisjointclassesaxiom attribute)": [[11, "owlapy.owl_axiom.OWLDisjointClassesAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldisjointdatapropertiesaxiom attribute)": [[11, "owlapy.owl_axiom.OWLDisjointDataPropertiesAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldisjointobjectpropertiesaxiom attribute)": [[11, "owlapy.owl_axiom.OWLDisjointObjectPropertiesAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldisjointunionaxiom attribute)": [[11, "owlapy.owl_axiom.OWLDisjointUnionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlequivalentclassesaxiom attribute)": [[11, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlequivalentdatapropertiesaxiom attribute)": [[11, "owlapy.owl_axiom.OWLEquivalentDataPropertiesAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlequivalentobjectpropertiesaxiom attribute)": [[11, "owlapy.owl_axiom.OWLEquivalentObjectPropertiesAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlfunctionaldatapropertyaxiom attribute)": [[11, "owlapy.owl_axiom.OWLFunctionalDataPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlfunctionalobjectpropertyaxiom attribute)": [[11, "owlapy.owl_axiom.OWLFunctionalObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlhaskeyaxiom attribute)": [[11, "owlapy.owl_axiom.OWLHasKeyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlindividualaxiom attribute)": [[11, "owlapy.owl_axiom.OWLIndividualAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlinversefunctionalobjectpropertyaxiom attribute)": [[11, "owlapy.owl_axiom.OWLInverseFunctionalObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlinverseobjectpropertiesaxiom attribute)": [[11, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlirreflexiveobjectpropertyaxiom attribute)": [[11, "owlapy.owl_axiom.OWLIrreflexiveObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owllogicalaxiom attribute)": [[11, "owlapy.owl_axiom.OWLLogicalAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlnaryaxiom attribute)": [[11, "owlapy.owl_axiom.OWLNaryAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlnaryclassaxiom attribute)": [[11, "owlapy.owl_axiom.OWLNaryClassAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlnaryindividualaxiom attribute)": [[11, "owlapy.owl_axiom.OWLNaryIndividualAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlnarypropertyaxiom attribute)": [[11, "owlapy.owl_axiom.OWLNaryPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlnegativedatapropertyassertionaxiom attribute)": [[11, "owlapy.owl_axiom.OWLNegativeDataPropertyAssertionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlnegativeobjectpropertyassertionaxiom attribute)": [[11, "owlapy.owl_axiom.OWLNegativeObjectPropertyAssertionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlobjectpropertyassertionaxiom attribute)": [[11, "owlapy.owl_axiom.OWLObjectPropertyAssertionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlobjectpropertyaxiom attribute)": [[11, "owlapy.owl_axiom.OWLObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlobjectpropertycharacteristicaxiom attribute)": [[11, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlobjectpropertydomainaxiom attribute)": [[11, "owlapy.owl_axiom.OWLObjectPropertyDomainAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlobjectpropertyrangeaxiom attribute)": [[11, "owlapy.owl_axiom.OWLObjectPropertyRangeAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlpropertyassertionaxiom attribute)": [[11, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlpropertyaxiom attribute)": [[11, "owlapy.owl_axiom.OWLPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlpropertydomainaxiom attribute)": [[11, "owlapy.owl_axiom.OWLPropertyDomainAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlpropertyrangeaxiom attribute)": [[11, "owlapy.owl_axiom.OWLPropertyRangeAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlreflexiveobjectpropertyaxiom attribute)": [[11, "owlapy.owl_axiom.OWLReflexiveObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlsameindividualaxiom attribute)": [[11, "owlapy.owl_axiom.OWLSameIndividualAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlsubannotationpropertyofaxiom attribute)": [[11, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlsubclassofaxiom attribute)": [[11, "owlapy.owl_axiom.OWLSubClassOfAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlsubdatapropertyofaxiom attribute)": [[11, "owlapy.owl_axiom.OWLSubDataPropertyOfAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlsubobjectpropertyofaxiom attribute)": [[11, "owlapy.owl_axiom.OWLSubObjectPropertyOfAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlsubpropertyaxiom attribute)": [[11, "owlapy.owl_axiom.OWLSubPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlsymmetricobjectpropertyaxiom attribute)": [[11, "owlapy.owl_axiom.OWLSymmetricObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owltransitiveobjectpropertyaxiom attribute)": [[11, "owlapy.owl_axiom.OWLTransitiveObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlunarypropertyaxiom attribute)": [[11, "owlapy.owl_axiom.OWLUnaryPropertyAxiom.__slots__"]], "annotations() (owlapy.owl_axiom.owlaxiom method)": [[11, "owlapy.owl_axiom.OWLAxiom.annotations"]], "as_pairwise_axioms() (owlapy.owl_axiom.owlnaryaxiom method)": [[11, "owlapy.owl_axiom.OWLNaryAxiom.as_pairwise_axioms"]], "as_pairwise_axioms() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[11, "owlapy.owl_axiom.OWLNaryClassAxiom.as_pairwise_axioms"]], "as_pairwise_axioms() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[11, "owlapy.owl_axiom.OWLNaryIndividualAxiom.as_pairwise_axioms"]], "as_pairwise_axioms() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[11, "owlapy.owl_axiom.OWLNaryPropertyAxiom.as_pairwise_axioms"]], "class_expressions() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[11, "owlapy.owl_axiom.OWLNaryClassAxiom.class_expressions"]], "contains_named_equivalent_class() (owlapy.owl_axiom.owlequivalentclassesaxiom method)": [[11, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.contains_named_equivalent_class"]], "contains_owl_nothing() (owlapy.owl_axiom.owlequivalentclassesaxiom method)": [[11, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.contains_owl_nothing"]], "contains_owl_thing() (owlapy.owl_axiom.owlequivalentclassesaxiom method)": [[11, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.contains_owl_thing"]], "get_class_expression() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[11, "owlapy.owl_axiom.OWLClassAssertionAxiom.get_class_expression"]], "get_class_expression() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[11, "owlapy.owl_axiom.OWLHasKeyAxiom.get_class_expression"]], "get_class_expressions() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[11, "owlapy.owl_axiom.OWLDisjointUnionAxiom.get_class_expressions"]], "get_datarange() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[11, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.get_datarange"]], "get_datatype() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[11, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.get_datatype"]], "get_domain() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[11, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.get_domain"]], "get_domain() (owlapy.owl_axiom.owlpropertydomainaxiom method)": [[11, "owlapy.owl_axiom.OWLPropertyDomainAxiom.get_domain"]], "get_entity() (owlapy.owl_axiom.owldeclarationaxiom method)": [[11, "owlapy.owl_axiom.OWLDeclarationAxiom.get_entity"]], "get_first_property() (owlapy.owl_axiom.owlinverseobjectpropertiesaxiom method)": [[11, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom.get_first_property"]], "get_individual() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[11, "owlapy.owl_axiom.OWLClassAssertionAxiom.get_individual"]], "get_iri() (owlapy.owl_axiom.owlannotationproperty method)": [[11, "owlapy.owl_axiom.OWLAnnotationProperty.get_iri"]], "get_object() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[11, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.get_object"]], "get_owl_class() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[11, "owlapy.owl_axiom.OWLDisjointUnionAxiom.get_owl_class"]], "get_owl_disjoint_classes_axiom() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[11, "owlapy.owl_axiom.OWLDisjointUnionAxiom.get_owl_disjoint_classes_axiom"]], "get_owl_equivalent_classes_axiom() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[11, "owlapy.owl_axiom.OWLDisjointUnionAxiom.get_owl_equivalent_classes_axiom"]], "get_property() (owlapy.owl_axiom.owlannotation method)": [[11, "owlapy.owl_axiom.OWLAnnotation.get_property"]], "get_property() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[11, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.get_property"]], "get_property() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[11, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.get_property"]], "get_property() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[11, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.get_property"]], "get_property() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[11, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.get_property"]], "get_property() (owlapy.owl_axiom.owlunarypropertyaxiom method)": [[11, "owlapy.owl_axiom.OWLUnaryPropertyAxiom.get_property"]], "get_property_expressions() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[11, "owlapy.owl_axiom.OWLHasKeyAxiom.get_property_expressions"]], "get_range() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[11, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.get_range"]], "get_range() (owlapy.owl_axiom.owlpropertyrangeaxiom method)": [[11, "owlapy.owl_axiom.OWLPropertyRangeAxiom.get_range"]], "get_second_property() (owlapy.owl_axiom.owlinverseobjectpropertiesaxiom method)": [[11, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom.get_second_property"]], "get_sub_class() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[11, "owlapy.owl_axiom.OWLSubClassOfAxiom.get_sub_class"]], "get_sub_property() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[11, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.get_sub_property"]], "get_sub_property() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[11, "owlapy.owl_axiom.OWLSubPropertyAxiom.get_sub_property"]], "get_subject() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[11, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.get_subject"]], "get_subject() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[11, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.get_subject"]], "get_super_class() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[11, "owlapy.owl_axiom.OWLSubClassOfAxiom.get_super_class"]], "get_super_property() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[11, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.get_super_property"]], "get_super_property() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[11, "owlapy.owl_axiom.OWLSubPropertyAxiom.get_super_property"]], "get_value() (owlapy.owl_axiom.owlannotation method)": [[11, "owlapy.owl_axiom.OWLAnnotation.get_value"]], "get_value() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[11, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.get_value"]], "individuals() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[11, "owlapy.owl_axiom.OWLNaryIndividualAxiom.individuals"]], "is_annotated() (owlapy.owl_axiom.owlaxiom method)": [[11, "owlapy.owl_axiom.OWLAxiom.is_annotated"]], "is_annotation_axiom() (owlapy.owl_axiom.owlannotationaxiom method)": [[11, "owlapy.owl_axiom.OWLAnnotationAxiom.is_annotation_axiom"]], "is_annotation_axiom() (owlapy.owl_axiom.owlaxiom method)": [[11, "owlapy.owl_axiom.OWLAxiom.is_annotation_axiom"]], "is_logical_axiom() (owlapy.owl_axiom.owlaxiom method)": [[11, "owlapy.owl_axiom.OWLAxiom.is_logical_axiom"]], "is_logical_axiom() (owlapy.owl_axiom.owllogicalaxiom method)": [[11, "owlapy.owl_axiom.OWLLogicalAxiom.is_logical_axiom"]], "named_classes() (owlapy.owl_axiom.owlequivalentclassesaxiom method)": [[11, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.named_classes"]], "operands() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[11, "owlapy.owl_axiom.OWLHasKeyAxiom.operands"]], "owlapy.owl_axiom": [[11, "module-owlapy.owl_axiom"]], "properties() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[11, "owlapy.owl_axiom.OWLNaryPropertyAxiom.properties"]], "owlanonymousclassexpression (class in owlapy.owl_class_expression)": [[12, "owlapy.owl_class_expression.OWLAnonymousClassExpression"]], "owlbooleanclassexpression (class in owlapy.owl_class_expression)": [[12, "owlapy.owl_class_expression.OWLBooleanClassExpression"]], "owlclass (class in owlapy.owl_class_expression)": [[12, "owlapy.owl_class_expression.OWLClass"]], "owlclassexpression (class in owlapy.owl_class_expression)": [[12, "owlapy.owl_class_expression.OWLClassExpression"]], "owldatacomplementof (class in owlapy.owl_class_expression)": [[12, "owlapy.owl_class_expression.OWLDataComplementOf"]], "owldataintersectionof (class in owlapy.owl_class_expression)": [[12, "owlapy.owl_class_expression.OWLDataIntersectionOf"]], "owldataunionof (class in owlapy.owl_class_expression)": [[12, "owlapy.owl_class_expression.OWLDataUnionOf"]], "owlnarybooleanclassexpression (class in owlapy.owl_class_expression)": [[12, "owlapy.owl_class_expression.OWLNaryBooleanClassExpression"]], "owlnarydatarange (class in owlapy.owl_class_expression)": [[12, "owlapy.owl_class_expression.OWLNaryDataRange"]], "owlnothing (in module owlapy.owl_class_expression)": [[12, "owlapy.owl_class_expression.OWLNothing"]], "owlobjectcomplementof (class in owlapy.owl_class_expression)": [[12, "owlapy.owl_class_expression.OWLObjectComplementOf"]], "owlobjectintersectionof (class in owlapy.owl_class_expression)": [[12, "owlapy.owl_class_expression.OWLObjectIntersectionOf"]], "owlobjectunionof (class in owlapy.owl_class_expression)": [[12, "owlapy.owl_class_expression.OWLObjectUnionOf"]], "owlthing (in module owlapy.owl_class_expression)": [[12, "owlapy.owl_class_expression.OWLThing"]], "__eq__() (owlapy.owl_class_expression.owldatacomplementof method)": [[12, "owlapy.owl_class_expression.OWLDataComplementOf.__eq__"]], "__eq__() (owlapy.owl_class_expression.owlnarybooleanclassexpression method)": [[12, "owlapy.owl_class_expression.OWLNaryBooleanClassExpression.__eq__"]], "__eq__() (owlapy.owl_class_expression.owlnarydatarange method)": [[12, "owlapy.owl_class_expression.OWLNaryDataRange.__eq__"]], "__eq__() (owlapy.owl_class_expression.owlobjectcomplementof method)": [[12, "owlapy.owl_class_expression.OWLObjectComplementOf.__eq__"]], "__hash__() (owlapy.owl_class_expression.owldatacomplementof method)": [[12, "owlapy.owl_class_expression.OWLDataComplementOf.__hash__"]], "__hash__() (owlapy.owl_class_expression.owlnarybooleanclassexpression method)": [[12, "owlapy.owl_class_expression.OWLNaryBooleanClassExpression.__hash__"]], "__hash__() (owlapy.owl_class_expression.owlnarydatarange method)": [[12, "owlapy.owl_class_expression.OWLNaryDataRange.__hash__"]], "__hash__() (owlapy.owl_class_expression.owlobjectcomplementof method)": [[12, "owlapy.owl_class_expression.OWLObjectComplementOf.__hash__"]], "__repr__() (owlapy.owl_class_expression.owldatacomplementof method)": [[12, "owlapy.owl_class_expression.OWLDataComplementOf.__repr__"]], "__repr__() (owlapy.owl_class_expression.owlnarybooleanclassexpression method)": [[12, "owlapy.owl_class_expression.OWLNaryBooleanClassExpression.__repr__"]], "__repr__() (owlapy.owl_class_expression.owlnarydatarange method)": [[12, "owlapy.owl_class_expression.OWLNaryDataRange.__repr__"]], "__repr__() (owlapy.owl_class_expression.owlobjectcomplementof method)": [[12, "owlapy.owl_class_expression.OWLObjectComplementOf.__repr__"]], "__slots__ (owlapy.owl_class_expression.owlbooleanclassexpression attribute)": [[12, "owlapy.owl_class_expression.OWLBooleanClassExpression.__slots__"]], "__slots__ (owlapy.owl_class_expression.owlclass attribute)": [[12, "owlapy.owl_class_expression.OWLClass.__slots__"]], "__slots__ (owlapy.owl_class_expression.owlclassexpression attribute)": [[12, "owlapy.owl_class_expression.OWLClassExpression.__slots__"]], "__slots__ (owlapy.owl_class_expression.owldataintersectionof attribute)": [[12, "owlapy.owl_class_expression.OWLDataIntersectionOf.__slots__"]], "__slots__ (owlapy.owl_class_expression.owldataunionof attribute)": [[12, "owlapy.owl_class_expression.OWLDataUnionOf.__slots__"]], "__slots__ (owlapy.owl_class_expression.owlnarybooleanclassexpression attribute)": [[12, "owlapy.owl_class_expression.OWLNaryBooleanClassExpression.__slots__"]], "__slots__ (owlapy.owl_class_expression.owlnarydatarange attribute)": [[12, "owlapy.owl_class_expression.OWLNaryDataRange.__slots__"]], "__slots__ (owlapy.owl_class_expression.owlobjectcomplementof attribute)": [[12, "owlapy.owl_class_expression.OWLObjectComplementOf.__slots__"]], "__slots__ (owlapy.owl_class_expression.owlobjectintersectionof attribute)": [[12, "owlapy.owl_class_expression.OWLObjectIntersectionOf.__slots__"]], "__slots__ (owlapy.owl_class_expression.owlobjectunionof attribute)": [[12, "owlapy.owl_class_expression.OWLObjectUnionOf.__slots__"]], "get_data_range() (owlapy.owl_class_expression.owldatacomplementof method)": [[12, "owlapy.owl_class_expression.OWLDataComplementOf.get_data_range"]], "get_iri() (owlapy.owl_class_expression.owlclass method)": [[12, "owlapy.owl_class_expression.OWLClass.get_iri"]], "get_nnf() (owlapy.owl_class_expression.owlanonymousclassexpression method)": [[12, "owlapy.owl_class_expression.OWLAnonymousClassExpression.get_nnf"]], "get_nnf() (owlapy.owl_class_expression.owlclass method)": [[12, "owlapy.owl_class_expression.OWLClass.get_nnf"]], "get_nnf() (owlapy.owl_class_expression.owlclassexpression method)": [[12, "owlapy.owl_class_expression.OWLClassExpression.get_nnf"]], "get_object_complement_of() (owlapy.owl_class_expression.owlanonymousclassexpression method)": [[12, "owlapy.owl_class_expression.OWLAnonymousClassExpression.get_object_complement_of"]], "get_object_complement_of() (owlapy.owl_class_expression.owlclass method)": [[12, "owlapy.owl_class_expression.OWLClass.get_object_complement_of"]], "get_object_complement_of() (owlapy.owl_class_expression.owlclassexpression method)": [[12, "owlapy.owl_class_expression.OWLClassExpression.get_object_complement_of"]], "get_operand() (owlapy.owl_class_expression.owlobjectcomplementof method)": [[12, "owlapy.owl_class_expression.OWLObjectComplementOf.get_operand"]], "is_owl_nothing() (owlapy.owl_class_expression.owlanonymousclassexpression method)": [[12, "owlapy.owl_class_expression.OWLAnonymousClassExpression.is_owl_nothing"]], "is_owl_nothing() (owlapy.owl_class_expression.owlclass method)": [[12, "owlapy.owl_class_expression.OWLClass.is_owl_nothing"]], "is_owl_nothing() (owlapy.owl_class_expression.owlclassexpression method)": [[12, "owlapy.owl_class_expression.OWLClassExpression.is_owl_nothing"]], "is_owl_thing() (owlapy.owl_class_expression.owlanonymousclassexpression method)": [[12, "owlapy.owl_class_expression.OWLAnonymousClassExpression.is_owl_thing"]], "is_owl_thing() (owlapy.owl_class_expression.owlclass method)": [[12, "owlapy.owl_class_expression.OWLClass.is_owl_thing"]], "is_owl_thing() (owlapy.owl_class_expression.owlclassexpression method)": [[12, "owlapy.owl_class_expression.OWLClassExpression.is_owl_thing"]], "operands() (owlapy.owl_class_expression.owlnarybooleanclassexpression method)": [[12, "owlapy.owl_class_expression.OWLNaryBooleanClassExpression.operands"]], "operands() (owlapy.owl_class_expression.owlnarydatarange method)": [[12, "owlapy.owl_class_expression.OWLNaryDataRange.operands"]], "operands() (owlapy.owl_class_expression.owlobjectcomplementof method)": [[12, "owlapy.owl_class_expression.OWLObjectComplementOf.operands"]], "owlapy.owl_class_expression": [[12, "module-owlapy.owl_class_expression"]], "reminder (owlapy.owl_class_expression.owlclass property)": [[12, "owlapy.owl_class_expression.OWLClass.reminder"]], "str (owlapy.owl_class_expression.owlclass property)": [[12, "owlapy.owl_class_expression.OWLClass.str"]], "type_index (owlapy.owl_class_expression.owlclass attribute)": [[12, "owlapy.owl_class_expression.OWLClass.type_index"]], "type_index (owlapy.owl_class_expression.owldatacomplementof attribute)": [[12, "owlapy.owl_class_expression.OWLDataComplementOf.type_index"]], "type_index (owlapy.owl_class_expression.owldataintersectionof attribute)": [[12, "owlapy.owl_class_expression.OWLDataIntersectionOf.type_index"]], "type_index (owlapy.owl_class_expression.owldataunionof attribute)": [[12, "owlapy.owl_class_expression.OWLDataUnionOf.type_index"]], "type_index (owlapy.owl_class_expression.owlobjectcomplementof attribute)": [[12, "owlapy.owl_class_expression.OWLObjectComplementOf.type_index"]], "type_index (owlapy.owl_class_expression.owlobjectintersectionof attribute)": [[12, "owlapy.owl_class_expression.OWLObjectIntersectionOf.type_index"]], "type_index (owlapy.owl_class_expression.owlobjectunionof attribute)": [[12, "owlapy.owl_class_expression.OWLObjectUnionOf.type_index"]], "owlindividual (class in owlapy.owl_individual)": [[13, "owlapy.owl_individual.OWLIndividual"]], "owlnamedindividual (class in owlapy.owl_individual)": [[13, "owlapy.owl_individual.OWLNamedIndividual"]], "__slots__ (owlapy.owl_individual.owlindividual attribute)": [[13, "owlapy.owl_individual.OWLIndividual.__slots__"]], "__slots__ (owlapy.owl_individual.owlnamedindividual attribute)": [[13, "owlapy.owl_individual.OWLNamedIndividual.__slots__"]], "get_iri() (owlapy.owl_individual.owlnamedindividual method)": [[13, "owlapy.owl_individual.OWLNamedIndividual.get_iri"]], "iri (owlapy.owl_individual.owlnamedindividual property)": [[13, "owlapy.owl_individual.OWLNamedIndividual.iri"]], "owlapy.owl_individual": [[13, "module-owlapy.owl_individual"]], "str (owlapy.owl_individual.owlnamedindividual property)": [[13, "owlapy.owl_individual.OWLNamedIndividual.str"]], "type_index (owlapy.owl_individual.owlnamedindividual attribute)": [[13, "owlapy.owl_individual.OWLNamedIndividual.type_index"]], "booleanowldatatype (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.BooleanOWLDatatype"]], "dateowldatatype (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.DateOWLDatatype"]], "datetimeowldatatype (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.DateTimeOWLDatatype"]], "doubleowldatatype (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.DoubleOWLDatatype"]], "durationowldatatype (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.DurationOWLDatatype"]], "integerowldatatype (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.IntegerOWLDatatype"]], "literals (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.Literals"]], "numeric_datatypes (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.NUMERIC_DATATYPES"]], "owlbottomdataproperty (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.OWLBottomDataProperty"]], "owlbottomobjectproperty (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.OWLBottomObjectProperty"]], "owlliteral (class in owlapy.owl_literal)": [[14, "owlapy.owl_literal.OWLLiteral"]], "owltopdataproperty (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.OWLTopDataProperty"]], "owltopobjectproperty (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.OWLTopObjectProperty"]], "stringowldatatype (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.StringOWLDatatype"]], "time_datatypes (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.TIME_DATATYPES"]], "topowldatatype (in module owlapy.owl_literal)": [[14, "owlapy.owl_literal.TopOWLDatatype"]], "__slots__ (owlapy.owl_literal.owlliteral attribute)": [[14, "owlapy.owl_literal.OWLLiteral.__slots__"]], "as_literal() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.as_literal"]], "get_datatype() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.get_datatype"]], "get_literal() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.get_literal"]], "is_boolean() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.is_boolean"]], "is_date() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.is_date"]], "is_datetime() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.is_datetime"]], "is_double() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.is_double"]], "is_duration() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.is_duration"]], "is_integer() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.is_integer"]], "is_literal() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.is_literal"]], "is_string() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.is_string"]], "owlapy.owl_literal": [[14, "module-owlapy.owl_literal"]], "parse_boolean() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.parse_boolean"]], "parse_date() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.parse_date"]], "parse_datetime() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.parse_datetime"]], "parse_double() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.parse_double"]], "parse_duration() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.parse_duration"]], "parse_integer() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.parse_integer"]], "parse_string() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.parse_string"]], "to_python() (owlapy.owl_literal.owlliteral method)": [[14, "owlapy.owl_literal.OWLLiteral.to_python"]], "type_index (owlapy.owl_literal.owlliteral attribute)": [[14, "owlapy.owl_literal.OWLLiteral.type_index"]], "owldataproperty (class in owlapy.owl_property)": [[15, "owlapy.owl_property.OWLDataProperty"]], "owldatapropertyexpression (class in owlapy.owl_property)": [[15, "owlapy.owl_property.OWLDataPropertyExpression"]], "owlobjectinverseof (class in owlapy.owl_property)": [[15, "owlapy.owl_property.OWLObjectInverseOf"]], "owlobjectproperty (class in owlapy.owl_property)": [[15, "owlapy.owl_property.OWLObjectProperty"]], "owlobjectpropertyexpression (class in owlapy.owl_property)": [[15, "owlapy.owl_property.OWLObjectPropertyExpression"]], "owlproperty (class in owlapy.owl_property)": [[15, "owlapy.owl_property.OWLProperty"]], "owlpropertyexpression (class in owlapy.owl_property)": [[15, "owlapy.owl_property.OWLPropertyExpression"]], "__eq__() (owlapy.owl_property.owlobjectinverseof method)": [[15, "owlapy.owl_property.OWLObjectInverseOf.__eq__"]], "__hash__() (owlapy.owl_property.owlobjectinverseof method)": [[15, "owlapy.owl_property.OWLObjectInverseOf.__hash__"]], "__repr__() (owlapy.owl_property.owlobjectinverseof method)": [[15, "owlapy.owl_property.OWLObjectInverseOf.__repr__"]], "__slots__ (owlapy.owl_property.owldataproperty attribute)": [[15, "owlapy.owl_property.OWLDataProperty.__slots__"]], "__slots__ (owlapy.owl_property.owldatapropertyexpression attribute)": [[15, "owlapy.owl_property.OWLDataPropertyExpression.__slots__"]], "__slots__ (owlapy.owl_property.owlobjectinverseof attribute)": [[15, "owlapy.owl_property.OWLObjectInverseOf.__slots__"]], "__slots__ (owlapy.owl_property.owlobjectproperty attribute)": [[15, "owlapy.owl_property.OWLObjectProperty.__slots__"]], "__slots__ (owlapy.owl_property.owlobjectpropertyexpression attribute)": [[15, "owlapy.owl_property.OWLObjectPropertyExpression.__slots__"]], "__slots__ (owlapy.owl_property.owlproperty attribute)": [[15, "owlapy.owl_property.OWLProperty.__slots__"]], "__slots__ (owlapy.owl_property.owlpropertyexpression attribute)": [[15, "owlapy.owl_property.OWLPropertyExpression.__slots__"]], "get_inverse() (owlapy.owl_property.owlobjectinverseof method)": [[15, "owlapy.owl_property.OWLObjectInverseOf.get_inverse"]], "get_inverse_property() (owlapy.owl_property.owlobjectinverseof method)": [[15, "owlapy.owl_property.OWLObjectInverseOf.get_inverse_property"]], "get_inverse_property() (owlapy.owl_property.owlobjectproperty method)": [[15, "owlapy.owl_property.OWLObjectProperty.get_inverse_property"]], "get_inverse_property() (owlapy.owl_property.owlobjectpropertyexpression method)": [[15, "owlapy.owl_property.OWLObjectPropertyExpression.get_inverse_property"]], "get_iri() (owlapy.owl_property.owldataproperty method)": [[15, "owlapy.owl_property.OWLDataProperty.get_iri"]], "get_iri() (owlapy.owl_property.owlobjectproperty method)": [[15, "owlapy.owl_property.OWLObjectProperty.get_iri"]], "get_named_property() (owlapy.owl_property.owlobjectinverseof method)": [[15, "owlapy.owl_property.OWLObjectInverseOf.get_named_property"]], "get_named_property() (owlapy.owl_property.owlobjectproperty method)": [[15, "owlapy.owl_property.OWLObjectProperty.get_named_property"]], "get_named_property() (owlapy.owl_property.owlobjectpropertyexpression method)": [[15, "owlapy.owl_property.OWLObjectPropertyExpression.get_named_property"]], "iri (owlapy.owl_property.owlobjectproperty property)": [[15, "owlapy.owl_property.OWLObjectProperty.iri"]], "is_data_property_expression() (owlapy.owl_property.owldatapropertyexpression method)": [[15, "owlapy.owl_property.OWLDataPropertyExpression.is_data_property_expression"]], "is_data_property_expression() (owlapy.owl_property.owlpropertyexpression method)": [[15, "owlapy.owl_property.OWLPropertyExpression.is_data_property_expression"]], "is_object_property_expression() (owlapy.owl_property.owlobjectpropertyexpression method)": [[15, "owlapy.owl_property.OWLObjectPropertyExpression.is_object_property_expression"]], "is_object_property_expression() (owlapy.owl_property.owlpropertyexpression method)": [[15, "owlapy.owl_property.OWLPropertyExpression.is_object_property_expression"]], "is_owl_top_data_property() (owlapy.owl_property.owldataproperty method)": [[15, "owlapy.owl_property.OWLDataProperty.is_owl_top_data_property"]], "is_owl_top_data_property() (owlapy.owl_property.owlpropertyexpression method)": [[15, "owlapy.owl_property.OWLPropertyExpression.is_owl_top_data_property"]], "is_owl_top_object_property() (owlapy.owl_property.owlobjectproperty method)": [[15, "owlapy.owl_property.OWLObjectProperty.is_owl_top_object_property"]], "is_owl_top_object_property() (owlapy.owl_property.owlpropertyexpression method)": [[15, "owlapy.owl_property.OWLPropertyExpression.is_owl_top_object_property"]], "owlapy.owl_property": [[15, "module-owlapy.owl_property"]], "str (owlapy.owl_property.owlobjectproperty property)": [[15, "owlapy.owl_property.OWLObjectProperty.str"]], "type_index (owlapy.owl_property.owldataproperty attribute)": [[15, "owlapy.owl_property.OWLDataProperty.type_index"]], "type_index (owlapy.owl_property.owlobjectinverseof attribute)": [[15, "owlapy.owl_property.OWLObjectInverseOf.type_index"]], "type_index (owlapy.owl_property.owlobjectproperty attribute)": [[15, "owlapy.owl_property.OWLObjectProperty.type_index"]], "literals (in module owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.Literals"]], "owlcardinalityrestriction (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLCardinalityRestriction"]], "owldataallvaluesfrom (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLDataAllValuesFrom"]], "owldatacardinalityrestriction (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLDataCardinalityRestriction"]], "owldataexactcardinality (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLDataExactCardinality"]], "owldatahasvalue (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLDataHasValue"]], "owldatamaxcardinality (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLDataMaxCardinality"]], "owldatamincardinality (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLDataMinCardinality"]], "owldataoneof (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLDataOneOf"]], "owldatarestriction (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLDataRestriction"]], "owldatasomevaluesfrom (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLDataSomeValuesFrom"]], "owldatatyperestriction (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLDatatypeRestriction"]], "owlfacetrestriction (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLFacetRestriction"]], "owlhasvaluerestriction (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLHasValueRestriction"]], "owlobjectallvaluesfrom (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLObjectAllValuesFrom"]], "owlobjectcardinalityrestriction (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLObjectCardinalityRestriction"]], "owlobjectexactcardinality (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLObjectExactCardinality"]], "owlobjecthasself (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLObjectHasSelf"]], "owlobjecthasvalue (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLObjectHasValue"]], "owlobjectmaxcardinality (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLObjectMaxCardinality"]], "owlobjectmincardinality (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLObjectMinCardinality"]], "owlobjectoneof (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLObjectOneOf"]], "owlobjectrestriction (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLObjectRestriction"]], "owlobjectsomevaluesfrom (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLObjectSomeValuesFrom"]], "owlquantifieddatarestriction (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLQuantifiedDataRestriction"]], "owlquantifiedobjectrestriction (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLQuantifiedObjectRestriction"]], "owlquantifiedrestriction (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLQuantifiedRestriction"]], "owlrestriction (class in owlapy.owl_restriction)": [[16, "owlapy.owl_restriction.OWLRestriction"]], "__eq__() (owlapy.owl_restriction.owldataallvaluesfrom method)": [[16, "owlapy.owl_restriction.OWLDataAllValuesFrom.__eq__"]], "__eq__() (owlapy.owl_restriction.owldatacardinalityrestriction method)": [[16, "owlapy.owl_restriction.OWLDataCardinalityRestriction.__eq__"]], "__eq__() (owlapy.owl_restriction.owldatahasvalue method)": [[16, "owlapy.owl_restriction.OWLDataHasValue.__eq__"]], "__eq__() (owlapy.owl_restriction.owldataoneof method)": [[16, "owlapy.owl_restriction.OWLDataOneOf.__eq__"]], "__eq__() (owlapy.owl_restriction.owldatasomevaluesfrom method)": [[16, "owlapy.owl_restriction.OWLDataSomeValuesFrom.__eq__"]], "__eq__() (owlapy.owl_restriction.owldatatyperestriction method)": [[16, "owlapy.owl_restriction.OWLDatatypeRestriction.__eq__"]], "__eq__() (owlapy.owl_restriction.owlfacetrestriction method)": [[16, "owlapy.owl_restriction.OWLFacetRestriction.__eq__"]], "__eq__() (owlapy.owl_restriction.owlhasvaluerestriction method)": [[16, "owlapy.owl_restriction.OWLHasValueRestriction.__eq__"]], "__eq__() (owlapy.owl_restriction.owlobjectallvaluesfrom method)": [[16, "owlapy.owl_restriction.OWLObjectAllValuesFrom.__eq__"]], "__eq__() (owlapy.owl_restriction.owlobjectcardinalityrestriction method)": [[16, "owlapy.owl_restriction.OWLObjectCardinalityRestriction.__eq__"]], "__eq__() (owlapy.owl_restriction.owlobjecthasself method)": [[16, "owlapy.owl_restriction.OWLObjectHasSelf.__eq__"]], "__eq__() (owlapy.owl_restriction.owlobjectoneof method)": [[16, "owlapy.owl_restriction.OWLObjectOneOf.__eq__"]], "__eq__() (owlapy.owl_restriction.owlobjectsomevaluesfrom method)": [[16, "owlapy.owl_restriction.OWLObjectSomeValuesFrom.__eq__"]], "__hash__() (owlapy.owl_restriction.owldataallvaluesfrom method)": [[16, "owlapy.owl_restriction.OWLDataAllValuesFrom.__hash__"]], "__hash__() (owlapy.owl_restriction.owldatacardinalityrestriction method)": [[16, "owlapy.owl_restriction.OWLDataCardinalityRestriction.__hash__"]], "__hash__() (owlapy.owl_restriction.owldatahasvalue method)": [[16, "owlapy.owl_restriction.OWLDataHasValue.__hash__"]], "__hash__() (owlapy.owl_restriction.owldataoneof method)": [[16, "owlapy.owl_restriction.OWLDataOneOf.__hash__"]], "__hash__() (owlapy.owl_restriction.owldatasomevaluesfrom method)": [[16, "owlapy.owl_restriction.OWLDataSomeValuesFrom.__hash__"]], "__hash__() (owlapy.owl_restriction.owldatatyperestriction method)": [[16, "owlapy.owl_restriction.OWLDatatypeRestriction.__hash__"]], "__hash__() (owlapy.owl_restriction.owlfacetrestriction method)": [[16, "owlapy.owl_restriction.OWLFacetRestriction.__hash__"]], "__hash__() (owlapy.owl_restriction.owlhasvaluerestriction method)": [[16, "owlapy.owl_restriction.OWLHasValueRestriction.__hash__"]], "__hash__() (owlapy.owl_restriction.owlobjectallvaluesfrom method)": [[16, "owlapy.owl_restriction.OWLObjectAllValuesFrom.__hash__"]], "__hash__() (owlapy.owl_restriction.owlobjectcardinalityrestriction method)": [[16, "owlapy.owl_restriction.OWLObjectCardinalityRestriction.__hash__"]], "__hash__() (owlapy.owl_restriction.owlobjecthasself method)": [[16, "owlapy.owl_restriction.OWLObjectHasSelf.__hash__"]], "__hash__() (owlapy.owl_restriction.owlobjectoneof method)": [[16, "owlapy.owl_restriction.OWLObjectOneOf.__hash__"]], "__hash__() (owlapy.owl_restriction.owlobjectsomevaluesfrom method)": [[16, "owlapy.owl_restriction.OWLObjectSomeValuesFrom.__hash__"]], "__repr__() (owlapy.owl_restriction.owldataallvaluesfrom method)": [[16, "owlapy.owl_restriction.OWLDataAllValuesFrom.__repr__"]], "__repr__() (owlapy.owl_restriction.owldatacardinalityrestriction method)": [[16, "owlapy.owl_restriction.OWLDataCardinalityRestriction.__repr__"]], "__repr__() (owlapy.owl_restriction.owldatahasvalue method)": [[16, "owlapy.owl_restriction.OWLDataHasValue.__repr__"]], "__repr__() (owlapy.owl_restriction.owldataoneof method)": [[16, "owlapy.owl_restriction.OWLDataOneOf.__repr__"]], "__repr__() (owlapy.owl_restriction.owldatasomevaluesfrom method)": [[16, "owlapy.owl_restriction.OWLDataSomeValuesFrom.__repr__"]], "__repr__() (owlapy.owl_restriction.owldatatyperestriction method)": [[16, "owlapy.owl_restriction.OWLDatatypeRestriction.__repr__"]], "__repr__() (owlapy.owl_restriction.owlfacetrestriction method)": [[16, "owlapy.owl_restriction.OWLFacetRestriction.__repr__"]], "__repr__() (owlapy.owl_restriction.owlobjectallvaluesfrom method)": [[16, "owlapy.owl_restriction.OWLObjectAllValuesFrom.__repr__"]], "__repr__() (owlapy.owl_restriction.owlobjectcardinalityrestriction method)": [[16, "owlapy.owl_restriction.OWLObjectCardinalityRestriction.__repr__"]], "__repr__() (owlapy.owl_restriction.owlobjecthasself method)": [[16, "owlapy.owl_restriction.OWLObjectHasSelf.__repr__"]], "__repr__() (owlapy.owl_restriction.owlobjecthasvalue method)": [[16, "owlapy.owl_restriction.OWLObjectHasValue.__repr__"]], "__repr__() (owlapy.owl_restriction.owlobjectoneof method)": [[16, "owlapy.owl_restriction.OWLObjectOneOf.__repr__"]], "__repr__() (owlapy.owl_restriction.owlobjectsomevaluesfrom method)": [[16, "owlapy.owl_restriction.OWLObjectSomeValuesFrom.__repr__"]], "__slots__ (owlapy.owl_restriction.owlcardinalityrestriction attribute)": [[16, "owlapy.owl_restriction.OWLCardinalityRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owldataallvaluesfrom attribute)": [[16, "owlapy.owl_restriction.OWLDataAllValuesFrom.__slots__"]], "__slots__ (owlapy.owl_restriction.owldatacardinalityrestriction attribute)": [[16, "owlapy.owl_restriction.OWLDataCardinalityRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owldataexactcardinality attribute)": [[16, "owlapy.owl_restriction.OWLDataExactCardinality.__slots__"]], "__slots__ (owlapy.owl_restriction.owldatahasvalue attribute)": [[16, "owlapy.owl_restriction.OWLDataHasValue.__slots__"]], "__slots__ (owlapy.owl_restriction.owldatamaxcardinality attribute)": [[16, "owlapy.owl_restriction.OWLDataMaxCardinality.__slots__"]], "__slots__ (owlapy.owl_restriction.owldatamincardinality attribute)": [[16, "owlapy.owl_restriction.OWLDataMinCardinality.__slots__"]], "__slots__ (owlapy.owl_restriction.owldatarestriction attribute)": [[16, "owlapy.owl_restriction.OWLDataRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owldatasomevaluesfrom attribute)": [[16, "owlapy.owl_restriction.OWLDataSomeValuesFrom.__slots__"]], "__slots__ (owlapy.owl_restriction.owldatatyperestriction attribute)": [[16, "owlapy.owl_restriction.OWLDatatypeRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlfacetrestriction attribute)": [[16, "owlapy.owl_restriction.OWLFacetRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlhasvaluerestriction attribute)": [[16, "owlapy.owl_restriction.OWLHasValueRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectallvaluesfrom attribute)": [[16, "owlapy.owl_restriction.OWLObjectAllValuesFrom.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectcardinalityrestriction attribute)": [[16, "owlapy.owl_restriction.OWLObjectCardinalityRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectexactcardinality attribute)": [[16, "owlapy.owl_restriction.OWLObjectExactCardinality.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjecthasself attribute)": [[16, "owlapy.owl_restriction.OWLObjectHasSelf.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjecthasvalue attribute)": [[16, "owlapy.owl_restriction.OWLObjectHasValue.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectmaxcardinality attribute)": [[16, "owlapy.owl_restriction.OWLObjectMaxCardinality.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectmincardinality attribute)": [[16, "owlapy.owl_restriction.OWLObjectMinCardinality.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectoneof attribute)": [[16, "owlapy.owl_restriction.OWLObjectOneOf.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectrestriction attribute)": [[16, "owlapy.owl_restriction.OWLObjectRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectsomevaluesfrom attribute)": [[16, "owlapy.owl_restriction.OWLObjectSomeValuesFrom.__slots__"]], "__slots__ (owlapy.owl_restriction.owlquantifieddatarestriction attribute)": [[16, "owlapy.owl_restriction.OWLQuantifiedDataRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlquantifiedobjectrestriction attribute)": [[16, "owlapy.owl_restriction.OWLQuantifiedObjectRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlquantifiedrestriction attribute)": [[16, "owlapy.owl_restriction.OWLQuantifiedRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlrestriction attribute)": [[16, "owlapy.owl_restriction.OWLRestriction.__slots__"]], "as_intersection_of_min_max() (owlapy.owl_restriction.owldataexactcardinality method)": [[16, "owlapy.owl_restriction.OWLDataExactCardinality.as_intersection_of_min_max"]], "as_intersection_of_min_max() (owlapy.owl_restriction.owlobjectexactcardinality method)": [[16, "owlapy.owl_restriction.OWLObjectExactCardinality.as_intersection_of_min_max"]], "as_object_union_of() (owlapy.owl_restriction.owlobjectoneof method)": [[16, "owlapy.owl_restriction.OWLObjectOneOf.as_object_union_of"]], "as_some_values_from() (owlapy.owl_restriction.owldatahasvalue method)": [[16, "owlapy.owl_restriction.OWLDataHasValue.as_some_values_from"]], "as_some_values_from() (owlapy.owl_restriction.owlobjecthasvalue method)": [[16, "owlapy.owl_restriction.OWLObjectHasValue.as_some_values_from"]], "get_cardinality() (owlapy.owl_restriction.owlcardinalityrestriction method)": [[16, "owlapy.owl_restriction.OWLCardinalityRestriction.get_cardinality"]], "get_datatype() (owlapy.owl_restriction.owldatatyperestriction method)": [[16, "owlapy.owl_restriction.OWLDatatypeRestriction.get_datatype"]], "get_facet() (owlapy.owl_restriction.owlfacetrestriction method)": [[16, "owlapy.owl_restriction.OWLFacetRestriction.get_facet"]], "get_facet_restrictions() (owlapy.owl_restriction.owldatatyperestriction method)": [[16, "owlapy.owl_restriction.OWLDatatypeRestriction.get_facet_restrictions"]], "get_facet_value() (owlapy.owl_restriction.owlfacetrestriction method)": [[16, "owlapy.owl_restriction.OWLFacetRestriction.get_facet_value"]], "get_filler() (owlapy.owl_restriction.owlcardinalityrestriction method)": [[16, "owlapy.owl_restriction.OWLCardinalityRestriction.get_filler"]], "get_filler() (owlapy.owl_restriction.owlhasvaluerestriction method)": [[16, "owlapy.owl_restriction.OWLHasValueRestriction.get_filler"]], "get_filler() (owlapy.owl_restriction.owlquantifieddatarestriction method)": [[16, "owlapy.owl_restriction.OWLQuantifiedDataRestriction.get_filler"]], "get_filler() (owlapy.owl_restriction.owlquantifiedobjectrestriction method)": [[16, "owlapy.owl_restriction.OWLQuantifiedObjectRestriction.get_filler"]], "get_property() (owlapy.owl_restriction.owldataallvaluesfrom method)": [[16, "owlapy.owl_restriction.OWLDataAllValuesFrom.get_property"]], "get_property() (owlapy.owl_restriction.owldatacardinalityrestriction method)": [[16, "owlapy.owl_restriction.OWLDataCardinalityRestriction.get_property"]], "get_property() (owlapy.owl_restriction.owldatahasvalue method)": [[16, "owlapy.owl_restriction.OWLDataHasValue.get_property"]], "get_property() (owlapy.owl_restriction.owldatasomevaluesfrom method)": [[16, "owlapy.owl_restriction.OWLDataSomeValuesFrom.get_property"]], "get_property() (owlapy.owl_restriction.owlobjectallvaluesfrom method)": [[16, "owlapy.owl_restriction.OWLObjectAllValuesFrom.get_property"]], "get_property() (owlapy.owl_restriction.owlobjectcardinalityrestriction method)": [[16, "owlapy.owl_restriction.OWLObjectCardinalityRestriction.get_property"]], "get_property() (owlapy.owl_restriction.owlobjecthasself method)": [[16, "owlapy.owl_restriction.OWLObjectHasSelf.get_property"]], "get_property() (owlapy.owl_restriction.owlobjecthasvalue method)": [[16, "owlapy.owl_restriction.OWLObjectHasValue.get_property"]], "get_property() (owlapy.owl_restriction.owlobjectrestriction method)": [[16, "owlapy.owl_restriction.OWLObjectRestriction.get_property"]], "get_property() (owlapy.owl_restriction.owlobjectsomevaluesfrom method)": [[16, "owlapy.owl_restriction.OWLObjectSomeValuesFrom.get_property"]], "get_property() (owlapy.owl_restriction.owlrestriction method)": [[16, "owlapy.owl_restriction.OWLRestriction.get_property"]], "individuals() (owlapy.owl_restriction.owlobjectoneof method)": [[16, "owlapy.owl_restriction.OWLObjectOneOf.individuals"]], "is_data_restriction() (owlapy.owl_restriction.owldatarestriction method)": [[16, "owlapy.owl_restriction.OWLDataRestriction.is_data_restriction"]], "is_data_restriction() (owlapy.owl_restriction.owlrestriction method)": [[16, "owlapy.owl_restriction.OWLRestriction.is_data_restriction"]], "is_object_restriction() (owlapy.owl_restriction.owlobjectrestriction method)": [[16, "owlapy.owl_restriction.OWLObjectRestriction.is_object_restriction"]], "is_object_restriction() (owlapy.owl_restriction.owlrestriction method)": [[16, "owlapy.owl_restriction.OWLRestriction.is_object_restriction"]], "operands() (owlapy.owl_restriction.owldataoneof method)": [[16, "owlapy.owl_restriction.OWLDataOneOf.operands"]], "operands() (owlapy.owl_restriction.owlobjectoneof method)": [[16, "owlapy.owl_restriction.OWLObjectOneOf.operands"]], "owlapy.owl_restriction": [[16, "module-owlapy.owl_restriction"]], "type_index (owlapy.owl_restriction.owldataallvaluesfrom attribute)": [[16, "owlapy.owl_restriction.OWLDataAllValuesFrom.type_index"]], "type_index (owlapy.owl_restriction.owldataexactcardinality attribute)": [[16, "owlapy.owl_restriction.OWLDataExactCardinality.type_index"]], "type_index (owlapy.owl_restriction.owldatahasvalue attribute)": [[16, "owlapy.owl_restriction.OWLDataHasValue.type_index"]], "type_index (owlapy.owl_restriction.owldatamaxcardinality attribute)": [[16, "owlapy.owl_restriction.OWLDataMaxCardinality.type_index"]], "type_index (owlapy.owl_restriction.owldatamincardinality attribute)": [[16, "owlapy.owl_restriction.OWLDataMinCardinality.type_index"]], "type_index (owlapy.owl_restriction.owldataoneof attribute)": [[16, "owlapy.owl_restriction.OWLDataOneOf.type_index"]], "type_index (owlapy.owl_restriction.owldatasomevaluesfrom attribute)": [[16, "owlapy.owl_restriction.OWLDataSomeValuesFrom.type_index"]], "type_index (owlapy.owl_restriction.owldatatyperestriction attribute)": [[16, "owlapy.owl_restriction.OWLDatatypeRestriction.type_index"]], "type_index (owlapy.owl_restriction.owlfacetrestriction attribute)": [[16, "owlapy.owl_restriction.OWLFacetRestriction.type_index"]], "type_index (owlapy.owl_restriction.owlobjectallvaluesfrom attribute)": [[16, "owlapy.owl_restriction.OWLObjectAllValuesFrom.type_index"]], "type_index (owlapy.owl_restriction.owlobjectexactcardinality attribute)": [[16, "owlapy.owl_restriction.OWLObjectExactCardinality.type_index"]], "type_index (owlapy.owl_restriction.owlobjecthasself attribute)": [[16, "owlapy.owl_restriction.OWLObjectHasSelf.type_index"]], "type_index (owlapy.owl_restriction.owlobjecthasvalue attribute)": [[16, "owlapy.owl_restriction.OWLObjectHasValue.type_index"]], "type_index (owlapy.owl_restriction.owlobjectmaxcardinality attribute)": [[16, "owlapy.owl_restriction.OWLObjectMaxCardinality.type_index"]], "type_index (owlapy.owl_restriction.owlobjectmincardinality attribute)": [[16, "owlapy.owl_restriction.OWLObjectMinCardinality.type_index"]], "type_index (owlapy.owl_restriction.owlobjectoneof attribute)": [[16, "owlapy.owl_restriction.OWLObjectOneOf.type_index"]], "type_index (owlapy.owl_restriction.owlobjectsomevaluesfrom attribute)": [[16, "owlapy.owl_restriction.OWLObjectSomeValuesFrom.type_index"]], "values() (owlapy.owl_restriction.owldataoneof method)": [[16, "owlapy.owl_restriction.OWLDataOneOf.values"]], "owlentity (class in owlapy.owlobject)": [[17, "owlapy.owlobject.OWLEntity"]], "owlnamedobject (class in owlapy.owlobject)": [[17, "owlapy.owlobject.OWLNamedObject"]], "owlobject (class in owlapy.owlobject)": [[17, "owlapy.owlobject.OWLObject"]], "owlobjectparser (class in owlapy.owlobject)": [[17, "owlapy.owlobject.OWLObjectParser"]], "owlobjectrenderer (class in owlapy.owlobject)": [[17, "owlapy.owlobject.OWLObjectRenderer"]], "__eq__() (owlapy.owlobject.owlnamedobject method)": [[17, "owlapy.owlobject.OWLNamedObject.__eq__"]], "__eq__() (owlapy.owlobject.owlobject method)": [[17, "owlapy.owlobject.OWLObject.__eq__"]], "__hash__() (owlapy.owlobject.owlnamedobject method)": [[17, "owlapy.owlobject.OWLNamedObject.__hash__"]], "__hash__() (owlapy.owlobject.owlobject method)": [[17, "owlapy.owlobject.OWLObject.__hash__"]], "__lt__() (owlapy.owlobject.owlnamedobject method)": [[17, "owlapy.owlobject.OWLNamedObject.__lt__"]], "__repr__() (owlapy.owlobject.owlnamedobject method)": [[17, "owlapy.owlobject.OWLNamedObject.__repr__"]], "__repr__() (owlapy.owlobject.owlobject method)": [[17, "owlapy.owlobject.OWLObject.__repr__"]], "__slots__ (owlapy.owlobject.owlentity attribute)": [[17, "owlapy.owlobject.OWLEntity.__slots__"]], "__slots__ (owlapy.owlobject.owlnamedobject attribute)": [[17, "owlapy.owlobject.OWLNamedObject.__slots__"]], "__slots__ (owlapy.owlobject.owlobject attribute)": [[17, "owlapy.owlobject.OWLObject.__slots__"]], "is_anonymous() (owlapy.owlobject.owlentity method)": [[17, "owlapy.owlobject.OWLEntity.is_anonymous"]], "is_anonymous() (owlapy.owlobject.owlobject method)": [[17, "owlapy.owlobject.OWLObject.is_anonymous"]], "owlapy.owlobject": [[17, "module-owlapy.owlobject"]], "parse_expression() (owlapy.owlobject.owlobjectparser method)": [[17, "owlapy.owlobject.OWLObjectParser.parse_expression"]], "render() (owlapy.owlobject.owlobjectrenderer method)": [[17, "owlapy.owlobject.OWLObjectRenderer.render"]], "set_short_form_provider() (owlapy.owlobject.owlobjectrenderer method)": [[17, "owlapy.owlobject.OWLObjectRenderer.set_short_form_provider"]], "to_string_id() (owlapy.owlobject.owlentity method)": [[17, "owlapy.owlobject.OWLEntity.to_string_id"]], "dlsyntaxparser (class in owlapy.parser)": [[18, "owlapy.parser.DLSyntaxParser"]], "dl_grammar (in module owlapy.parser)": [[18, "owlapy.parser.DL_GRAMMAR"]], "dlparser (in module owlapy.parser)": [[18, "owlapy.parser.DLparser"]], "manchester_grammar (in module owlapy.parser)": [[18, "owlapy.parser.MANCHESTER_GRAMMAR"]], "manchesterowlsyntaxparser (class in owlapy.parser)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser"]], "manchesterparser (in module owlapy.parser)": [[18, "owlapy.parser.ManchesterParser"]], "dl_to_owl_expression() (in module owlapy.parser)": [[18, "owlapy.parser.dl_to_owl_expression"]], "generic_visit() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.generic_visit"]], "generic_visit() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.generic_visit"]], "manchester_to_owl_expression() (in module owlapy.parser)": [[18, "owlapy.parser.manchester_to_owl_expression"]], "ns (owlapy.parser.dlsyntaxparser attribute)": [[18, "owlapy.parser.DLSyntaxParser.ns"]], "ns (owlapy.parser.manchesterowlsyntaxparser attribute)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.ns"]], "owlapy.parser": [[18, "module-owlapy.parser"]], "parse_expression() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.parse_expression"]], "parse_expression() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.parse_expression"]], "slots (owlapy.parser.dlsyntaxparser attribute)": [[18, "owlapy.parser.DLSyntaxParser.slots"]], "slots (owlapy.parser.manchesterowlsyntaxparser attribute)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.slots"]], "visit_abbreviated_iri() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_abbreviated_iri"]], "visit_abbreviated_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_abbreviated_iri"]], "visit_boolean_literal() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_boolean_literal"]], "visit_boolean_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_boolean_literal"]], "visit_cardinality_res() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_cardinality_res"]], "visit_cardinality_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_cardinality_res"]], "visit_class_expression() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_class_expression"]], "visit_class_expression() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_class_expression"]], "visit_class_iri() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_class_iri"]], "visit_class_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_class_iri"]], "visit_data_cardinality_res() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_data_cardinality_res"]], "visit_data_cardinality_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_cardinality_res"]], "visit_data_intersection() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_data_intersection"]], "visit_data_intersection() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_intersection"]], "visit_data_parentheses() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_data_parentheses"]], "visit_data_parentheses() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_parentheses"]], "visit_data_primary() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_data_primary"]], "visit_data_primary() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_primary"]], "visit_data_property_iri() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_data_property_iri"]], "visit_data_property_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_property_iri"]], "visit_data_some_only_res() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_data_some_only_res"]], "visit_data_some_only_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_some_only_res"]], "visit_data_union() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_data_union"]], "visit_data_union() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_union"]], "visit_data_value_res() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_data_value_res"]], "visit_data_value_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_value_res"]], "visit_datatype() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_datatype"]], "visit_datatype() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_datatype"]], "visit_datatype_iri() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_datatype_iri"]], "visit_datatype_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_datatype_iri"]], "visit_datatype_restriction() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_datatype_restriction"]], "visit_datatype_restriction() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_datatype_restriction"]], "visit_date_literal() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_date_literal"]], "visit_date_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_date_literal"]], "visit_datetime_literal() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_datetime_literal"]], "visit_datetime_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_datetime_literal"]], "visit_decimal_literal() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_decimal_literal"]], "visit_decimal_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_decimal_literal"]], "visit_duration_literal() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_duration_literal"]], "visit_duration_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_duration_literal"]], "visit_facet() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_facet"]], "visit_facet() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_facet"]], "visit_facet_restriction() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_facet_restriction"]], "visit_facet_restriction() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_facet_restriction"]], "visit_facet_restrictions() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_facet_restrictions"]], "visit_facet_restrictions() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_facet_restrictions"]], "visit_float_literal() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_float_literal"]], "visit_float_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_float_literal"]], "visit_full_iri() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_full_iri"]], "visit_full_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_full_iri"]], "visit_has_self() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_has_self"]], "visit_has_self() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_has_self"]], "visit_individual_iri() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_individual_iri"]], "visit_individual_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_individual_iri"]], "visit_individual_list() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_individual_list"]], "visit_individual_list() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_individual_list"]], "visit_integer_literal() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_integer_literal"]], "visit_integer_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_integer_literal"]], "visit_intersection() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_intersection"]], "visit_intersection() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_intersection"]], "visit_iri() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_iri"]], "visit_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_iri"]], "visit_literal() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_literal"]], "visit_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_literal"]], "visit_literal_list() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_literal_list"]], "visit_literal_list() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_literal_list"]], "visit_non_negative_integer() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_non_negative_integer"]], "visit_non_negative_integer() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_non_negative_integer"]], "visit_object_property() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_object_property"]], "visit_object_property() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_object_property"]], "visit_object_property_iri() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_object_property_iri"]], "visit_object_property_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_object_property_iri"]], "visit_parentheses() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_parentheses"]], "visit_parentheses() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_parentheses"]], "visit_primary() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_primary"]], "visit_primary() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_primary"]], "visit_quoted_string() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_quoted_string"]], "visit_quoted_string() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_quoted_string"]], "visit_simple_iri() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_simple_iri"]], "visit_simple_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_simple_iri"]], "visit_some_only_res() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_some_only_res"]], "visit_some_only_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_some_only_res"]], "visit_string_literal_language() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_string_literal_language"]], "visit_string_literal_language() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_string_literal_language"]], "visit_string_literal_no_language() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_string_literal_no_language"]], "visit_string_literal_no_language() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_string_literal_no_language"]], "visit_typed_literal() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_typed_literal"]], "visit_typed_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_typed_literal"]], "visit_union() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_union"]], "visit_union() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_union"]], "visit_value_res() (owlapy.parser.dlsyntaxparser method)": [[18, "owlapy.parser.DLSyntaxParser.visit_value_res"]], "visit_value_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[18, "owlapy.parser.ManchesterOWLSyntaxParser.visit_value_res"]], "owldatarange (class in owlapy.ranges)": [[19, "owlapy.ranges.OWLDataRange"]], "owlpropertyrange (class in owlapy.ranges)": [[19, "owlapy.ranges.OWLPropertyRange"]], "owlapy.ranges": [[19, "module-owlapy.ranges"]], "dlsyntaxobjectrenderer (class in owlapy.render)": [[20, "owlapy.render.DLSyntaxObjectRenderer"]], "dlrenderer (in module owlapy.render)": [[20, "owlapy.render.DLrenderer"]], "manchesterowlsyntaxowlobjectrenderer (class in owlapy.render)": [[20, "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer"]], "manchesterrenderer (in module owlapy.render)": [[20, "owlapy.render.ManchesterRenderer"]], "__slots__ (owlapy.render.dlsyntaxobjectrenderer attribute)": [[20, "owlapy.render.DLSyntaxObjectRenderer.__slots__"]], "__slots__ (owlapy.render.manchesterowlsyntaxowlobjectrenderer attribute)": [[20, "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer.__slots__"]], "owl_expression_to_dl() (in module owlapy.render)": [[20, "owlapy.render.owl_expression_to_dl"]], "owl_expression_to_manchester() (in module owlapy.render)": [[20, "owlapy.render.owl_expression_to_manchester"]], "owlapy.render": [[20, "module-owlapy.render"]], "render() (owlapy.render.dlsyntaxobjectrenderer method)": [[20, "owlapy.render.DLSyntaxObjectRenderer.render"]], "render() (owlapy.render.manchesterowlsyntaxowlobjectrenderer method)": [[20, "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer.render"]], "set_short_form_provider() (owlapy.render.dlsyntaxobjectrenderer method)": [[20, "owlapy.render.DLSyntaxObjectRenderer.set_short_form_provider"]], "set_short_form_provider() (owlapy.render.manchesterowlsyntaxowlobjectrenderer method)": [[20, "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer.set_short_form_provider"]], "owldatatype (class in owlapy.types)": [[21, "owlapy.types.OWLDatatype"]], "__slots__ (owlapy.types.owldatatype attribute)": [[21, "owlapy.types.OWLDatatype.__slots__"]], "get_iri() (owlapy.types.owldatatype method)": [[21, "owlapy.types.OWLDatatype.get_iri"]], "owlapy.types": [[21, "module-owlapy.types"]], "type_index (owlapy.types.owldatatype attribute)": [[21, "owlapy.types.OWLDatatype.type_index"]], "key (owlapy.util.lrucache attribute)": [[22, "owlapy.util.LRUCache.KEY"]], "lrucache (class in owlapy.util)": [[22, "owlapy.util.LRUCache"]], "next (owlapy.util.lrucache attribute)": [[22, "owlapy.util.LRUCache.NEXT"]], "nnf (class in owlapy.util)": [[22, "owlapy.util.NNF"]], "orderedowlobject (class in owlapy.util)": [[22, "owlapy.util.OrderedOWLObject"]], "prev (owlapy.util.lrucache attribute)": [[22, "owlapy.util.LRUCache.PREV"]], "result (owlapy.util.lrucache attribute)": [[22, "owlapy.util.LRUCache.RESULT"]], "toplevelcnf (class in owlapy.util)": [[22, "owlapy.util.TopLevelCNF"]], "topleveldnf (class in owlapy.util)": [[22, "owlapy.util.TopLevelDNF"]], "__contains__() (owlapy.util.lrucache method)": [[22, "owlapy.util.LRUCache.__contains__"]], "__eq__() (owlapy.util.orderedowlobject method)": [[22, "owlapy.util.OrderedOWLObject.__eq__"]], "__getitem__() (owlapy.util.lrucache method)": [[22, "owlapy.util.LRUCache.__getitem__"]], "__lt__() (owlapy.util.orderedowlobject method)": [[22, "owlapy.util.OrderedOWLObject.__lt__"]], "__setitem__() (owlapy.util.lrucache method)": [[22, "owlapy.util.LRUCache.__setitem__"]], "__slots__ (owlapy.util.orderedowlobject attribute)": [[22, "owlapy.util.OrderedOWLObject.__slots__"]], "as_index() (in module owlapy.util)": [[22, "owlapy.util.as_index"]], "cache_clear() (owlapy.util.lrucache method)": [[22, "owlapy.util.LRUCache.cache_clear"]], "cache_info() (owlapy.util.lrucache method)": [[22, "owlapy.util.LRUCache.cache_info"]], "combine_nary_expressions() (in module owlapy.util)": [[22, "owlapy.util.combine_nary_expressions"]], "get_class_nnf() (owlapy.util.nnf method)": [[22, "owlapy.util.NNF.get_class_nnf"]], "get_top_level_cnf() (owlapy.util.toplevelcnf method)": [[22, "owlapy.util.TopLevelCNF.get_top_level_cnf"]], "get_top_level_dnf() (owlapy.util.topleveldnf method)": [[22, "owlapy.util.TopLevelDNF.get_top_level_dnf"]], "iter_count() (in module owlapy.util)": [[22, "owlapy.util.iter_count"]], "o (owlapy.util.orderedowlobject attribute)": [[22, "id0"], [22, "owlapy.util.OrderedOWLObject.o"]], "owlapy.util": [[22, "module-owlapy.util"]], "sentinel (owlapy.util.lrucache attribute)": [[22, "id1"], [22, "owlapy.util.LRUCache.sentinel"]], "boolean (owlapy.vocab.xsdvocabulary attribute)": [[23, "owlapy.vocab.XSDVocabulary.BOOLEAN"]], "date (owlapy.vocab.xsdvocabulary attribute)": [[23, "owlapy.vocab.XSDVocabulary.DATE"]], "date_time (owlapy.vocab.xsdvocabulary attribute)": [[23, "owlapy.vocab.XSDVocabulary.DATE_TIME"]], "date_time_stamp (owlapy.vocab.xsdvocabulary attribute)": [[23, "owlapy.vocab.XSDVocabulary.DATE_TIME_STAMP"]], "decimal (owlapy.vocab.xsdvocabulary attribute)": [[23, "owlapy.vocab.XSDVocabulary.DECIMAL"]], "double (owlapy.vocab.xsdvocabulary attribute)": [[23, "owlapy.vocab.XSDVocabulary.DOUBLE"]], "duration (owlapy.vocab.xsdvocabulary attribute)": [[23, "owlapy.vocab.XSDVocabulary.DURATION"]], "float (owlapy.vocab.xsdvocabulary attribute)": [[23, "owlapy.vocab.XSDVocabulary.FLOAT"]], "fraction_digits (owlapy.vocab.owlfacet attribute)": [[23, "owlapy.vocab.OWLFacet.FRACTION_DIGITS"]], "integer (owlapy.vocab.xsdvocabulary attribute)": [[23, "owlapy.vocab.XSDVocabulary.INTEGER"]], "length (owlapy.vocab.owlfacet attribute)": [[23, "owlapy.vocab.OWLFacet.LENGTH"]], "long (owlapy.vocab.xsdvocabulary attribute)": [[23, "owlapy.vocab.XSDVocabulary.LONG"]], "max_exclusive (owlapy.vocab.owlfacet attribute)": [[23, "owlapy.vocab.OWLFacet.MAX_EXCLUSIVE"]], "max_inclusive (owlapy.vocab.owlfacet attribute)": [[23, "owlapy.vocab.OWLFacet.MAX_INCLUSIVE"]], "max_length (owlapy.vocab.owlfacet attribute)": [[23, "owlapy.vocab.OWLFacet.MAX_LENGTH"]], "min_exclusive (owlapy.vocab.owlfacet attribute)": [[23, "owlapy.vocab.OWLFacet.MIN_EXCLUSIVE"]], "min_inclusive (owlapy.vocab.owlfacet attribute)": [[23, "owlapy.vocab.OWLFacet.MIN_INCLUSIVE"]], "min_length (owlapy.vocab.owlfacet attribute)": [[23, "owlapy.vocab.OWLFacet.MIN_LENGTH"]], "owlfacet (class in owlapy.vocab)": [[23, "owlapy.vocab.OWLFacet"]], "owlrdfvocabulary (class in owlapy.vocab)": [[23, "owlapy.vocab.OWLRDFVocabulary"]], "owl_bottom_data_property (owlapy.vocab.owlrdfvocabulary attribute)": [[23, "owlapy.vocab.OWLRDFVocabulary.OWL_BOTTOM_DATA_PROPERTY"]], "owl_bottom_object_property (owlapy.vocab.owlrdfvocabulary attribute)": [[23, "owlapy.vocab.OWLRDFVocabulary.OWL_BOTTOM_OBJECT_PROPERTY"]], "owl_class (owlapy.vocab.owlrdfvocabulary attribute)": [[23, "owlapy.vocab.OWLRDFVocabulary.OWL_CLASS"]], "owl_named_individual (owlapy.vocab.owlrdfvocabulary attribute)": [[23, "owlapy.vocab.OWLRDFVocabulary.OWL_NAMED_INDIVIDUAL"]], "owl_nothing (owlapy.vocab.owlrdfvocabulary attribute)": [[23, "owlapy.vocab.OWLRDFVocabulary.OWL_NOTHING"]], "owl_thing (owlapy.vocab.owlrdfvocabulary attribute)": [[23, "owlapy.vocab.OWLRDFVocabulary.OWL_THING"]], "owl_top_data_property (owlapy.vocab.owlrdfvocabulary attribute)": [[23, "owlapy.vocab.OWLRDFVocabulary.OWL_TOP_DATA_PROPERTY"]], "owl_top_object_property (owlapy.vocab.owlrdfvocabulary attribute)": [[23, "owlapy.vocab.OWLRDFVocabulary.OWL_TOP_OBJECT_PROPERTY"]], "pattern (owlapy.vocab.owlfacet attribute)": [[23, "owlapy.vocab.OWLFacet.PATTERN"]], "rdfs_literal (owlapy.vocab.owlrdfvocabulary attribute)": [[23, "owlapy.vocab.OWLRDFVocabulary.RDFS_LITERAL"]], "string (owlapy.vocab.xsdvocabulary attribute)": [[23, "owlapy.vocab.XSDVocabulary.STRING"]], "total_digits (owlapy.vocab.owlfacet attribute)": [[23, "owlapy.vocab.OWLFacet.TOTAL_DIGITS"]], "xsdvocabulary (class in owlapy.vocab)": [[23, "owlapy.vocab.XSDVocabulary"]], "from_str() (owlapy.vocab.owlfacet static method)": [[23, "owlapy.vocab.OWLFacet.from_str"]], "operator (owlapy.vocab.owlfacet property)": [[23, "owlapy.vocab.OWLFacet.operator"]], "owlapy.vocab": [[23, "module-owlapy.vocab"]], "symbolic_form (owlapy.vocab.owlfacet property)": [[23, "owlapy.vocab.OWLFacet.symbolic_form"]]}})
\ No newline at end of file
diff --git a/autoapi/owlapy/owl_literal/index.html b/autoapi/owlapy/owl_literal/index.html
index b224479..1af4e8a 100644
--- a/autoapi/owlapy/owl_literal/index.html
+++ b/autoapi/owlapy/owl_literal/index.html
@@ -56,11 +56,11 @@