Source code for owlapy.owl_class_expression
+ Source code for owlapy.data_ranges
from abc import abstractmethod, ABCMeta
-from .owlobject import OWLObject, OWLEntity
-from .meta_classes import HasOperands
+from ..owlobject import OWLObject, OWLEntity
+from ..meta_classes import HasOperands
from typing import Final, Iterable, Sequence
-from .ranges import OWLPropertyRange, OWLDataRange
-from .owl_literal import OWLLiteral
+from ..ranges import OWLPropertyRange, OWLDataRange
+from ..owl_literal import OWLLiteral
from typing import Final, Sequence, Union, Iterable
-from .iri import IRI
+from ..iri import IRI
+
-[docs]
+[docs]
class OWLDataComplementOf(OWLDataRange):
"""Represents DataComplementOf in the OWL 2 Specification."""
type_index: Final = 4002
@@ -100,7 +101,7 @@ Source code for owlapy.owl_class_expression
self._data_range = data_range
-[docs]
+[docs]
def get_data_range(self) -> OWLDataRange:
"""
Returns:
@@ -110,13 +111,13 @@ Source code for owlapy.owl_class_expression
-[docs]
+[docs]
def __eq__(self, other):
if type(other) is type(self):
return self._data_range == other._data_range
@@ -124,14 +125,14 @@ Source code for owlapy.owl_class_expression
-[docs]
+[docs]
class OWLNaryDataRange(OWLDataRange, HasOperands[OWLDataRange]):
"""OWLNaryDataRange."""
__slots__ = ()
@@ -146,20 +147,20 @@ Source code for owlapy.owl_class_expression
self._operands = tuple(operands)
-[docs]
+[docs]
def operands(self) -> Iterable[OWLDataRange]:
# documented in parent
yield from self._operands
-[docs]
+[docs]
def __eq__(self, other):
if type(other) == type(self):
return self._operands == other._operands
@@ -167,14 +168,14 @@ Source code for owlapy.owl_class_expression
-[docs]
+[docs]
class OWLDataUnionOf(OWLNaryDataRange):
"""Represents a DataUnionOf data range in the OWL 2 Specification."""
__slots__ = '_operands'
@@ -184,7 +185,7 @@ Source code for owlapy.owl_class_expression
-[docs]
+[docs]
class OWLDataIntersectionOf(OWLNaryDataRange):
"""Represents DataIntersectionOf in the OWL 2 Specification."""
__slots__ = '_operands'
diff --git a/_modules/owlapy/iri.html b/_modules/owlapy/iri.html
index d232d3e..f764ab0 100644
--- a/_modules/owlapy/iri.html
+++ b/_modules/owlapy/iri.html
@@ -109,7 +109,7 @@ Source code for owlapy.iri
-[docs]
+[docs]
class IRI(OWLAnnotationSubject, OWLAnnotationValue, metaclass=_meta_IRI):
"""An IRI, consisting of a namespace and a remainder."""
__slots__ = '_namespace', '_remainder', '__weakref__'
@@ -161,7 +161,7 @@ Source code for owlapy.iri
...
-[docs]
+[docs]
@staticmethod
def create(string, remainder=None) -> 'IRI':
if remainder is not None:
@@ -171,13 +171,13 @@ Source code for owlapy.iri
-[docs]
+[docs]
def __eq__(self, other):
if type(other) is type(self):
return self._namespace is other._namespace and self._remainder == other._remainder
@@ -185,13 +185,13 @@ Source code for owlapy.iri
-[docs]
+[docs]
def is_nothing(self):
"""Determines if this IRI is equal to the IRI that owl:Nothing is named with.
@@ -203,7 +203,7 @@ Source code for owlapy.iri
-[docs]
+[docs]
def is_thing(self):
"""Determines if this IRI is equal to the IRI that owl:Thing is named with.
@@ -215,7 +215,7 @@ Source code for owlapy.iri
-[docs]
+[docs]
def is_reserved_vocabulary(self) -> bool:
"""Determines if this IRI is in the reserved vocabulary. An IRI is in the reserved vocabulary if it starts with
<http://www.w3.org/1999/02/22-rdf-syntax-ns#> or <http://www.w3.org/2000/01/rdf-schema#> or
@@ -229,14 +229,14 @@ Source code for owlapy.iri
-[docs]
+[docs]
def as_str(self) -> str:
"""
CD: Should be deprecated.
@@ -265,7 +265,7 @@ Source code for owlapy.iri
return self.reminder()
-[docs]
+[docs]
def get_short_form(self) -> str:
"""Gets the short form.
@@ -276,7 +276,7 @@ Source code for owlapy.iri
-[docs]
+[docs]
def get_namespace(self) -> str:
"""
Returns:
@@ -286,7 +286,7 @@ Source code for owlapy.iri
-[docs]
+[docs]
def get_remainder(self) -> str:
"""
Returns:
diff --git a/_modules/owlapy/meta_classes.html b/_modules/owlapy/meta_classes.html
index daace16..15be607 100644
--- a/_modules/owlapy/meta_classes.html
+++ b/_modules/owlapy/meta_classes.html
@@ -84,13 +84,13 @@ Source code for owlapy.meta_classes
-[docs]
+[docs]
class HasIRI(metaclass=ABCMeta):
"""Simple class to access the IRI."""
__slots__ = ()
-[docs]
+[docs]
@abstractmethod
def get_iri(self) -> 'IRI':
"""Gets the IRI of this object.
@@ -104,7 +104,7 @@ Source code for owlapy.meta_classes
-[docs]
+[docs]
class HasOperands(Generic[_T], metaclass=ABCMeta):
"""An interface to objects that have a collection of operands.
@@ -114,7 +114,7 @@ Source code for owlapy.meta_classes
__slots__ = ()
-[docs]
+[docs]
@abstractmethod
def operands(self) -> Iterable[_T]:
"""Gets the operands - e.g., the individuals in a sameAs axiom, or the classes in an equivalent
@@ -129,7 +129,7 @@ Source code for owlapy.meta_classes
-[docs]
+[docs]
class HasFiller(Generic[_T], metaclass=ABCMeta):
"""An interface to objects that have a filler.
@@ -139,7 +139,7 @@ Source code for owlapy.meta_classes
__slots__ = ()
-[docs]
+[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
@@ -155,13 +155,13 @@ Source code for owlapy.meta_classes
-[docs]
+[docs]
class HasCardinality(metaclass=ABCMeta):
"""An interface to objects that have a cardinality."""
__slots__ = ()
-[docs]
+[docs]
@abstractmethod
def get_cardinality(self) -> int:
"""Gets the cardinality of a restriction.
diff --git a/_modules/owlapy/model.html b/_modules/owlapy/model.html
index 565b97e..f6324bc 100644
--- a/_modules/owlapy/model.html
+++ b/_modules/owlapy/model.html
@@ -91,7 +91,7 @@ Source code for owlapy.model
OWLObjectUnionOf, OWLObjectComplementOf
from owlapy.class_expression import OWLThing, OWLNothing, OWLClass
-from owlapy.owl_class_expression import OWLPropertyRange, OWLDataRange
+from owlapy.data_ranges import OWLPropertyRange, OWLDataRange
from owlapy.owl_property import OWLObjectPropertyExpression, OWLProperty, OWLPropertyExpression, \
OWLDataPropertyExpression, OWLDataProperty, OWLObjectProperty
diff --git a/_modules/owlapy/owl_literal.html b/_modules/owlapy/owl_literal.html
index 77c658f..66fd60e 100644
--- a/_modules/owlapy/owl_literal.html
+++ b/_modules/owlapy/owl_literal.html
@@ -90,7 +90,7 @@ Source code for owlapy.owl_literal
_R = TypeVar('_R', bound='OWLPropertyRange') #:
-[docs]
+[docs]
class OWLLiteral(OWLAnnotationValue, metaclass=ABCMeta):
"""Represents a Literal in the OWL 2 Specification."""
__slots__ = ()
@@ -139,7 +139,7 @@ Source code for owlapy.owl_literal
raise NotImplementedError(value)
-[docs]
+[docs]
def get_literal(self) -> str:
"""Gets the lexical value of this literal. Note that the language tag is not included.
@@ -150,14 +150,14 @@ Source code for owlapy.owl_literal
-[docs]
+[docs]
def is_boolean(self) -> bool:
"""Whether this literal is typed as boolean."""
return False
-[docs]
+[docs]
def parse_boolean(self) -> bool:
"""Parses the lexical value of this literal into a bool. The lexical value of this literal should be in the
lexical space of the boolean datatype ("http://www.w3.org/2001/XMLSchema#boolean").
@@ -169,14 +169,14 @@ Source code for owlapy.owl_literal
-[docs]
+[docs]
def is_double(self) -> bool:
"""Whether this literal is typed as double."""
return False
-[docs]
+[docs]
def parse_double(self) -> float:
"""Parses the lexical value of this literal into a double. The lexical value of this literal should be in the
lexical space of the double datatype ("http://www.w3.org/2001/XMLSchema#double").
@@ -188,14 +188,14 @@ Source code for owlapy.owl_literal
-[docs]
+[docs]
def is_integer(self) -> bool:
"""Whether this literal is typed as integer."""
return False
-[docs]
+[docs]
def parse_integer(self) -> int:
"""Parses the lexical value of this literal into an integer. The lexical value of this literal should be in the
lexical space of the integer datatype ("http://www.w3.org/2001/XMLSchema#integer").
@@ -207,14 +207,14 @@ Source code for owlapy.owl_literal
-[docs]
+[docs]
def is_string(self) -> bool:
"""Whether this literal is typed as string."""
return False
-[docs]
+[docs]
def parse_string(self) -> str:
"""Parses the lexical value of this literal into a string. The lexical value of this literal should be in the
lexical space of the string datatype ("http://www.w3.org/2001/XMLSchema#string").
@@ -226,14 +226,14 @@ Source code for owlapy.owl_literal
-[docs]
+[docs]
def is_date(self) -> bool:
"""Whether this literal is typed as date."""
return False
-[docs]
+[docs]
def parse_date(self) -> date:
"""Parses the lexical value of this literal into a date. The lexical value of this literal should be in the
lexical space of the date datatype ("http://www.w3.org/2001/XMLSchema#date").
@@ -245,14 +245,14 @@ Source code for owlapy.owl_literal
-[docs]
+[docs]
def is_datetime(self) -> bool:
"""Whether this literal is typed as dateTime."""
return False
-[docs]
+[docs]
def parse_datetime(self) -> datetime:
"""Parses the lexical value of this literal into a datetime. The lexical value of this literal should be in the
lexical space of the dateTime datatype ("http://www.w3.org/2001/XMLSchema#dateTime").
@@ -264,14 +264,14 @@ Source code for owlapy.owl_literal
-[docs]
+[docs]
def is_duration(self) -> bool:
"""Whether this literal is typed as duration."""
return False
-[docs]
+[docs]
def parse_duration(self) -> Timedelta:
"""Parses the lexical value of this literal into a Timedelta. The lexical value of this literal should be in the
lexical space of the duration datatype ("http://www.w3.org/2001/XMLSchema#duration").
@@ -284,27 +284,27 @@ Source code for owlapy.owl_literal
# noinspection PyMethodMayBeStatic
-[docs]
+[docs]
@abstractmethod
def get_datatype(self) -> OWLDatatype:
"""Gets the OWLDatatype which types this literal.
diff --git a/_modules/owlapy/owlobject.html b/_modules/owlapy/owlobject.html
index 31f2af0..b952ca5 100644
--- a/_modules/owlapy/owlobject.html
+++ b/_modules/owlapy/owlobject.html
@@ -80,26 +80,28 @@ Source code for owlapy.owlobject
from typing import Optional
from .meta_classes import HasIRI
+
+[docs]
class OWLObject(metaclass=ABCMeta):
"""Base interface for OWL objects"""
__slots__ = ()
@@ -107,19 +109,20 @@ Source code for owlapy.owlobject
-[docs]
+[docs]
class OWLObjectRenderer(metaclass=ABCMeta):
"""Abstract class with a render method to render an OWL Object into a string."""
-[docs]
+[docs]
@abstractmethod
def set_short_form_provider(self, short_form_provider) -> None:
"""Configure a short form provider that shortens the OWL objects during rendering.
@@ -131,7 +134,7 @@ Source code for owlapy.owlobject
-[docs]
+[docs]
@abstractmethod
def render(self, o: OWLObject) -> str:
"""Render OWL Object to string.
@@ -148,11 +151,11 @@ Source code for owlapy.owlobject
-[docs]
+[docs]
class OWLObjectParser(metaclass=ABCMeta):
"""Abstract class with a parse method to parse a string to an OWL Object."""
-[docs]
+[docs]
@abstractmethod
def parse_expression(self, expression_str: str) -> OWLObject:
"""Parse a string to an OWL Object.
@@ -169,7 +172,7 @@ Source code for owlapy.owlobject
-[docs]
+[docs]
class OWLNamedObject(OWLObject, HasIRI, metaclass=ABCMeta):
"""Represents a named object for example, class, property, ontology etc. - i.e. anything that has an
IRI as its name."""
@@ -178,7 +181,7 @@ Source code for owlapy.owlobject
_iri: 'IRI'
-[docs]
+[docs]
def __eq__(self, other):
if type(other) is type(self):
return self._iri == other._iri
@@ -186,7 +189,7 @@ Source code for owlapy.owlobject
-[docs]
+[docs]
def __lt__(self, other):
if type(other) is type(self):
return self._iri.as_str() < other._iri.as_str()
@@ -194,13 +197,13 @@ Source code for owlapy.owlobject
@@ -210,19 +213,19 @@ Source code for owlapy.owlobject
-[docs]
+[docs]
class OWLEntity(OWLNamedObject, metaclass=ABCMeta):
"""Represents Entities in the OWL 2 Specification."""
__slots__ = ()
diff --git a/_modules/owlapy/parser.html b/_modules/owlapy/parser.html
index 07725dd..abbdc14 100644
--- a/_modules/owlapy/parser.html
+++ b/_modules/owlapy/parser.html
@@ -97,7 +97,7 @@ Source code for owlapy.parser
OWLLiteral, OWLDataRange, OWLDataOneOf, OWLDatatype, OWLObjectCardinalityRestriction, \
OWLDataCardinalityRestriction, OWLObjectAllValuesFrom, OWLDataAllValuesFrom, BooleanOWLDatatype
-from owlapy.owl_class_expression import OWLDataIntersectionOf, OWLDataUnionOf, OWLDataComplementOf
+from owlapy.data_ranges import OWLDataIntersectionOf, OWLDataUnionOf, OWLDataComplementOf
from owlapy.owl_restriction import OWLObjectHasValue, OWLDatatypeRestriction, OWLFacetRestriction, OWLObjectOneOf
diff --git a/_modules/owlapy/ranges.html b/_modules/owlapy/ranges.html
index 1fdbb8a..556d303 100644
--- a/_modules/owlapy/ranges.html
+++ b/_modules/owlapy/ranges.html
@@ -80,14 +80,14 @@ Source code for owlapy.ranges
from .owlobject import OWLObject
# @TODO: metaclass=ABCMeta inheritance may not be required since OWLObject is defined as such
-[docs]
+[docs]
class OWLPropertyRange(OWLObject, metaclass=ABCMeta):
"""OWL Objects that can be the ranges of properties."""
-[docs]
+[docs]
class OWLDataRange(OWLPropertyRange, metaclass=ABCMeta):
"""Represents a DataRange in the OWL 2 Specification."""
diff --git a/_modules/owlapy/render.html b/_modules/owlapy/render.html
index e5c933f..71bb0f4 100644
--- a/_modules/owlapy/render.html
+++ b/_modules/owlapy/render.html
@@ -97,7 +97,8 @@ Source code for owlapy.render
OWLDataHasValue, OWLDataOneOf, OWLDataMaxCardinality, \
OWLDataMinCardinality, OWLDataExactCardinality)
from owlapy.vocab import OWLFacet
-from .owl_class_expression import OWLNaryDataRange, OWLDataComplementOf, OWLDataUnionOf, OWLDataIntersectionOf
+
+from .data_ranges import OWLNaryDataRange, OWLDataComplementOf, OWLDataUnionOf, OWLDataIntersectionOf
from .owl_restriction import OWLObjectHasValue, OWLFacetRestriction, OWLDatatypeRestriction, OWLObjectOneOf
_DL_SYNTAX = types.SimpleNamespace(
diff --git a/_modules/owlapy/util.html b/_modules/owlapy/util.html
index b7caa68..258b4d0 100644
--- a/_modules/owlapy/util.html
+++ b/_modules/owlapy/util.html
@@ -89,7 +89,7 @@ Source code for owlapy.util
OWLDatatype,OWLDataOneOf, OWLLiteral, OWLObjectIntersectionOf, \
OWLDataCardinalityRestriction, OWLNaryBooleanClassExpression, OWLObjectUnionOf, \
OWLDataRange, OWLObject
-from .owl_class_expression import OWLDataComplementOf, OWLDataUnionOf, OWLDataIntersectionOf, OWLNaryDataRange
+from .data_ranges import OWLDataComplementOf, OWLDataUnionOf, OWLDataIntersectionOf, OWLNaryDataRange
from .owl_restriction import OWLObjectHasValue, OWLDatatypeRestriction, OWLFacetRestriction, OWLObjectOneOf
_HasIRI = TypeVar('_HasIRI', bound=HasIRI) #:
diff --git a/_sources/autoapi/owlapy/data_ranges/index.rst.txt b/_sources/autoapi/owlapy/data_ranges/index.rst.txt
new file mode 100644
index 0000000..884f1d9
--- /dev/null
+++ b/_sources/autoapi/owlapy/data_ranges/index.rst.txt
@@ -0,0 +1,469 @@
+:py:mod:`owlapy.data_ranges`
+============================
+
+.. py:module:: owlapy.data_ranges
+
+
+Package Contents
+----------------
+
+Classes
+~~~~~~~
+
+.. autoapisummary::
+
+ owlapy.data_ranges.OWLObject
+ owlapy.data_ranges.OWLEntity
+ owlapy.data_ranges.HasOperands
+ owlapy.data_ranges.OWLPropertyRange
+ owlapy.data_ranges.OWLDataRange
+ owlapy.data_ranges.OWLLiteral
+ owlapy.data_ranges.IRI
+ owlapy.data_ranges.OWLDataComplementOf
+ owlapy.data_ranges.OWLNaryDataRange
+ owlapy.data_ranges.OWLDataUnionOf
+ owlapy.data_ranges.OWLDataIntersectionOf
+
+
+
+
+.. py:class:: OWLObject
+
+
+ Base interface for OWL objects
+
+ .. py:attribute:: __slots__
+ :value: ()
+
+
+
+ .. py:method:: __eq__(other)
+ :abstractmethod:
+
+ Return self==value.
+
+
+ .. py:method:: __hash__()
+ :abstractmethod:
+
+ Return hash(self).
+
+
+ .. py:method:: __repr__()
+ :abstractmethod:
+
+ Return repr(self).
+
+
+ .. py:method:: is_anonymous() -> bool
+
+
+
+.. py:class:: OWLEntity
+
+
+ Bases: :py:obj:`OWLNamedObject`
+
+ Represents Entities in the OWL 2 Specification.
+
+ .. py:attribute:: __slots__
+ :value: ()
+
+
+
+ .. py:method:: to_string_id() -> str
+
+
+ .. py:method:: is_anonymous() -> bool
+
+
+
+.. 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:: OWLPropertyRange
+
+
+ Bases: :py:obj:`owlapy.owlobject.OWLObject`
+
+ OWL Objects that can be the ranges of properties.
+
+
+.. py:class:: OWLDataRange
+
+
+ Bases: :py:obj:`OWLPropertyRange`
+
+ Represents a DataRange in the OWL 2 Specification.
+
+
+.. 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
+
+ Gets the lexical value of this literal. Note that the language tag is not included.
+
+ :returns: The lexical value of this literal.
+
+
+ .. py:method:: is_boolean() -> bool
+
+ Whether this literal is typed as boolean.
+
+
+ .. py:method:: parse_boolean() -> bool
+
+ Parses the lexical value of this literal into a bool. The lexical value of this literal should be in the
+ lexical space of the boolean datatype ("http://www.w3.org/2001/XMLSchema#boolean").
+
+ :returns: A bool value that is represented by this literal.
+
+
+ .. py:method:: is_double() -> bool
+
+ Whether this literal is typed as double.
+
+
+ .. py:method:: parse_double() -> float
+
+ Parses the lexical value of this literal into a double. The lexical value of this literal should be in the
+ lexical space of the double datatype ("http://www.w3.org/2001/XMLSchema#double").
+
+ :returns: A double value that is represented by this literal.
+
+
+ .. py:method:: is_integer() -> bool
+
+ Whether this literal is typed as integer.
+
+
+ .. py:method:: parse_integer() -> int
+
+ Parses the lexical value of this literal into an integer. The lexical value of this literal should be in the
+ lexical space of the integer datatype ("http://www.w3.org/2001/XMLSchema#integer").
+
+ :returns: An integer value that is represented by this literal.
+
+
+ .. py:method:: is_string() -> bool
+
+ Whether this literal is typed as string.
+
+
+ .. py:method:: parse_string() -> str
+
+ Parses the lexical value of this literal into a string. The lexical value of this literal should be in the
+ lexical space of the string datatype ("http://www.w3.org/2001/XMLSchema#string").
+
+ :returns: A string value that is represented by this literal.
+
+
+ .. py:method:: is_date() -> bool
+
+ Whether this literal is typed as date.
+
+
+ .. py:method:: parse_date() -> datetime.date
+
+ Parses the lexical value of this literal into a date. The lexical value of this literal should be in the
+ lexical space of the date datatype ("http://www.w3.org/2001/XMLSchema#date").
+
+ :returns: A date value that is represented by this literal.
+
+
+ .. py:method:: is_datetime() -> bool
+
+ Whether this literal is typed as dateTime.
+
+
+ .. py:method:: parse_datetime() -> datetime.datetime
+
+ Parses the lexical value of this literal into a datetime. The lexical value of this literal should be in the
+ lexical space of the dateTime datatype ("http://www.w3.org/2001/XMLSchema#dateTime").
+
+ :returns: A datetime value that is represented by this literal.
+
+
+ .. py:method:: is_duration() -> bool
+
+ Whether this literal is typed as duration.
+
+
+ .. py:method:: parse_duration() -> pandas.Timedelta
+
+ Parses the lexical value of this literal into a Timedelta. The lexical value of this literal should be in the
+ lexical space of the duration datatype ("http://www.w3.org/2001/XMLSchema#duration").
+
+ :returns: A Timedelta value that is represented by this literal.
+
+
+ .. py:method:: is_literal() -> bool
+
+ :returns: true if the annotation value is a literal
+
+
+ .. py:method:: as_literal() -> OWLLiteral
+
+ :returns: if the value is a literal, returns it. Return None otherwise
+
+
+ .. py:method:: to_python() -> Literals
+
+
+ .. py:method:: get_datatype() -> owlapy.types.OWLDatatype
+ :abstractmethod:
+
+ Gets the OWLDatatype which types this literal.
+
+ :returns: The OWLDatatype that types this literal.
+
+
+
+.. py:class:: IRI(namespace: Union[str, owlapy.namespaces.Namespaces], remainder: str)
+
+
+ Bases: :py:obj:`owlapy.owl_annotation.OWLAnnotationSubject`, :py:obj:`owlapy.owl_annotation.OWLAnnotationValue`
+
+ An IRI, consisting of a namespace and a remainder.
+
+ .. py:property:: str
+ :type: str
+
+ Returns:
+ The string that specifies the IRI.
+
+ .. py:property:: reminder
+ :type: str
+
+ Returns:
+ The string corresponding to the reminder of the IRI.
+
+ .. py:attribute:: __slots__
+ :value: ('_namespace', '_remainder', '__weakref__')
+
+
+
+ .. py:attribute:: type_index
+ :type: Final
+ :value: 0
+
+
+
+ .. py:method:: create(namespace: owlapy.namespaces.Namespaces, remainder: str) -> IRI
+ create(namespace: str, remainder: str) -> IRI
+ create(string: str) -> IRI
+ :staticmethod:
+
+
+ .. py:method:: __repr__()
+
+ Return repr(self).
+
+
+ .. py:method:: __eq__(other)
+
+ Return self==value.
+
+
+ .. py:method:: __hash__()
+
+ Return hash(self).
+
+
+ .. py:method:: is_nothing()
+
+ Determines if this IRI is equal to the IRI that owl:Nothing is named with.
+
+ :returns: True if this IRI is equal to and otherwise False.
+
+
+ .. py:method:: is_thing()
+
+ Determines if this IRI is equal to the IRI that owl:Thing is named with.
+
+ :returns: True if this IRI is equal to and otherwise False.
+
+
+ .. py:method:: is_reserved_vocabulary() -> bool
+
+ Determines if this IRI is in the reserved vocabulary. An IRI is in the reserved vocabulary if it starts with
+ or or
+ or .
+
+ :returns: True if the IRI is in the reserved vocabulary, otherwise False.
+
+
+ .. py:method:: as_iri() -> IRI
+
+ :returns: if the value is an IRI, return it. Return Mone otherwise.
+
+
+ .. py:method:: as_str() -> str
+
+ CD: Should be deprecated.
+ :returns: The string that specifies the IRI.
+
+
+ .. py:method:: get_short_form() -> str
+
+ Gets the short form.
+
+ :returns: A string that represents the short form.
+
+
+ .. py:method:: get_namespace() -> str
+
+ :returns: The namespace as string.
+
+
+ .. py:method:: get_remainder() -> str
+
+ :returns: The remainder (coincident with NCName usually) for this IRI.
+
+
+
+.. 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
+
+
+
+
diff --git a/_sources/autoapi/owlapy/index.rst.txt b/_sources/autoapi/owlapy/index.rst.txt
index 1f95cff..60baf60 100644
--- a/_sources/autoapi/owlapy/index.rst.txt
+++ b/_sources/autoapi/owlapy/index.rst.txt
@@ -11,6 +11,7 @@ Subpackages
:maxdepth: 3
class_expression/index.rst
+ data_ranges/index.rst
model/index.rst
owl2sparql/index.rst
@@ -27,7 +28,6 @@ Submodules
namespaces/index.rst
owl_annotation/index.rst
owl_axiom/index.rst
- owl_class_expression/index.rst
owl_individual/index.rst
owl_literal/index.rst
owl_property/index.rst
diff --git a/_sources/autoapi/owlapy/owl_class_expression/index.rst.txt b/_sources/autoapi/owlapy/owl_class_expression/index.rst.txt
deleted file mode 100644
index b56d4ea..0000000
--- a/_sources/autoapi/owlapy/owl_class_expression/index.rst.txt
+++ /dev/null
@@ -1,130 +0,0 @@
-:py:mod:`owlapy.owl_class_expression`
-=====================================
-
-.. py:module:: owlapy.owl_class_expression
-
-
-Module Contents
----------------
-
-Classes
-~~~~~~~
-
-.. autoapisummary::
-
- owlapy.owl_class_expression.OWLDataComplementOf
- owlapy.owl_class_expression.OWLNaryDataRange
- owlapy.owl_class_expression.OWLDataUnionOf
- owlapy.owl_class_expression.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:: 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
-
-
-
-
diff --git a/autoapi/owlapy/class_expression/class_expression/index.html b/autoapi/owlapy/class_expression/class_expression/index.html
index 6a1e48e..4be40b4 100644
--- a/autoapi/owlapy/class_expression/class_expression/index.html
+++ b/autoapi/owlapy/class_expression/class_expression/index.html
@@ -66,6 +66,7 @@
Package Contents
+owlapy.data_ranges
owlapy.model
owlapy.owl2sparql
diff --git a/autoapi/owlapy/class_expression/index.html b/autoapi/owlapy/class_expression/index.html
index b5e1c79..8b9e58b 100644
--- a/autoapi/owlapy/class_expression/index.html
+++ b/autoapi/owlapy/class_expression/index.html
@@ -80,6 +80,7 @@
+owlapy.data_ranges
owlapy.model
owlapy.owl2sparql
diff --git a/autoapi/owlapy/class_expression/nary_boolean_expression/index.html b/autoapi/owlapy/class_expression/nary_boolean_expression/index.html
index 13fd7e7..9ea68c2 100644
--- a/autoapi/owlapy/class_expression/nary_boolean_expression/index.html
+++ b/autoapi/owlapy/class_expression/nary_boolean_expression/index.html
@@ -66,6 +66,7 @@
Package Contents
+owlapy.data_ranges
owlapy.model
owlapy.owl2sparql
diff --git a/autoapi/owlapy/class_expression/owl_class/index.html b/autoapi/owlapy/class_expression/owl_class/index.html
index 489cb15..7314036 100644
--- a/autoapi/owlapy/class_expression/owl_class/index.html
+++ b/autoapi/owlapy/class_expression/owl_class/index.html
@@ -25,7 +25,7 @@
-
+
@@ -66,6 +66,7 @@
Package Contents
+owlapy.data_ranges
owlapy.model
owlapy.owl2sparql
@@ -207,7 +208,7 @@ Classes
diff --git a/autoapi/owlapy/model/providers/index.html b/autoapi/owlapy/model/providers/index.html
index f4e22d7..448c7dd 100644
--- a/autoapi/owlapy/model/providers/index.html
+++ b/autoapi/owlapy/model/providers/index.html
@@ -54,6 +54,7 @@
owlapy
- Subpackages
owlapy.class_expression
+owlapy.data_ranges
owlapy.model
- Submodules
owlapy.model.providers
diff --git a/autoapi/owlapy/namespaces/index.html b/autoapi/owlapy/namespaces/index.html
index a4918a9..215d52b 100644
--- a/autoapi/owlapy/namespaces/index.html
+++ b/autoapi/owlapy/namespaces/index.html
@@ -74,7 +74,6 @@
owlapy.owl_annotation
owlapy.owl_axiom
-owlapy.owl_class_expression
owlapy.owl_individual
owlapy.owl_literal
owlapy.owl_property
diff --git a/autoapi/owlapy/owl2sparql/converter/index.html b/autoapi/owlapy/owl2sparql/converter/index.html
index d0a7d45..afd4e98 100644
--- a/autoapi/owlapy/owl2sparql/converter/index.html
+++ b/autoapi/owlapy/owl2sparql/converter/index.html
@@ -54,6 +54,7 @@
owlapy
- Subpackages
owlapy.class_expression
+owlapy.data_ranges
owlapy.model
owlapy.owl2sparql
- Submodules
diff --git a/autoapi/owlapy/owl2sparql/index.html b/autoapi/owlapy/owl2sparql/index.html
index fa345f7..18ff14d 100644
--- a/autoapi/owlapy/owl2sparql/index.html
+++ b/autoapi/owlapy/owl2sparql/index.html
@@ -54,6 +54,7 @@
owlapy
- Subpackages
owlapy.class_expression
+owlapy.data_ranges
owlapy.model
owlapy.owl2sparql
- Submodules
diff --git a/autoapi/owlapy/owl_annotation/index.html b/autoapi/owlapy/owl_annotation/index.html
index 6051b16..12a12bf 100644
--- a/autoapi/owlapy/owl_annotation/index.html
+++ b/autoapi/owlapy/owl_annotation/index.html
@@ -71,7 +71,6 @@
owlapy.owl_axiom
-owlapy.owl_class_expression
owlapy.owl_individual
owlapy.owl_literal
owlapy.owl_property
@@ -146,7 +145,7 @@ Classes
-
-as_iri() IRI | None [source]
+as_iri() IRI | None [source]
- Returns:
if the value is an IRI, return it. Return Mone otherwise.
@@ -200,7 +199,7 @@ Classes
-
-as_literal() OWLLiteral | None [source]
+as_literal() OWLLiteral | None [source]
- Returns:
if the value is a literal, returns it. Return None otherwise
diff --git a/autoapi/owlapy/owl_axiom/index.html b/autoapi/owlapy/owl_axiom/index.html
index 1feaeb1..1d9641a 100644
--- a/autoapi/owlapy/owl_axiom/index.html
+++ b/autoapi/owlapy/owl_axiom/index.html
@@ -25,7 +25,7 @@
-
+
@@ -126,7 +126,6 @@
-owlapy.owl_class_expression
owlapy.owl_individual
owlapy.owl_literal
owlapy.owl_property
@@ -1773,7 +1772,7 @@ Classes
diff --git a/autoapi/owlapy/owl_class_expression/index.html b/autoapi/owlapy/owl_class_expression/index.html
deleted file mode 100644
index a5a6b4b..0000000
--- a/autoapi/owlapy/owl_class_expression/index.html
+++ /dev/null
@@ -1,292 +0,0 @@
-
-
-
-
-
-
- owlapy.owl_class_expression — OWLAPY 0.1.2 documentation
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-owlapy.owl_class_expression
-
-Module Contents
-
-Classes
-
-
-
-Represents DataComplementOf 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_class_expression.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_class_expression.OWLNaryDataRange(operands: Iterable[owlapy.ranges.OWLDataRange])[source]
-Bases: owlapy.ranges.OWLDataRange
, owlapy.meta_classes.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_class_expression.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_class_expression.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 d8aaf47..55140a0 100644
--- a/autoapi/owlapy/owl_individual/index.html
+++ b/autoapi/owlapy/owl_individual/index.html
@@ -26,7 +26,7 @@
-
+
@@ -60,7 +60,6 @@
owlapy.namespaces
owlapy.owl_annotation
owlapy.owl_axiom
-owlapy.owl_class_expression
owlapy.owl_individual
owlapy.namespaces
owlapy.owl_annotation
owlapy.owl_axiom
-owlapy.owl_class_expression
owlapy.owl_individual
owlapy.owl_literal
- Module Contents
diff --git a/autoapi/owlapy/owl_property/index.html b/autoapi/owlapy/owl_property/index.html
index 09c0065..bfc9065 100644
--- a/autoapi/owlapy/owl_property/index.html
+++ b/autoapi/owlapy/owl_property/index.html
@@ -60,7 +60,6 @@
owlapy.namespaces
owlapy.owl_annotation
owlapy.owl_axiom
-owlapy.owl_class_expression
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 86ed7cb..8059da3 100644
--- a/autoapi/owlapy/owl_restriction/index.html
+++ b/autoapi/owlapy/owl_restriction/index.html
@@ -60,7 +60,6 @@
owlapy.namespaces
owlapy.owl_annotation
owlapy.owl_axiom
-owlapy.owl_class_expression
owlapy.owl_individual
owlapy.owl_literal
owlapy.owl_property
diff --git a/autoapi/owlapy/owlobject/index.html b/autoapi/owlapy/owlobject/index.html
index e920529..67fe4d3 100644
--- a/autoapi/owlapy/owlobject/index.html
+++ b/autoapi/owlapy/owlobject/index.html
@@ -60,7 +60,6 @@
owlapy.namespaces
owlapy.owl_annotation
owlapy.owl_axiom
-owlapy.owl_class_expression
owlapy.owl_individual
owlapy.owl_literal
owlapy.owl_property
diff --git a/autoapi/owlapy/parser/index.html b/autoapi/owlapy/parser/index.html
index 7c5418f..9e367b0 100644
--- a/autoapi/owlapy/parser/index.html
+++ b/autoapi/owlapy/parser/index.html
@@ -60,7 +60,6 @@
owlapy.namespaces
owlapy.owl_annotation
owlapy.owl_axiom
-owlapy.owl_class_expression
owlapy.owl_individual
owlapy.owl_literal
owlapy.owl_property
diff --git a/autoapi/owlapy/ranges/index.html b/autoapi/owlapy/ranges/index.html
index 8f02a99..545407e 100644
--- a/autoapi/owlapy/ranges/index.html
+++ b/autoapi/owlapy/ranges/index.html
@@ -60,7 +60,6 @@
owlapy.namespaces
owlapy.owl_annotation
owlapy.owl_axiom
-owlapy.owl_class_expression
owlapy.owl_individual
owlapy.owl_literal
owlapy.owl_property
diff --git a/autoapi/owlapy/render/index.html b/autoapi/owlapy/render/index.html
index 1adfc8d..7e7fbbd 100644
--- a/autoapi/owlapy/render/index.html
+++ b/autoapi/owlapy/render/index.html
@@ -60,7 +60,6 @@
owlapy.namespaces
owlapy.owl_annotation
owlapy.owl_axiom
-owlapy.owl_class_expression
owlapy.owl_individual
owlapy.owl_literal
owlapy.owl_property
diff --git a/autoapi/owlapy/types/index.html b/autoapi/owlapy/types/index.html
index a6d09b4..e21905b 100644
--- a/autoapi/owlapy/types/index.html
+++ b/autoapi/owlapy/types/index.html
@@ -60,7 +60,6 @@
owlapy.namespaces
owlapy.owl_annotation
owlapy.owl_axiom
-owlapy.owl_class_expression
owlapy.owl_individual
owlapy.owl_literal
owlapy.owl_property
diff --git a/autoapi/owlapy/util/index.html b/autoapi/owlapy/util/index.html
index 0193818..0a11ec7 100644
--- a/autoapi/owlapy/util/index.html
+++ b/autoapi/owlapy/util/index.html
@@ -60,7 +60,6 @@
owlapy.namespaces
owlapy.owl_annotation
owlapy.owl_axiom
-owlapy.owl_class_expression
owlapy.owl_individual
owlapy.owl_literal
owlapy.owl_property
diff --git a/autoapi/owlapy/vocab/index.html b/autoapi/owlapy/vocab/index.html
index d4bf49c..c9c5b97 100644
--- a/autoapi/owlapy/vocab/index.html
+++ b/autoapi/owlapy/vocab/index.html
@@ -59,7 +59,6 @@
owlapy.namespaces
owlapy.owl_annotation
owlapy.owl_axiom
-owlapy.owl_class_expression
owlapy.owl_individual
owlapy.owl_literal
owlapy.owl_property
diff --git a/genindex.html b/genindex.html
index 756f381..fc2eedb 100644
--- a/genindex.html
+++ b/genindex.html
@@ -118,6 +118,14 @@ _
- (owlapy.class_expression.OWLNaryBooleanClassExpression method)
- (owlapy.class_expression.OWLObjectComplementOf method)
+
+ - (owlapy.data_ranges.IRI method)
+
+ - (owlapy.data_ranges.OWLDataComplementOf method)
+
+ - (owlapy.data_ranges.OWLNaryDataRange method)
+
+ - (owlapy.data_ranges.OWLObject method)
- (owlapy.has.HasIndex method)
@@ -196,10 +204,6 @@ _
- (owlapy.owl_axiom.OWLSubClassOfAxiom method)
- (owlapy.owl_axiom.OWLSubPropertyAxiom method)
-
- - (owlapy.owl_class_expression.OWLDataComplementOf method)
-
- - (owlapy.owl_class_expression.OWLNaryDataRange method)
- (owlapy.owl_property.OWLObjectInverseOf method)
@@ -250,6 +254,14 @@ _
- (owlapy.class_expression.OWLNaryBooleanClassExpression method)
- (owlapy.class_expression.OWLObjectComplementOf method)
+
+ - (owlapy.data_ranges.IRI method)
+
+ - (owlapy.data_ranges.OWLDataComplementOf method)
+
+ - (owlapy.data_ranges.OWLNaryDataRange method)
+
+ - (owlapy.data_ranges.OWLObject method)
- (owlapy.iri.IRI method)
@@ -322,10 +334,6 @@ _
- (owlapy.owl_axiom.OWLSubClassOfAxiom method)
- (owlapy.owl_axiom.OWLSubPropertyAxiom method)
-
- - (owlapy.owl_class_expression.OWLDataComplementOf method)
-
- - (owlapy.owl_class_expression.OWLNaryDataRange method)
- (owlapy.owl_property.OWLObjectInverseOf method)
@@ -374,6 +382,14 @@ _
- (owlapy.class_expression.OWLNaryBooleanClassExpression method)
- (owlapy.class_expression.OWLObjectComplementOf method)
+
+ - (owlapy.data_ranges.IRI method)
+
+ - (owlapy.data_ranges.OWLDataComplementOf method)
+
+ - (owlapy.data_ranges.OWLNaryDataRange method)
+
+ - (owlapy.data_ranges.OWLObject method)
- (owlapy.iri.IRI method)
@@ -448,10 +464,6 @@ _
- (owlapy.owl_axiom.OWLSubClassOfAxiom method)
- (owlapy.owl_axiom.OWLSubPropertyAxiom method)
-
- - (owlapy.owl_class_expression.OWLDataComplementOf method)
-
- - (owlapy.owl_class_expression.OWLNaryDataRange method)
- (owlapy.owl_property.OWLObjectInverseOf method)
@@ -516,6 +528,22 @@ _
- (owlapy.class_expression.OWLObjectIntersectionOf attribute)
- (owlapy.class_expression.OWLObjectUnionOf attribute)
+
+ - (owlapy.data_ranges.HasOperands attribute)
+
+ - (owlapy.data_ranges.IRI attribute)
+
+ - (owlapy.data_ranges.OWLDataIntersectionOf attribute)
+
+ - (owlapy.data_ranges.OWLDataUnionOf attribute)
+
+ - (owlapy.data_ranges.OWLEntity attribute)
+
+ - (owlapy.data_ranges.OWLLiteral attribute)
+
+ - (owlapy.data_ranges.OWLNaryDataRange attribute)
+
+ - (owlapy.data_ranges.OWLObject attribute)
- (owlapy.iri.IRI attribute)
@@ -776,12 +804,6 @@ _
- (owlapy.owl_axiom.OWLTransitiveObjectPropertyAxiom attribute)
- (owlapy.owl_axiom.OWLUnaryPropertyAxiom attribute)
-
- - (owlapy.owl_class_expression.OWLDataIntersectionOf attribute)
-
- - (owlapy.owl_class_expression.OWLDataUnionOf attribute)
-
- - (owlapy.owl_class_expression.OWLNaryDataRange attribute)
- (owlapy.owl_individual.OWLIndividual attribute)
@@ -914,9 +936,11 @@ A
- (owlapy.owl_restriction.OWLObjectExactCardinality method)
- - as_iri() (owlapy.iri.IRI method)
+
- as_iri() (owlapy.data_ranges.IRI method)
+ - (owlapy.iri.IRI method)
+
- (owlapy.model.IRI method)
- (owlapy.model.OWLAnnotationObject method)
@@ -926,9 +950,11 @@
A
-
-
+
- contains_owl_thing() (owlapy.model.OWLEquivalentClassesAxiom method)
@@ -1028,9 +1056,11 @@ C
- converter (in module owlapy.owl2sparql.converter)
- - create() (owlapy.iri.IRI static method)
+
- create() (owlapy.data_ranges.IRI static method)
@@ -1214,13 +1244,15 @@ G
- get_class_nnf() (owlapy.util.NNF method)
- - get_data_range() (owlapy.owl_class_expression.OWLDataComplementOf method)
+
- get_data_range() (owlapy.data_ranges.OWLDataComplementOf method)
- get_datarange() (owlapy.owl_axiom.OWLDatatypeDefinitionAxiom method)
- - get_datatype() (owlapy.model.OWLLiteral method)
+
- get_datatype() (owlapy.data_ranges.OWLLiteral method)
- - get_literal() (owlapy.model.OWLLiteral method)
+
- get_literal() (owlapy.data_ranges.OWLLiteral method)
@@ -1336,9 +1370,11 @@ G
- (owlapy.owl_property.OWLObjectPropertyExpression method)
- - get_namespace() (owlapy.iri.IRI method)
+
- get_namespace() (owlapy.data_ranges.IRI method)
@@ -1468,9 +1504,11 @@ G
- (owlapy.owl_axiom.OWLPropertyRangeAxiom method)
- - get_remainder() (owlapy.iri.IRI method)
+
- get_remainder() (owlapy.data_ranges.IRI method)
@@ -1478,9 +1516,11 @@ G
- get_second_property() (owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom method)
- - get_short_form() (owlapy.iri.IRI method)
+
- get_short_form() (owlapy.data_ranges.IRI method)
@@ -1554,9 +1594,11 @@ H
- (class in owlapy.model)
- - HasOperands (class in owlapy.meta_classes)
+
- HasOperands (class in owlapy.data_ranges)
@@ -1590,9 +1632,11 @@ I
- (in module owlapy.owl_literal)
- - IRI (class in owlapy.iri)
+
- IRI (class in owlapy.data_ranges)
@@ -1620,9 +1664,13 @@ I
- (owlapy.owl_axiom.OWLAxiom method)
- - is_anonymous() (owlapy.model.OWLEntity method)
+
- is_anonymous() (owlapy.data_ranges.OWLEntity method)
- - is_boolean() (owlapy.model.OWLLiteral method)
+
- is_boolean() (owlapy.data_ranges.OWLLiteral method)
@@ -1660,41 +1710,55 @@ I
- (owlapy.owl_restriction.OWLRestriction method)
- - is_date() (owlapy.model.OWLLiteral method)
+
- is_date() (owlapy.data_ranges.OWLLiteral method)
- - is_datetime() (owlapy.model.OWLLiteral method)
+
- is_datetime() (owlapy.data_ranges.OWLLiteral method)
- - is_double() (owlapy.model.OWLLiteral method)
+
- is_double() (owlapy.data_ranges.OWLLiteral method)
- - is_duration() (owlapy.model.OWLLiteral method)
+
- is_duration() (owlapy.data_ranges.OWLLiteral method)
- - is_integer() (owlapy.model.OWLLiteral method)
+
- is_integer() (owlapy.data_ranges.OWLLiteral method)
+
+
-
- is_logical_axiom() (owlapy.model.OWLAxiom method)
@@ -1712,9 +1774,11 @@ I
- (owlapy.owl_axiom.OWLLogicalAxiom method)
- - is_nothing() (owlapy.iri.IRI method)
+
- is_nothing() (owlapy.data_ranges.IRI method)
@@ -1794,21 +1858,27 @@ I
- (owlapy.owl_property.OWLPropertyExpression method)
- - is_reserved_vocabulary() (owlapy.iri.IRI method)
+
- is_reserved_vocabulary() (owlapy.data_ranges.IRI method)
- - is_string() (owlapy.model.OWLLiteral method)
+
- is_string() (owlapy.data_ranges.OWLLiteral method)
- - is_thing() (owlapy.iri.IRI method)
+
- is_thing() (owlapy.data_ranges.IRI method)
@@ -1929,6 +1999,8 @@ M
- owlapy.class_expression.nary_boolean_expression
- owlapy.class_expression.owl_class
+
+ - owlapy.data_ranges
- owlapy.has
@@ -1949,8 +2021,6 @@ M
- owlapy.owl_annotation
- owlapy.owl_axiom
-
- - owlapy.owl_class_expression
- owlapy.owl_individual
@@ -2051,6 +2121,10 @@ O
- (owlapy.class_expression.OWLNaryBooleanClassExpression method)
- (owlapy.class_expression.OWLObjectComplementOf method)
+
+ - (owlapy.data_ranges.HasOperands method)
+
+ - (owlapy.data_ranges.OWLNaryDataRange method)
- (owlapy.meta_classes.HasOperands method)
@@ -2063,8 +2137,6 @@ O
- (owlapy.model.OWLObjectComplementOf method)
- (owlapy.owl_axiom.OWLHasKeyAxiom method)
-
- - (owlapy.owl_class_expression.OWLNaryDataRange method)
- (owlapy.owl_restriction.OWLDataOneOf method)
@@ -2229,6 +2301,13 @@ O
- module
+
+
+ -
+ owlapy.data_ranges
+
+
+ - module
-
@@ -2299,13 +2378,6 @@
O
- module
-
-
- -
- owlapy.owl_class_expression
-
-
- - module
-
@@ -2453,7 +2525,7 @@
O
- (class in owlapy.owl_restriction)
- - OWLDataComplementOf (class in owlapy.owl_class_expression)
+
- OWLDataComplementOf (class in owlapy.data_ranges)
- OWLDataExactCardinality (class in owlapy.model)
@@ -2467,7 +2539,7 @@
O
- (class in owlapy.owl_restriction)
- - OWLDataIntersectionOf (class in owlapy.owl_class_expression)
+
- OWLDataIntersectionOf (class in owlapy.data_ranges)
- OWLDataMaxCardinality (class in owlapy.model)
@@ -2487,14 +2559,14 @@
O
- (class in owlapy.owl_restriction)
-
-
+
- OWLDataPropertyAssertionAxiom (class in owlapy.owl_axiom)
- OWLDataPropertyAxiom (class in owlapy.owl_axiom)
@@ -2519,9 +2591,11 @@
O
- (class in owlapy.owl_axiom)
- - OWLDataRange (class in owlapy.model)
+
- OWLDataRange (class in owlapy.data_ranges)
@@ -2559,7 +2633,7 @@ O
- OWLDatatypeRestriction (class in owlapy.owl_restriction)
- - OWLDataUnionOf (class in owlapy.owl_class_expression)
+
- OWLDataUnionOf (class in owlapy.data_ranges)
- OWLDeclarationAxiom (class in owlapy.owl_axiom)
@@ -2573,9 +2647,11 @@ O
- OWLDisjointUnionAxiom (class in owlapy.owl_axiom)
- - OWLEntity (class in owlapy.model)
+
- OWLEntity (class in owlapy.data_ranges)
@@ -2625,9 +2701,11 @@ O
- OWLIrreflexiveObjectPropertyAxiom (class in owlapy.owl_axiom)
- - OWLLiteral (class in owlapy.model)
+
- OWLLiteral (class in owlapy.data_ranges)
@@ -2653,7 +2731,7 @@ O
- OWLNaryClassAxiom (class in owlapy.owl_axiom)
- - OWLNaryDataRange (class in owlapy.owl_class_expression)
+
- OWLNaryDataRange (class in owlapy.data_ranges)
- OWLNaryIndividualAxiom (class in owlapy.owl_axiom)
@@ -2669,9 +2747,11 @@ O
- (in module owlapy.model)
- - OWLObject (class in owlapy.model)
+
- OWLObject (class in owlapy.data_ranges)
@@ -2813,9 +2893,11 @@ O
- (class in owlapy.owl_property)
- - OWLPropertyRange (class in owlapy.model)
+
- OWLPropertyRange (class in owlapy.data_ranges)
@@ -2903,36 +2985,48 @@ P
- parent_var (owlapy.owl2sparql.converter.Owl2SparqlConverter attribute)
- - parse_boolean() (owlapy.model.OWLLiteral method)
+
- parse_boolean() (owlapy.data_ranges.OWLLiteral method)
- - parse_date() (owlapy.model.OWLLiteral method)
+
- parse_date() (owlapy.data_ranges.OWLLiteral method)
- - parse_datetime() (owlapy.model.OWLLiteral method)
+
- parse_datetime() (owlapy.data_ranges.OWLLiteral method)
- - parse_double() (owlapy.model.OWLLiteral method)
+
- parse_double() (owlapy.data_ranges.OWLLiteral method)
- - parse_duration() (owlapy.model.OWLLiteral method)
+
- parse_duration() (owlapy.data_ranges.OWLLiteral method)
+
+
- parse_expression() (owlapy.owlobject.OWLObjectParser method)
@@ -2941,17 +3035,19 @@ P
- (owlapy.parser.ManchesterOWLSyntaxParser method)
-
-
- - parse_integer() (owlapy.model.OWLLiteral method)
+
- parse_integer() (owlapy.data_ranges.OWLLiteral method)
- - parse_string() (owlapy.model.OWLLiteral method)
+
- parse_string() (owlapy.data_ranges.OWLLiteral method)
@@ -2995,6 +3091,8 @@ R
- (owlapy.class_expression.OWLClass property)
+
+ - (owlapy.data_ranges.IRI property)
- (owlapy.iri.IRI property)
@@ -3057,6 +3155,8 @@ S
- (owlapy.class_expression.OWLClass property)
+
+ - (owlapy.data_ranges.IRI property)
- (owlapy.iri.IRI property)
@@ -3117,15 +3217,19 @@ T
- (in module owlapy.owl_literal)
- - to_python() (owlapy.model.OWLLiteral method)
+
- to_python() (owlapy.data_ranges.OWLLiteral method)
- - to_string_id() (owlapy.model.OWLEntity method)
+
- to_string_id() (owlapy.data_ranges.OWLEntity method)
@@ -3163,6 +3267,16 @@ T
- (owlapy.class_expression.OWLObjectIntersectionOf attribute)
- (owlapy.class_expression.OWLObjectUnionOf attribute)
+
+ - (owlapy.data_ranges.IRI attribute)
+
+ - (owlapy.data_ranges.OWLDataComplementOf attribute)
+
+ - (owlapy.data_ranges.OWLDataIntersectionOf attribute)
+
+ - (owlapy.data_ranges.OWLDataUnionOf attribute)
+
+ - (owlapy.data_ranges.OWLLiteral attribute)
- (owlapy.has.HasIndex attribute)
@@ -3217,12 +3331,6 @@ T
- (owlapy.model.OWLObjectUnionOf attribute)
- (owlapy.model.OWLOntology attribute)
-
- - (owlapy.owl_class_expression.OWLDataComplementOf attribute)
-
- - (owlapy.owl_class_expression.OWLDataIntersectionOf attribute)
-
- - (owlapy.owl_class_expression.OWLDataUnionOf attribute)
- (owlapy.owl_individual.OWLNamedIndividual attribute)
diff --git a/objects.inv b/objects.inv
index ca88677..cd2b0cc 100644
Binary files a/objects.inv and b/objects.inv differ
diff --git a/owlapy.pdf b/owlapy.pdf
index 6519d61..2f270ec 100644
Binary files a/owlapy.pdf and b/owlapy.pdf differ
diff --git a/py-modindex.html b/py-modindex.html
index 82ed8f5..bcd31fd 100644
--- a/py-modindex.html
+++ b/py-modindex.html
@@ -119,6 +119,11 @@ Python Module Index
owlapy.class_expression.owl_class
+
+
+
+ owlapy.data_ranges
+
@@ -169,11 +174,6 @@ Python Module Index
owlapy.owl_axiom
-
-
-
- owlapy.owl_class_expression
-
diff --git a/searchindex.js b/searchindex.js
index 1eb00de..1b6b9e5 100644
--- a/searchindex.js
+++ b/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"docnames": ["autoapi/owlapy/_utils/index", "autoapi/owlapy/class_expression/class_expression/index", "autoapi/owlapy/class_expression/index", "autoapi/owlapy/class_expression/nary_boolean_expression/index", "autoapi/owlapy/class_expression/owl_class/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/class_expression/class_expression/index.rst", "autoapi/owlapy/class_expression/index.rst", "autoapi/owlapy/class_expression/nary_boolean_expression/index.rst", "autoapi/owlapy/class_expression/owl_class/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.class_expression.class_expression
", "owlapy.class_expression
", "owlapy.class_expression.nary_boolean_expression
", "owlapy.class_expression.owl_class
", "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, 9], "arg": [0, 9], "sourc": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27], "an": [0, 1, 2, 3, 4, 5, 7, 8, 9, 12, 14, 15, 16, 18, 19, 20, 21, 22, 26], "import": [0, 9, 15], "class": 0, "current": [0, 9], "set": [0, 9, 12, 15, 18, 19], "__module__": [0, 9], "attribut": 0, "thi": [0, 1, 2, 4, 5, 7, 8, 9, 15, 17, 18, 19, 20, 22, 25, 26], "i": [0, 1, 2, 4, 5, 7, 9, 14, 15, 18, 19, 20, 21, 22, 26], "us": [0, 5, 9, 12, 15, 19, 20, 22, 26], "document": [0, 9], "purpos": [0, 9], "hide": [0, 9], "intern": [0, 9], "packag": [0, 28], "sphinx": [0, 9], "paramet": [0, 8, 9, 12, 15, 20, 21, 22, 24, 26], "list": [0, 9, 12, 15, 22], "owlclassexpress": [1, 2, 3, 4, 9, 12, 15, 20, 22, 26], "base": [1, 2, 3, 4, 5, 7, 8, 9, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27], "rang": [1, 2, 6, 8, 9, 16, 20, 25], "owlpropertyrang": [1, 2, 9, 23], "owl": [1, 2, 3, 4, 7, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28], "2": [1, 2, 3, 4, 9, 15, 16, 17, 18, 19, 20, 21, 23, 25, 26], "express": [1, 2, 3, 4, 8, 9, 12, 15, 19, 20, 21, 22, 26], "http": [1, 2, 7, 9, 12, 18, 22], "www": [1, 2, 7, 9, 12, 18, 22], "w3": [1, 2, 7, 9, 12, 18, 22], "org": [1, 2, 7, 9, 12, 18, 22], "tr": [1, 2, 9, 12, 22], "owl2": [1, 2, 9, 12, 22], "syntax": [1, 2, 7, 9, 12, 22, 24], "__slots__": [1, 2, 3, 4, 7, 8, 9, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26], "abstract": [1, 2, 8, 9, 12, 15, 18, 19, 20, 21, 22, 26], "is_owl_th": [1, 2, 4, 9], "bool": [1, 2, 4, 7, 9, 12, 14, 15, 18, 19, 20, 21, 26, 27], "determin": [1, 2, 4, 7, 9, 19, 20], "built": [1, 2, 4, 9], "thing": [1, 2, 4, 7, 9, 19], "method": [1, 2, 4, 9, 20, 21, 22], "doe": [1, 2, 4, 9], "equival": [1, 2, 3, 4, 8, 9, 15, 16, 20], "return": [1, 2, 3, 4, 5, 7, 8, 9, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26], "type": [1, 2, 4, 5, 6, 8, 9, 12, 15, 18, 19, 20, 26], "true": [1, 2, 4, 7, 9, 12, 14, 18, 19, 20], "is_owl_noth": [1, 2, 4, 9], "noth": [1, 2, 4, 7, 9], "get_object_complement_of": [1, 2, 4, 9], "owlobjectcomplementof": [1, 2, 4, 9], "get": [1, 2, 3, 4, 7, 8, 9, 15, 16, 17, 18, 19, 20, 25], "object": [1, 2, 4, 5, 8, 9, 14, 15, 17, 19, 20, 21, 22, 23, 24, 25, 26, 28], "complement": [1, 2, 4, 9], "A": [1, 2, 4, 7, 8, 9, 11, 14, 15, 18, 19, 20, 26], "get_nnf": [1, 2, 4, 9], "negat": [1, 2, 4, 9, 26], "normal": [1, 2, 4, 9, 26], "form": [1, 2, 4, 7, 9, 19, 20, 21, 24, 26], "repres": [1, 2, 3, 4, 7, 9, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25], "nnf": [1, 2, 4, 9, 26], "owlanonymousclassexpress": [1, 2, 9, 20], "which": [1, 2, 9, 14, 15, 18, 19, 21, 22], "name": [1, 2, 4, 7, 9, 12, 17, 19, 21, 25, 26, 27], "owlbooleanclassexpress": [1, 2, 3, 9], "anonym": [1, 2, 9, 14, 17], "boolean": [1, 2, 9, 18, 27], "op": [1, 2, 9], "meta_class": [1, 2, 3, 6, 9, 15, 16, 20, 21, 25], "hasoperand": [1, 2, 3, 8, 9, 15, 16, 20], "objectcomplementof": [1, 2, 9], "specif": [1, 2, 3, 9, 15, 16, 17, 18, 19, 20, 21, 23, 25], "_operand": [1, 2, 3, 9, 16], "type_index": [1, 2, 3, 4, 5, 7, 9, 16, 17, 18, 19, 20, 25, 26], "final": [1, 2, 3, 4, 7, 9, 11, 16, 17, 18, 19, 20, 25, 27], "3003": [1, 2, 9], "get_operand": [1, 2, 9], "The": [1, 2, 3, 4, 7, 8, 9, 12, 15, 16, 17, 18, 19, 20, 21, 22, 25, 26], "wrap": [1, 2, 9, 16], "operand": [1, 2, 3, 8, 9, 15, 16, 20, 26], "iter": [1, 2, 3, 8, 9, 12, 15, 16, 20, 26], "e": [1, 2, 3, 8, 9, 12, 15, 16, 19, 20, 21, 26], "g": [1, 2, 3, 8, 9, 15, 16, 19, 20, 26], "individu": [1, 2, 3, 8, 9, 12, 14, 15, 16, 17, 20], "samea": [1, 2, 3, 8, 9, 15, 16, 20], "axiom": [1, 2, 3, 8, 9, 15, 16, 20], "__repr__": [1, 2, 3, 7, 9, 11, 15, 16, 19, 20, 21], "repr": [1, 2, 3, 7, 9, 11, 15, 16, 19, 20, 21], "self": [1, 2, 3, 5, 7, 9, 11, 15, 16, 19, 20, 21, 26], "__eq__": [1, 2, 3, 5, 7, 9, 11, 15, 16, 19, 20, 21, 26], "other": [1, 2, 3, 5, 7, 9, 11, 15, 16, 19, 20, 21, 26], "valu": [1, 2, 3, 5, 7, 8, 9, 11, 12, 14, 15, 16, 18, 19, 20, 21, 26], "__hash__": [1, 2, 3, 7, 9, 11, 15, 16, 19, 20, 21], "hash": [1, 2, 3, 7, 9, 11, 15, 16, 19, 20, 21], "nary_boolean_express": [2, 6], "owl_class": [2, 6, 9, 27], "owlclass": [2, 4, 9, 15, 22], "iri": [2, 4, 6, 8, 9, 14, 15, 17, 19, 21, 22, 25], "str": [2, 4, 7, 9, 11, 12, 17, 18, 19, 21, 22, 24, 27], "owlobject": [2, 4, 6, 9, 14, 15, 17, 19, 20, 22, 23, 24, 25, 26], "owlent": [2, 4, 9, 12, 15, 17, 19, 21, 24, 25], "properti": [2, 4, 7, 9, 11, 12, 15, 17, 19, 20, 21, 23, 27], "remind": [2, 4, 7, 9], "_iri": [2, 4, 9, 15, 17, 19, 25], "_is_noth": [2, 4, 9], "_is_th": [2, 4, 9], "1001": [2, 4, 9], "get_iri": [2, 4, 8, 9, 15, 17, 19, 25], "owlnarybooleanclassexpress": [2, 3, 9], "owlobjectunionof": [2, 3, 9, 26], "objectunionof": [2, 3, 9], "3002": [2, 3, 9], "owlobjectintersectionof": [2, 3, 9, 20], "3001": [2, 3, 9], "owlrdfvocabulari": [2, 9, 27], "namespac": [2, 6, 7, 9, 22, 27], "remaind": [2, 7, 9, 27], "_vocabulari": [2, 9, 27], "enum": [2, 9, 27], "enumer": [2, 9, 20, 27], "rdf": [2, 7, 9, 11, 27], "vocabulari": [2, 7, 9, 27], "owl_th": [2, 9, 27], "owl_noth": [2, 9, 27], "owl_named_individu": [2, 9, 27], "owl_top_object_properti": [2, 9, 27], "owl_bottom_object_properti": [2, 9, 27], "owl_top_data_properti": [2, 9, 27], "owl_bottom_data_properti": [2, 9, 27], "rdfs_liter": [2, 9, 27], "owlth": [2, 9], "owlnoth": [2, 9], "hasindex": [5, 9, 26], "protocol": [5, 9], "interfac": [5, 8, 9, 14, 15, 19, 20, 21], "index": [5, 9], "group": [5, 9], "when": [5, 9], "sort": [5, 9, 15, 26], "classvar": [5, 9], "int": [5, 8, 9, 12, 18, 20, 22, 26], "class_express": [6, 9, 12, 15, 20], "model": [6, 12, 22, 24, 26], "provid": [6, 9, 21, 24], "owl2sparql": 6, "convert": [6, 13, 26], "ha": [6, 9, 21, 26], "owl_annot": [6, 7, 9, 15, 18], "owl_axiom": [6, 9], "owl_class_express": 6, "owl_individu": [6, 9, 15, 20], "owl_liter": [6, 9, 15, 20], "owl_properti": [6, 9, 15, 20], "owl_restrict": [6, 10, 22], "parser": 6, "render": [6, 12, 21], "util": 6, "vocab": [6, 20, 22], "__version__": 6, "0": [6, 7, 9, 26], "1": [6, 9, 12, 20, 26], "3": [6, 26], "owlannotationsubject": [7, 9, 14, 15], "owlannotationvalu": [7, 9, 14, 15, 18], "consist": [7, 9], "string": [7, 9, 18, 21, 22, 24, 27], "specifi": [7, 9], "correspond": [7, 9, 19], "_namespac": [7, 9], "_remaind": [7, 9], "__weakref__": [7, 9], "static": [7, 9, 27], "creat": [7, 9, 10], "is_noth": [7, 9], "equal": [7, 9], "2002": [7, 9], "07": [7, 9], "otherwis": [7, 9, 14, 18], "fals": [7, 9, 12, 24, 26], "is_th": [7, 9], "is_reserved_vocabulari": [7, 9], "reserv": [7, 9], "start": [7, 9], "1999": [7, 9], "02": [7, 9], "22": [7, 9], "n": [7, 9, 11, 22], "2000": [7, 9], "01": [7, 9], "schema": [7, 9], "2001": [7, 9, 18], "xmlschema": [7, 9, 18], "as_iri": [7, 9, 14], "mone": [7, 9, 14], "as_str": [7, 9], "cd": [7, 9], "should": [7, 9, 18, 26], "deprec": [7, 9], "get_short_form": [7, 9], "short": [7, 9, 21, 24], "get_namespac": [7, 9], "get_remaind": [7, 9], "coincid": [7, 9], "ncname": [7, 9], "usual": [7, 9], "hasiri": [8, 9, 21, 25], "simpl": [8, 9], "access": [8, 9], "gener": [8, 9, 12, 15, 20, 26], "_t": [8, 9, 20], "have": [8, 9], "collect": [8, 9], "hasfil": [8, 9, 20], "filler": [8, 9, 20], "get_fil": [8, 9, 20], "restrict": [8, 9, 10, 19, 20], "In": [8, 9, 20], "case": [8, 9, 20, 22], "data": [8, 9, 15, 16, 19, 20, 25], "constant": [8, 9, 20, 26], "For": [8, 9, 19, 20], "quantifi": [8, 9, 20], "hascardin": [8, 9, 20], "cardin": [8, 9, 20], "get_cardin": [8, 9, 20], "non": [8, 9, 20], "neg": [8, 9, 12, 20], "integ": [8, 9, 18, 20, 27], "xsdvocabulari": [9, 27], "xsd": [9, 11, 27], "decim": [9, 27], "long": [9, 27], "doubl": [9, 18, 27], "float": [9, 18, 27], "date": [9, 18, 27], "date_tim": [9, 27], "datetim": [9, 18, 27], "date_time_stamp": [9, 27], "datetimestamp": [9, 27], "durat": [9, 18, 27], "owlfacet": [9, 20, 22, 27], "symbolic_form": [9, 27], "oper": [9, 27], "callabl": [9, 24, 27], "_x": [9, 27], "facet": [9, 20, 27], "min_inclus": [9, 27], "mininclus": [9, 27], "min_exclus": [9, 27], "minexclus": [9, 27], "max_inclus": [9, 27], "maxinclus": [9, 27], "max_exclus": [9, 27], "maxexclus": [9, 27], "length": [9, 27], "min_length": [9, 27], "minlength": [9, 27], "max_length": [9, 27], "maxlength": [9, 27], "pattern": [9, 27], "total_digit": [9, 27], "totaldigit": [9, 27], "fraction_digit": [9, 27], "fractiondigit": [9, 27], "from_str": [9, 27], "modul": 9, "is_anonym": [9, 21], "owlnamedobject": [9, 21], "entiti": [9, 12, 15, 21], "to_string_id": [9, 21], "owlannotationobject": [9, 14], "marker": [9, 14, 19], "annot": [9, 14, 15, 18], "none": [9, 12, 14, 15, 18, 21, 22, 24, 26], "as_anonymous_individu": [9, 14], "subject": [9, 12, 14, 15], "can": [9, 14, 15, 19, 23, 26], "either": [9, 14, 15, 19], "uri": [9, 14], "liter": [9, 14, 18, 20], "is_liter": [9, 14, 18], "as_liter": [9, 14, 18], "owlliter": [9, 14, 15, 18, 20, 22], "owldatarang": [9, 15, 16, 20, 22, 23, 25, 26], "datarang": [9, 15, 23], "owlobjectpropertyexpress": [9, 15, 19, 20, 22], "owlpropertyexpress": [9, 15, 19, 20], "high": [9, 19], "level": [9, 15, 19, 26], "describ": [9, 19], "differ": [9, 19, 24], "get_inverse_properti": [9, 19], "obtain": [9, 19, 20], "invers": [9, 19], "note": [9, 18, 19], "necessarili": [9, 19], "simplest": [9, 19], "get_named_properti": [9, 19], "owlobjectproperti": [9, 19, 22], "p": [9, 19, 20], "inv": [9, 19], "is_object_property_express": [9, 19], "owlproperti": [9, 15, 19], "aren": [9, 19], "t": [9, 15, 19], "By": [9, 19], "definit": [9, 19], "ar": [9, 12, 15, 19, 20], "possibli": [9, 19], "is_data_property_express": [9, 19], "is_owl_top_object_properti": [9, 19], "topobjectproperti": [9, 19], "is_owl_top_data_properti": [9, 19], "topdataproperti": [9, 19], "owldatapropertyexpress": [9, 15, 19, 20], "owldataproperti": [9, 19, 22], "1004": [9, 19], "1002": [9, 19], "owlobjectinverseof": [9, 19], "owlrestrict": [9, 20], "get_properti": [9, 15, 20], "being": [9, 20], "is_data_restrict": [9, 20], "is_object_restrict": [9, 20], "owlobjectallvaluesfrom": [9, 20], "owlquantifiedobjectrestrict": [9, 20, 22], "objectallvaluesfrom": [9, 20], "_properti": [9, 15, 20], "_filler": [9, 20], "3006": [9, 20], "owlobjectsomevaluesfrom": [9, 20], "objectsomevaluesfrom": [9, 20], "3005": [9, 20], "owlquantifiedrestrict": [9, 20], "owlobjectrestrict": [9, 20], "owlhasvaluerestrict": [9, 20], "owldatarestrict": [9, 20], "owlcardinalityrestrict": [9, 20], "_f": [9, 20], "min": [9, 10, 20], "max": [9, 10, 20], "owlobjectmincardin": [9, 20], "owlobjectcardinalityrestrict": [9, 20, 22], "objectmincardin": [9, 20], "_cardin": [9, 20], "3008": [9, 20], "owldataallvaluesfrom": [9, 20], "owlquantifieddatarestrict": [9, 20, 22], "dataallvaluesfrom": [9, 20], "3013": [9, 20], "owlobjecthasself": [9, 20, 22], "objecthasself": [9, 20], "3011": [9, 20], "owlobjectmaxcardin": [9, 20], "objectmaxcardin": [9, 20], "3010": [9, 20], "owlobjectexactcardin": [9, 20], "objectexactcardin": [9, 20], "3009": [9, 20], "as_intersection_of_min_max": [9, 20], "conjunct": [9, 20, 26], "semant": [9, 20], "structur": [9, 20], "simpler": [9, 20], "r": [9, 20], "c": [9, 20, 26], "owldataexactcardin": [9, 20], "owldatacardinalityrestrict": [9, 20, 22], "dataexactcardin": [9, 20], "3016": [9, 20], "d": [9, 20], "owldatamincardin": [9, 20], "datamincardin": [9, 20], "3015": [9, 20], "owldatamaxcardin": [9, 20], "datamaxcardin": [9, 20], "3017": [9, 20], "owldatasomevaluesfrom": [9, 20], "datasomevaluesfrom": [9, 20], "3012": [9, 20], "owldatahasvalu": [9, 20, 22], "datahasvalu": [9, 20], "3014": [9, 20], "as_some_values_from": [9, 20], "conveni": [9, 20], "existenti": [9, 20], "nomin": [9, 20], "simp": [9, 20], "hasvalu": [9, 20], "some": [9, 19, 20], "owldataoneof": [9, 20, 22], "dataoneof": [9, 20], "4003": [9, 20], "oneof": [9, 20], "code": [9, 20], "owlnamedindividu": [9, 12, 17, 22], "owlindividu": [9, 15, 17, 20], "1005": [9, 17], "owlequivalentclassesaxiom": [9, 15], "owlannot": [9, 15], "owlnaryclassaxiom": [9, 15], "equivalentclass": [9, 15], "contains_named_equivalent_class": [9, 15], "contains_owl_noth": [9, 15], "contains_owl_th": [9, 15], "named_class": [9, 15], "owlclassaxiom": [9, 15], "owllogicalaxiom": [9, 15], "owldatapropertydomainaxiom": [9, 15], "property_": [9, 15], "domain": [9, 15], "owlpropertydomainaxiom": [9, 15], "datapropertydomain": [9, 15], "owlaxiom": [9, 15], "ontologi": [9, 15, 21], "contain": [9, 15, 26], "These": [9, 15, 20], "declar": [9, 15], "logic": [9, 15, 22], "_annot": [9, 15], "is_annot": [9, 15], "is_logical_axiom": [9, 15], "is_annotation_axiom": [9, 15], "owldatapropertyrangeaxiom": [9, 15], "range_": [9, 15], "owlpropertyrangeaxiom": [9, 15], "datapropertyrang": [9, 15], "owlobjectpropertydomainaxiom": [9, 15], "objectpropertydomain": [9, 15], "owlobjectpropertyrangeaxiom": [9, 15], "objectpropertyrang": [9, 15], "owldatatyp": [9, 15, 18, 20, 22, 25], "datatyp": [9, 10, 15, 18, 20, 25], "4001": [9, 25], "4008": [9, 18], "get_liter": [9, 18], "lexic": [9, 18], "languag": [9, 18], "tag": [9, 18], "includ": [9, 15, 18], "is_boolean": [9, 18], "whether": [9, 15, 18, 26], "parse_boolean": [9, 18], "pars": [9, 18, 21, 22], "space": [9, 18], "is_doubl": [9, 18], "parse_doubl": [9, 18], "is_integ": [9, 18], "parse_integ": [9, 18], "is_str": [9, 18], "parse_str": [9, 18], "is_dat": [9, 18], "parse_d": [9, 18], "is_datetim": [9, 18], "parse_datetim": [9, 18], "is_dur": [9, 18], "parse_dur": [9, 18], "panda": [9, 18], "timedelta": [9, 18], "to_python": [9, 18], "get_datatyp": [9, 15, 18, 20], "owlontologyid": 9, "ontology_iri": 9, "version_iri": 9, "identifi": 9, "sinc": 9, "do": 9, "thei": 9, "option": 9, "also": [9, 15], "version": 9, "instanc": [9, 12, 20, 26], "bundl": 9, "inform": 9, "togeth": 9, "If": [9, 12], "doesn": [9, 15], "we": [9, 22], "sai": 9, "_ontology_iri": 9, "_version_iri": 9, "get_ontology_iri": 9, "get_version_iri": 9, "get_default_document_iri": 9, "default": [9, 22], "represent": [9, 28], "id": 9, "els": 9, "see": 9, "owlimportsdeclar": 9, "import_iri": 9, "statement": 9, "point": 9, "might": 9, "its": [9, 11, 15, 21], "mandat": 9, "exampl": [9, 12, 19, 21], "resolv": 9, "deploi": 9, "url": 9, "owlontologi": 9, "empti": 9, "mai": 9, "need": 9, "cannot": 9, "modifi": 9, "directli": 9, "chang": 9, "must": 9, "appli": 9, "via": 9, "owlontologymanag": 9, "classes_in_signatur": 9, "signatur": 9, "data_properties_in_signatur": 9, "object_properties_in_signatur": 9, "individuals_in_signatur": 9, "equivalent_classes_axiom": 9, "all": [9, 15, 22, 26], "retriev": 9, "general_class_axiom": 9, "subclass": [9, 22], "complex": 9, "sub": [9, 15], "disjointclass": [9, 15], "onli": [9, 12, 15], "data_property_domain_axiom": 9, "where": 9, "match": 9, "search": 9, "data_property_range_axiom": 9, "object_property_domain_axiom": 9, "object_property_range_axiom": 9, "get_owl_ontology_manag": 9, "_m": 9, "manag": 9, "get_ontology_id": 9, "belong": 9, "check": 9, "owlontologychang": 9, "get_ontologi": 9, "wa": 9, "applic": 9, "addimport": 9, "import_declar": 9, "ad": 9, "_ont": 9, "_declar": 9, "get_import_declar": 9, "pertain": 9, "It": [9, 15], "main": 9, "load": 9, "create_ontologi": 9, "new": 9, "newli": 9, "alreadi": 9, "exist": 9, "load_ontologi": 9, "assum": 9, "map": [9, 12], "expect": 9, "although": 9, "api": 9, "toler": 9, "situat": 9, "apply_chang": 9, "just": 9, "one": [9, 19], "through": 9, "implement": [9, 22], "call": 9, "rais": 9, "changeappli": 9, "unsuccessfulli": 9, "successfulli": 9, "add_axiom": 9, "add": 9, "singl": 9, "remove_axiom": 9, "remov": 9, "from": [9, 12, 26], "save_ontologi": 9, "document_iri": 9, "save": 9, "how": 9, "owlreason": 9, "reason": 9, "over": 9, "closur": 9, "particular": [9, 20], "root": [9, 12], "data_property_domain": 9, "pe": 9, "direct": 9, "indirect": 9, "respect": 9, "whose": 9, "let": 9, "equivalent_class": 9, "result": [9, 12, 22, 26], "super_class": [9, 15], "top": [9, 15, 26], "object_property_domain": 9, "object_property_rang": 9, "objectinverseof": [9, 19], "ce": [9, 12, 26], "only_nam": 9, "entail": 9, "unsatisfi": 9, "bottom": 9, "node": [9, 22], "disjoint_class": 9, "disjoint": 9, "strictsubclassof": 9, "different_individu": 9, "ind": 9, "x": [9, 12], "differentindividu": [9, 15], "same_individu": 9, "same": [9, 26], "sameindividu": [9, 15], "equivalent_object_properti": 9, "simplifi": [9, 20], "equivalentobjectproperti": [9, 15], "bottomdataproperti": 9, "equivalent_data_properti": 9, "dp": 9, "equivalentdataproperti": [9, 15], "data_property_valu": 9, "so": [9, 22], "taken": 9, "account": 9, "each": 9, "l": 9, "datapropertyassert": [9, 15], "object_property_valu": 9, "j": 9, "objectpropertyassert": [9, 15], "flush": 9, "ani": 9, "store": 9, "buffer": 9, "caus": 9, "take": 9, "consider": 9, "directclassassert": 9, "classassert": [9, 15], "sub_class": [9, 15], "strict": 9, "potenti": 9, "descend": 9, "directsubclassof": 9, "disjoint_object_properti": 9, "objectpropertycomplementof": 9, "strictsubobjectpropertyof": 9, "disjoint_data_properti": 9, "datapropertycomplementof": 9, "strictsubdatapropertyof": 9, "sub_data_properti": 9, "subproperti": 9, "directsubdatapropertyof": 9, "super_data_properti": 9, "stream": [9, 15], "super": [9, 15], "ancestor": 9, "sub_object_properti": 9, "directsubobjectpropertyof": 9, "bottomobjectproperti": 9, "super_object_properti": 9, "get_root_ontologi": 9, "": [9, 22], "is_isol": 9, "isol": 9, "is_using_triplestor": 9, "triplestor": 9, "owltopobjectproperti": [9, 18], "owlbottomobjectproperti": [9, 18], "owltopdataproperti": [9, 18], "owlbottomdataproperti": [9, 18], "doubleowldatatyp": [9, 18], "integerowldatatyp": [9, 18], "booleanowldatatyp": [9, 18], "stringowldatatyp": [9, 18], "dateowldatatyp": [9, 18], "datetimeowldatatyp": [9, 18], "durationowldatatyp": [9, 18], "topowldatatyp": [9, 18], "numeric_datatyp": [9, 18], "time_datatyp": [9, 18], "constructor": 10, "restriction_liter": 10, "owldatatypemaxexclusiverestrict": 10, "max_": 10, "owldatatyperestrict": [10, 20, 22], "exclus": 10, "owldatatypeminexclusiverestrict": 10, "min_": 10, "owldatatypemaxinclusiverestrict": 10, "inclus": 10, "owldatatypemininclusiverestrict": 10, "owldatatypeminmaxexclusiverestrict": 10, "owldatatypeminmaxinclusiverestrict": 10, "prefix": 11, "_prefix": 11, "_n": 11, "format": 12, "peek": 12, "last": 12, "element": [12, 26], "arrai": 12, "arr": 12, "variablesmap": 12, "helper": 12, "sparql": [12, 13], "convers": 12, "class_cnt": 12, "prop_cnt": 12, "ind_cnt": 12, "dict": 12, "get_vari": 12, "new_individual_vari": 12, "new_property_vari": 12, "__contains__": [12, 26], "item": [12, 26], "__getitem__": [12, 26], "owl2sparqlconvert": 12, "modal_depth": 12, "current_vari": 12, "variabl": 12, "parent": 12, "parent_var": 12, "variable_ent": 12, "cnt": 12, "grouping_var": 12, "having_condit": 12, "root_vari": 12, "named_individu": 12, "queri": 12, "namedindividu": 12, "stack_vari": 12, "var": 12, "stack_par": 12, "process": 12, "new_count_var": 12, "append_tripl": 12, "predic": 12, "object_": [12, 15], "append": 12, "frag": 12, "tripl": 12, "as_queri": 12, "count": [12, 26], "project": 12, "transform": [12, 26], "posit": 12, "problem": 12, "owl_expression_to_sparql": 12, "unclear": 12, "affect": 15, "mean": 15, "exclud": 15, "owlpropertyaxiom": 15, "owlobjectpropertyaxiom": 15, "owldatapropertyaxiom": 15, "owlindividualaxiom": 15, "owldeclarationaxiom": 15, "_entiti": 15, "get_ent": 15, "owldatatypedefinitionaxiom": 15, "datatypedefinit": 15, "_datatyp": 15, "_datarang": 15, "get_datarang": 15, "owlhaskeyaxiom": 15, "property_express": 15, "haskei": 15, "_class_express": 15, "_property_express": 15, "get_class_express": 15, "get_property_express": 15, "owlnaryaxiom": 15, "_c": 15, "two": 15, "more": [15, 20], "could": 15, "multipl": 15, "pairwis": 15, "as_pairwise_axiom": 15, "appear": 15, "itself": 15, "unchang": 15, "owldisjointclassesaxiom": 15, "owlnaryindividualaxiom": 15, "_individu": 15, "owldifferentindividualsaxiom": 15, "owlsameindividualaxiom": 15, "owlnarypropertyaxiom": 15, "_p": 15, "owlequivalentobjectpropertiesaxiom": 15, "owldisjointobjectpropertiesaxiom": 15, "disjointobjectproperti": 15, "owlinverseobjectpropertiesaxiom": 15, "first": 15, "second": 15, "inverseobjectproperti": 15, "_first": 15, "_second": 15, "get_first_properti": 15, "get_second_properti": 15, "owlequivalentdatapropertiesaxiom": 15, "owldisjointdatapropertiesaxiom": 15, "disjointdataproperti": 15, "owlsubclassofaxiom": 15, "subclassof": 15, "_sub_class": 15, "_super_class": 15, "get_sub_class": 15, "get_super_class": 15, "owldisjointunionaxiom": 15, "cls_": 15, "disjointunion": 15, "_cl": 15, "get_owl_class": 15, "get_owl_equivalent_classes_axiom": 15, "get_owl_disjoint_classes_axiom": 15, "owlclassassertionaxiom": 15, "get_individu": 15, "owlannotationproperti": 15, "annotationproperti": 15, "variou": 15, "bind": 15, "_valu": [15, 20], "act": 15, "along": 15, "get_valu": 15, "depend": [15, 26], "upon": 15, "owlanonymousindividu": 15, "owlannotationaxiom": 15, "owlannotationassertionaxiom": 15, "annotationassert": 15, "_subject": 15, "get_subject": 15, "owlsubannotationpropertyofaxiom": 15, "sub_properti": 15, "super_properti": 15, "subannotationpropertyof": 15, "_sub_properti": 15, "_super_properti": 15, "get_sub_properti": 15, "get_super_properti": 15, "owlannotationpropertydomainaxiom": 15, "annotationpropertydomain": 15, "_domain": 15, "get_domain": 15, "owlannotationpropertyrangeaxiom": 15, "annotationpropertyrang": 15, "_rang": 15, "get_rang": 15, "owlsubpropertyaxiom": 15, "owlsubobjectpropertyofaxiom": 15, "subobjectpropertyof": 15, "owlsubdatapropertyofaxiom": 15, "subdatapropertyof": 15, "owlpropertyassertionaxiom": 15, "propertyassert": 15, "_object": 15, "get_object": 15, "owlobjectpropertyassertionaxiom": 15, "owlnegativeobjectpropertyassertionaxiom": 15, "negativeobjectpropertyassert": 15, "owldatapropertyassertionaxiom": 15, "owlnegativedatapropertyassertionaxiom": 15, "negativedatapropertyassert": 15, "owlunarypropertyaxiom": 15, "unari": 15, "owlobjectpropertycharacteristicaxiom": 15, "function": 15, "owlfunctionalobjectpropertyaxiom": 15, "functionalobjectproperti": 15, "owlasymmetricobjectpropertyaxiom": 15, "asymmetricobjectproperti": 15, "owlinversefunctionalobjectpropertyaxiom": 15, "inversefunctionalobjectproperti": 15, "owlirreflexiveobjectpropertyaxiom": 15, "irreflexiveobjectproperti": 15, "owlreflexiveobjectpropertyaxiom": 15, "reflexiveobjectproperti": 15, "owlsymmetricobjectpropertyaxiom": 15, "symmetricobjectproperti": 15, "owltransitiveobjectpropertyaxiom": 15, "transitiveobjectproperti": 15, "owldatapropertycharacteristicaxiom": 15, "owlfunctionaldatapropertyaxiom": 15, "functionaldataproperti": 15, "_r": 15, "owldatacomplementof": 16, "data_rang": 16, "datacomplementof": 16, "4002": 16, "get_data_rang": 16, "owlnarydatarang": 16, "owldataunionof": 16, "dataunionof": 16, "4005": 16, "owldataintersectionof": 16, "dataintersectionof": 16, "4004": 16, "refer": 19, "without": 19, "actual": 19, "consid": 19, "haspart": 19, "ispartof": 19, "inverseof": 19, "car": 19, "part": 19, "least": 19, "_inverse_properti": 19, "1003": 19, "get_invers": 19, "owlobjectoneof": [20, 22], "objectoneof": 20, "3004": 20, "exact": 20, "extens": 20, "as_object_union_of": 20, "union": 20, "singleton": 20, "standard": 20, "dl": [20, 24], "a0": 20, "unionof": 20, "owlobjecthasvalu": [20, 22], "objecthasvalu": 20, "_v": [20, 26], "3007": 20, "type_": 20, "facet_restrict": 20, "owlfacetrestrict": [20, 22], "datatyperestrict": 20, "_type": 20, "_facet_restrict": 20, "4006": 20, "get_facet_restrict": 20, "sequenc": 20, "_facet": 20, "_liter": 20, "4007": 20, "get_facet": 20, "get_facet_valu": 20, "owlobjectrender": [21, 24], "set_short_form_provid": [21, 24], "short_form_provid": [21, 24], "configur": [21, 24], "shorten": [21, 24, 26], "dure": [21, 24], "o": [21, 24, 26], "rendit": [21, 24], "owlobjectpars": [21, 22], "parse_express": [21, 22], "expression_str": [21, 22], "etc": 21, "anyth": 21, "__lt__": [21, 26], "manchester_grammar": 22, "manchesterowlsyntaxpars": 22, "grammar": 22, "parsimoni": 22, "nodevisitor": 22, "manchest": [22, 24], "follow": [22, 26], "slot": 22, "visit_union": 22, "children": 22, "visit_intersect": 22, "visit_primari": 22, "visit_some_only_r": 22, "visit_cardinality_r": 22, "visit_value_r": 22, "visit_has_self": 22, "visit_object_properti": 22, "visit_class_express": 22, "visit_individual_list": 22, "visit_data_primari": 22, "visit_data_some_only_r": 22, "visit_data_cardinality_r": 22, "visit_data_value_r": 22, "visit_data_union": 22, "visit_data_intersect": 22, "visit_literal_list": 22, "visit_data_parenthes": 22, "visit_datatype_restrict": 22, "visit_facet_restrict": 22, "visit_liter": 22, "visit_typed_liter": 22, "visit_string_literal_languag": 22, "visit_string_literal_no_languag": 22, "visit_quoted_str": 22, "visit_float_liter": 22, "visit_decimal_liter": 22, "visit_integer_liter": 22, "visit_boolean_liter": 22, "visit_datetime_liter": 22, "visit_duration_liter": 22, "visit_date_liter": 22, "visit_non_negative_integ": 22, "visit_datatype_iri": 22, "visit_datatyp": 22, "visit_facet": 22, "visit_class_iri": 22, "visit_individual_iri": 22, "visit_object_property_iri": 22, "visit_data_property_iri": 22, "visit_iri": 22, "visit_full_iri": 22, "visit_abbreviated_iri": 22, "visit_simple_iri": 22, "visit_parenthes": 22, "generic_visit": 22, "visitor": 22, "re": 22, "visit": 22, "visited_children": 22, "m": 22, "sure": 22, "make": 22, "sens": 22, "across": 22, "even": 22, "most": 22, "leav": 22, "now": 22, "dl_grammar": 22, "dlsyntaxpars": 22, "descript": 22, "dlparser": 22, "manchesterpars": 22, "dl_to_owl_express": 22, "dl_express": 22, "manchester_to_owl_express": 22, "manchester_express": 22, "dlsyntaxobjectrender": 24, "_simple_short_form_provid": 24, "_sfp": 24, "manchesterowlsyntaxowlobjectrender": 24, "no_render_th": 24, "_no_render_th": 24, "dlrender": 24, "manchesterrender": 24, "owl_expression_to_dl": 24, "owl_expression_to_manchest": 24, "orderedowlobject": 26, "_hasindex": 26, "holder": 26, "python": [26, 28], "order": 26, "impl": 26, "recurs": 26, "compon": 26, "_chain": 26, "get_class_nnf": 26, "toplevelcnf": 26, "get_top_level_cnf": 26, "topleveldnf": 26, "disjunct": 26, "get_top_level_dnf": 26, "combine_nary_express": 26, "combin": 26, "nest": 26, "nari": 26, "b": 26, "iter_count": 26, "number": 26, "as_index": 26, "cast": 26, "lrucach": 26, "maxsiz": 26, "_k": 26, "share": 26, "lru": 26, "cach": 26, "adapt": 26, "functool": 26, "lru_cach": 26, "sentinel": 26, "uniqu": 26, "signal": 26, "miss": 26, "prev": 26, "link": 26, "field": 26, "next": 26, "kei": 26, "__setitem__": 26, "cache_info": 26, "report": 26, "statist": 26, "cache_clear": 26, "clear": 26, "subpackag": 28, "submodul": 28, "placehold": 29}, "objects": {"": [[6, 0, 0, "-", "owlapy"]], "owlapy": [[6, 1, 1, "", "__version__"], [0, 0, 0, "-", "_utils"], [2, 0, 0, "-", "class_expression"], [5, 0, 0, "-", "has"], [7, 0, 0, "-", "iri"], [8, 0, 0, "-", "meta_classes"], [9, 0, 0, "-", "model"], [11, 0, 0, "-", "namespaces"], [13, 0, 0, "-", "owl2sparql"], [14, 0, 0, "-", "owl_annotation"], [15, 0, 0, "-", "owl_axiom"], [16, 0, 0, "-", "owl_class_expression"], [17, 0, 0, "-", "owl_individual"], [18, 0, 0, "-", "owl_literal"], [19, 0, 0, "-", "owl_property"], [20, 0, 0, "-", "owl_restriction"], [21, 0, 0, "-", "owlobject"], [22, 0, 0, "-", "parser"], [23, 0, 0, "-", "ranges"], [24, 0, 0, "-", "render"], [25, 0, 0, "-", "types"], [26, 0, 0, "-", "util"], [27, 0, 0, "-", "vocab"]], "owlapy._utils": [[0, 2, 1, "", "MOVE"]], "owlapy.class_expression": [[2, 3, 1, "", "OWLAnonymousClassExpression"], [2, 3, 1, "", "OWLBooleanClassExpression"], [2, 3, 1, "", "OWLClass"], [2, 3, 1, "", "OWLClassExpression"], [2, 3, 1, "", "OWLNaryBooleanClassExpression"], [2, 1, 1, "", "OWLNothing"], [2, 3, 1, "", "OWLObjectComplementOf"], [2, 3, 1, "", "OWLObjectIntersectionOf"], [2, 3, 1, "", "OWLObjectUnionOf"], [2, 3, 1, "", "OWLRDFVocabulary"], [2, 1, 1, "", "OWLThing"], [1, 0, 0, "-", "class_expression"], [3, 0, 0, "-", "nary_boolean_expression"], [4, 0, 0, "-", "owl_class"]], "owlapy.class_expression.OWLAnonymousClassExpression": [[2, 4, 1, "", "get_nnf"], [2, 4, 1, "", "get_object_complement_of"], [2, 4, 1, "", "is_owl_nothing"], [2, 4, 1, "", "is_owl_thing"]], "owlapy.class_expression.OWLBooleanClassExpression": [[2, 5, 1, "", "__slots__"]], "owlapy.class_expression.OWLClass": [[2, 5, 1, "", "__slots__"], [2, 4, 1, "", "get_iri"], [2, 4, 1, "", "get_nnf"], [2, 4, 1, "", "get_object_complement_of"], [2, 4, 1, "", "is_owl_nothing"], [2, 4, 1, "", "is_owl_thing"], [2, 6, 1, "", "reminder"], [2, 6, 1, "", "str"], [2, 5, 1, "", "type_index"]], "owlapy.class_expression.OWLClassExpression": [[2, 5, 1, "", "__slots__"], [2, 4, 1, "", "get_nnf"], [2, 4, 1, "", "get_object_complement_of"], [2, 4, 1, "", "is_owl_nothing"], [2, 4, 1, "", "is_owl_thing"]], "owlapy.class_expression.OWLNaryBooleanClassExpression": [[2, 4, 1, "", "__eq__"], [2, 4, 1, "", "__hash__"], [2, 4, 1, "", "__repr__"], [2, 5, 1, "", "__slots__"], [2, 4, 1, "", "operands"]], "owlapy.class_expression.OWLObjectComplementOf": [[2, 4, 1, "", "__eq__"], [2, 4, 1, "", "__hash__"], [2, 4, 1, "", "__repr__"], [2, 5, 1, "", "__slots__"], [2, 4, 1, "", "get_operand"], [2, 4, 1, "", "operands"], [2, 5, 1, "", "type_index"]], "owlapy.class_expression.OWLObjectIntersectionOf": [[2, 5, 1, "", "__slots__"], [2, 5, 1, "", "type_index"]], "owlapy.class_expression.OWLObjectUnionOf": [[2, 5, 1, "", "__slots__"], [2, 5, 1, "", "type_index"]], "owlapy.class_expression.OWLRDFVocabulary": [[2, 5, 1, "", "OWL_BOTTOM_DATA_PROPERTY"], [2, 5, 1, "", "OWL_BOTTOM_OBJECT_PROPERTY"], [2, 5, 1, "", "OWL_CLASS"], [2, 5, 1, "", "OWL_NAMED_INDIVIDUAL"], [2, 5, 1, "", "OWL_NOTHING"], [2, 5, 1, "", "OWL_THING"], [2, 5, 1, "", "OWL_TOP_DATA_PROPERTY"], [2, 5, 1, "", "OWL_TOP_OBJECT_PROPERTY"], [2, 5, 1, "", "RDFS_LITERAL"]], "owlapy.class_expression.class_expression": [[1, 3, 1, "", "OWLAnonymousClassExpression"], [1, 3, 1, "", "OWLBooleanClassExpression"], [1, 3, 1, "", "OWLClassExpression"], [1, 3, 1, "", "OWLObjectComplementOf"]], "owlapy.class_expression.class_expression.OWLAnonymousClassExpression": [[1, 4, 1, "", "get_nnf"], [1, 4, 1, "", "get_object_complement_of"], [1, 4, 1, "", "is_owl_nothing"], [1, 4, 1, "", "is_owl_thing"]], "owlapy.class_expression.class_expression.OWLBooleanClassExpression": [[1, 5, 1, "", "__slots__"]], "owlapy.class_expression.class_expression.OWLClassExpression": [[1, 5, 1, "", "__slots__"], [1, 4, 1, "", "get_nnf"], [1, 4, 1, "", "get_object_complement_of"], [1, 4, 1, "", "is_owl_nothing"], [1, 4, 1, "", "is_owl_thing"]], "owlapy.class_expression.class_expression.OWLObjectComplementOf": [[1, 4, 1, "", "__eq__"], [1, 4, 1, "", "__hash__"], [1, 4, 1, "", "__repr__"], [1, 5, 1, "", "__slots__"], [1, 4, 1, "", "get_operand"], [1, 4, 1, "", "operands"], [1, 5, 1, "", "type_index"]], "owlapy.class_expression.nary_boolean_expression": [[3, 3, 1, "", "OWLNaryBooleanClassExpression"], [3, 3, 1, "", "OWLObjectIntersectionOf"], [3, 3, 1, "", "OWLObjectUnionOf"]], "owlapy.class_expression.nary_boolean_expression.OWLNaryBooleanClassExpression": [[3, 4, 1, "", "__eq__"], [3, 4, 1, "", "__hash__"], [3, 4, 1, "", "__repr__"], [3, 5, 1, "", "__slots__"], [3, 4, 1, "", "operands"]], "owlapy.class_expression.nary_boolean_expression.OWLObjectIntersectionOf": [[3, 5, 1, "", "__slots__"], [3, 5, 1, "", "type_index"]], "owlapy.class_expression.nary_boolean_expression.OWLObjectUnionOf": [[3, 5, 1, "", "__slots__"], [3, 5, 1, "", "type_index"]], "owlapy.class_expression.owl_class": [[4, 3, 1, "", "OWLClass"]], "owlapy.class_expression.owl_class.OWLClass": [[4, 5, 1, "", "__slots__"], [4, 4, 1, "", "get_iri"], [4, 4, 1, "", "get_nnf"], [4, 4, 1, "", "get_object_complement_of"], [4, 4, 1, "", "is_owl_nothing"], [4, 4, 1, "", "is_owl_thing"], [4, 6, 1, "", "reminder"], [4, 6, 1, "", "str"], [4, 5, 1, "", "type_index"]], "owlapy.has": [[5, 3, 1, "", "HasIndex"]], "owlapy.has.HasIndex": [[5, 4, 1, "", "__eq__"], [5, 5, 1, "", "type_index"]], "owlapy.iri": [[7, 3, 1, "", "IRI"]], "owlapy.iri.IRI": [[7, 4, 1, "", "__eq__"], [7, 4, 1, "", "__hash__"], [7, 4, 1, "", "__repr__"], [7, 5, 1, "", "__slots__"], [7, 4, 1, "", "as_iri"], [7, 4, 1, "", "as_str"], [7, 4, 1, "", "create"], [7, 4, 1, "", "get_namespace"], [7, 4, 1, "", "get_remainder"], [7, 4, 1, "", "get_short_form"], [7, 4, 1, "", "is_nothing"], [7, 4, 1, "", "is_reserved_vocabulary"], [7, 4, 1, "", "is_thing"], [7, 6, 1, "", "reminder"], [7, 6, 1, "", "str"], [7, 5, 1, "", "type_index"]], "owlapy.meta_classes": [[8, 3, 1, "", "HasCardinality"], [8, 3, 1, "", "HasFiller"], [8, 3, 1, "", "HasIRI"], [8, 3, 1, "", "HasOperands"]], "owlapy.meta_classes.HasCardinality": [[8, 5, 1, "", "__slots__"], [8, 4, 1, "", "get_cardinality"]], "owlapy.meta_classes.HasFiller": [[8, 5, 1, "", "__slots__"], [8, 4, 1, "", "get_filler"]], "owlapy.meta_classes.HasIRI": [[8, 5, 1, "", "__slots__"], [8, 4, 1, "", "get_iri"]], "owlapy.meta_classes.HasOperands": [[8, 5, 1, "", "__slots__"], [8, 4, 1, "", "operands"]], "owlapy.model": [[9, 3, 1, "", "AddImport"], [9, 1, 1, "", "BooleanOWLDatatype"], [9, 1, 1, "", "DateOWLDatatype"], [9, 1, 1, "", "DateTimeOWLDatatype"], [9, 1, 1, "", "DoubleOWLDatatype"], [9, 1, 1, "", "DurationOWLDatatype"], [9, 3, 1, "", "HasCardinality"], [9, 3, 1, "", "HasFiller"], [9, 3, 1, "", "HasIRI"], [9, 3, 1, "", "HasIndex"], [9, 3, 1, "", "HasOperands"], [9, 3, 1, "", "IRI"], [9, 1, 1, "", "IntegerOWLDatatype"], [9, 1, 1, "", "Literals"], [9, 2, 1, "", "MOVE"], [9, 1, 1, "", "NUMERIC_DATATYPES"], [9, 3, 1, "", "OWLAnnotationObject"], [9, 3, 1, "", "OWLAnnotationSubject"], [9, 3, 1, "", "OWLAnnotationValue"], [9, 3, 1, "", "OWLAxiom"], [9, 1, 1, "", "OWLBottomDataProperty"], [9, 1, 1, "", "OWLBottomObjectProperty"], [9, 3, 1, "", "OWLCardinalityRestriction"], [9, 3, 1, "", "OWLClass"], [9, 3, 1, "", "OWLClassAxiom"], [9, 3, 1, "", "OWLClassExpression"], [9, 3, 1, "", "OWLDataAllValuesFrom"], [9, 3, 1, "", "OWLDataCardinalityRestriction"], [9, 3, 1, "", "OWLDataExactCardinality"], [9, 3, 1, "", "OWLDataHasValue"], [9, 3, 1, "", "OWLDataMaxCardinality"], [9, 3, 1, "", "OWLDataMinCardinality"], [9, 3, 1, "", "OWLDataOneOf"], [9, 3, 1, "", "OWLDataProperty"], [9, 3, 1, "", "OWLDataPropertyDomainAxiom"], [9, 3, 1, "", "OWLDataPropertyExpression"], [9, 3, 1, "", "OWLDataPropertyRangeAxiom"], [9, 3, 1, "", "OWLDataRange"], [9, 3, 1, "", "OWLDataRestriction"], [9, 3, 1, "", "OWLDataSomeValuesFrom"], [9, 3, 1, "", "OWLDatatype"], [9, 3, 1, "", "OWLEntity"], [9, 3, 1, "", "OWLEquivalentClassesAxiom"], [9, 3, 1, "", "OWLFacet"], [9, 3, 1, "", "OWLHasValueRestriction"], [9, 3, 1, "", "OWLImportsDeclaration"], [9, 3, 1, "", "OWLIndividual"], [9, 3, 1, "", "OWLLiteral"], [9, 3, 1, "", "OWLNamedIndividual"], [9, 3, 1, "", "OWLNaryBooleanClassExpression"], [9, 1, 1, "", "OWLNothing"], [9, 3, 1, "", "OWLObject"], [9, 3, 1, "", "OWLObjectAllValuesFrom"], [9, 3, 1, "", "OWLObjectCardinalityRestriction"], [9, 3, 1, "", "OWLObjectComplementOf"], [9, 3, 1, "", "OWLObjectExactCardinality"], [9, 3, 1, "", "OWLObjectHasSelf"], [9, 3, 1, "", "OWLObjectIntersectionOf"], [9, 3, 1, "", "OWLObjectMaxCardinality"], [9, 3, 1, "", "OWLObjectMinCardinality"], [9, 3, 1, "", "OWLObjectProperty"], [9, 3, 1, "", "OWLObjectPropertyDomainAxiom"], [9, 3, 1, "", "OWLObjectPropertyExpression"], [9, 3, 1, "", "OWLObjectPropertyRangeAxiom"], [9, 3, 1, "", "OWLObjectRestriction"], [9, 3, 1, "", "OWLObjectSomeValuesFrom"], [9, 3, 1, "", "OWLObjectUnionOf"], [9, 3, 1, "", "OWLOntology"], [9, 3, 1, "", "OWLOntologyChange"], [9, 3, 1, "", "OWLOntologyID"], [9, 3, 1, "", "OWLOntologyManager"], [9, 3, 1, "", "OWLProperty"], [9, 3, 1, "", "OWLPropertyExpression"], [9, 3, 1, "", "OWLPropertyRange"], [9, 3, 1, "", "OWLQuantifiedDataRestriction"], [9, 3, 1, "", "OWLQuantifiedObjectRestriction"], [9, 3, 1, "", "OWLQuantifiedRestriction"], [9, 3, 1, "", "OWLRDFVocabulary"], [9, 3, 1, "", "OWLReasoner"], [9, 3, 1, "", "OWLRestriction"], [9, 1, 1, "", "OWLThing"], [9, 1, 1, "", "OWLTopDataProperty"], [9, 1, 1, "", "OWLTopObjectProperty"], [9, 1, 1, "", "StringOWLDatatype"], [9, 1, 1, "", "TIME_DATATYPES"], [9, 1, 1, "", "TopOWLDatatype"], [9, 3, 1, "", "XSDVocabulary"], [10, 0, 0, "-", "providers"]], "owlapy.model.AddImport": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_import_declaration"]], "owlapy.model.HasCardinality": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_cardinality"]], "owlapy.model.HasFiller": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_filler"]], "owlapy.model.HasIRI": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_iri"]], "owlapy.model.HasIndex": [[9, 4, 1, "", "__eq__"], [9, 5, 1, "", "type_index"]], "owlapy.model.HasOperands": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "operands"]], "owlapy.model.IRI": [[9, 4, 1, "", "__eq__"], [9, 4, 1, "", "__hash__"], [9, 4, 1, "", "__repr__"], [9, 5, 1, "", "__slots__"], [9, 4, 1, "", "as_iri"], [9, 4, 1, "", "as_str"], [9, 4, 1, "", "create"], [9, 4, 1, "", "get_namespace"], [9, 4, 1, "", "get_remainder"], [9, 4, 1, "", "get_short_form"], [9, 4, 1, "", "is_nothing"], [9, 4, 1, "", "is_reserved_vocabulary"], [9, 4, 1, "", "is_thing"], [9, 6, 1, "", "reminder"], [9, 6, 1, "", "str"], [9, 5, 1, "", "type_index"]], "owlapy.model.OWLAnnotationObject": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "as_anonymous_individual"], [9, 4, 1, "", "as_iri"]], "owlapy.model.OWLAnnotationSubject": [[9, 5, 1, "", "__slots__"]], "owlapy.model.OWLAnnotationValue": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "as_literal"], [9, 4, 1, "", "is_literal"]], "owlapy.model.OWLAxiom": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "annotations"], [9, 4, 1, "", "is_annotated"], [9, 4, 1, "", "is_annotation_axiom"], [9, 4, 1, "", "is_logical_axiom"]], "owlapy.model.OWLCardinalityRestriction": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_cardinality"], [9, 4, 1, "", "get_filler"]], "owlapy.model.OWLClass": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_iri"], [9, 4, 1, "", "get_nnf"], [9, 4, 1, "", "get_object_complement_of"], [9, 4, 1, "", "is_owl_nothing"], [9, 4, 1, "", "is_owl_thing"], [9, 6, 1, "", "reminder"], [9, 6, 1, "", "str"], [9, 5, 1, "", "type_index"]], "owlapy.model.OWLClassAxiom": [[9, 5, 1, "", "__slots__"]], "owlapy.model.OWLClassExpression": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_nnf"], [9, 4, 1, "", "get_object_complement_of"], [9, 4, 1, "", "is_owl_nothing"], [9, 4, 1, "", "is_owl_thing"]], "owlapy.model.OWLDataAllValuesFrom": [[9, 4, 1, "", "__eq__"], [9, 4, 1, "", "__hash__"], [9, 4, 1, "", "__repr__"], [9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_property"], [9, 5, 1, "", "type_index"]], "owlapy.model.OWLDataCardinalityRestriction": [[9, 4, 1, "", "__eq__"], [9, 4, 1, "", "__hash__"], [9, 4, 1, "", "__repr__"], [9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_property"]], "owlapy.model.OWLDataExactCardinality": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "as_intersection_of_min_max"], [9, 5, 1, "", "type_index"]], "owlapy.model.OWLDataHasValue": [[9, 4, 1, "", "__eq__"], [9, 4, 1, "", "__hash__"], [9, 4, 1, "", "__repr__"], [9, 5, 1, "", "__slots__"], [9, 4, 1, "", "as_some_values_from"], [9, 4, 1, "", "get_property"], [9, 5, 1, "", "type_index"]], "owlapy.model.OWLDataMaxCardinality": [[9, 5, 1, "", "__slots__"], [9, 5, 1, "", "type_index"]], "owlapy.model.OWLDataMinCardinality": [[9, 5, 1, "", "__slots__"], [9, 5, 1, "", "type_index"]], "owlapy.model.OWLDataOneOf": [[9, 4, 1, "", "__eq__"], [9, 4, 1, "", "__hash__"], [9, 4, 1, "", "__repr__"], [9, 4, 1, "", "operands"], [9, 5, 1, "", "type_index"], [9, 4, 1, "", "values"]], "owlapy.model.OWLDataProperty": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_iri"], [9, 4, 1, "", "is_owl_top_data_property"], [9, 5, 1, "", "type_index"]], "owlapy.model.OWLDataPropertyDomainAxiom": [[9, 5, 1, "", "__slots__"]], "owlapy.model.OWLDataPropertyExpression": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "is_data_property_expression"]], "owlapy.model.OWLDataPropertyRangeAxiom": [[9, 5, 1, "", "__slots__"]], "owlapy.model.OWLDataRestriction": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "is_data_restriction"]], "owlapy.model.OWLDataSomeValuesFrom": [[9, 4, 1, "", "__eq__"], [9, 4, 1, "", "__hash__"], [9, 4, 1, "", "__repr__"], [9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_property"], [9, 5, 1, "", "type_index"]], "owlapy.model.OWLDatatype": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_iri"], [9, 5, 1, "", "type_index"]], "owlapy.model.OWLEntity": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "is_anonymous"], [9, 4, 1, "", "to_string_id"]], "owlapy.model.OWLEquivalentClassesAxiom": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "contains_named_equivalent_class"], [9, 4, 1, "", "contains_owl_nothing"], [9, 4, 1, "", "contains_owl_thing"], [9, 4, 1, "", "named_classes"]], "owlapy.model.OWLFacet": [[9, 5, 1, "", "FRACTION_DIGITS"], [9, 5, 1, "", "LENGTH"], [9, 5, 1, "", "MAX_EXCLUSIVE"], [9, 5, 1, "", "MAX_INCLUSIVE"], [9, 5, 1, "", "MAX_LENGTH"], [9, 5, 1, "", "MIN_EXCLUSIVE"], [9, 5, 1, "", "MIN_INCLUSIVE"], [9, 5, 1, "", "MIN_LENGTH"], [9, 5, 1, "", "PATTERN"], [9, 5, 1, "", "TOTAL_DIGITS"], [9, 4, 1, "", "from_str"], [9, 6, 1, "", "operator"], [9, 6, 1, "", "symbolic_form"]], "owlapy.model.OWLHasValueRestriction": [[9, 4, 1, "", "__eq__"], [9, 4, 1, "", "__hash__"], [9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_filler"]], "owlapy.model.OWLImportsDeclaration": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_iri"]], "owlapy.model.OWLIndividual": [[9, 5, 1, "", "__slots__"]], "owlapy.model.OWLLiteral": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "as_literal"], [9, 4, 1, "", "get_datatype"], [9, 4, 1, "", "get_literal"], [9, 4, 1, "", "is_boolean"], [9, 4, 1, "", "is_date"], [9, 4, 1, "", "is_datetime"], [9, 4, 1, "", "is_double"], [9, 4, 1, "", "is_duration"], [9, 4, 1, "", "is_integer"], [9, 4, 1, "", "is_literal"], [9, 4, 1, "", "is_string"], [9, 4, 1, "", "parse_boolean"], [9, 4, 1, "", "parse_date"], [9, 4, 1, "", "parse_datetime"], [9, 4, 1, "", "parse_double"], [9, 4, 1, "", "parse_duration"], [9, 4, 1, "", "parse_integer"], [9, 4, 1, "", "parse_string"], [9, 4, 1, "", "to_python"], [9, 5, 1, "", "type_index"]], "owlapy.model.OWLNamedIndividual": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_iri"], [9, 6, 1, "", "iri"], [9, 6, 1, "", "str"], [9, 5, 1, "", "type_index"]], "owlapy.model.OWLNaryBooleanClassExpression": [[9, 4, 1, "", "__eq__"], [9, 4, 1, "", "__hash__"], [9, 4, 1, "", "__repr__"], [9, 5, 1, "", "__slots__"], [9, 4, 1, "", "operands"]], "owlapy.model.OWLObject": [[9, 4, 1, "", "__eq__"], [9, 4, 1, "", "__hash__"], [9, 4, 1, "", "__repr__"], [9, 5, 1, "", "__slots__"], [9, 4, 1, "", "is_anonymous"]], "owlapy.model.OWLObjectAllValuesFrom": [[9, 4, 1, "", "__eq__"], [9, 4, 1, "", "__hash__"], [9, 4, 1, "", "__repr__"], [9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_property"], [9, 5, 1, "", "type_index"]], "owlapy.model.OWLObjectCardinalityRestriction": [[9, 4, 1, "", "__eq__"], [9, 4, 1, "", "__hash__"], [9, 4, 1, "", "__repr__"], [9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_property"]], "owlapy.model.OWLObjectComplementOf": [[9, 4, 1, "", "__eq__"], [9, 4, 1, "", "__hash__"], [9, 4, 1, "", "__repr__"], [9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_operand"], [9, 4, 1, "", "operands"], [9, 5, 1, "", "type_index"]], "owlapy.model.OWLObjectExactCardinality": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "as_intersection_of_min_max"], [9, 5, 1, "", "type_index"]], "owlapy.model.OWLObjectHasSelf": [[9, 4, 1, "", "__eq__"], [9, 4, 1, "", "__hash__"], [9, 4, 1, "", "__repr__"], [9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_property"], [9, 5, 1, "", "type_index"]], "owlapy.model.OWLObjectIntersectionOf": [[9, 5, 1, "", "__slots__"], [9, 5, 1, "", "type_index"]], "owlapy.model.OWLObjectMaxCardinality": [[9, 5, 1, "", "__slots__"], [9, 5, 1, "", "type_index"]], "owlapy.model.OWLObjectMinCardinality": [[9, 5, 1, "", "__slots__"], [9, 5, 1, "", "type_index"]], "owlapy.model.OWLObjectProperty": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_inverse_property"], [9, 4, 1, "", "get_iri"], [9, 4, 1, "", "get_named_property"], [9, 6, 1, "", "iri"], [9, 4, 1, "", "is_owl_top_object_property"], [9, 6, 1, "", "str"], [9, 5, 1, "", "type_index"]], "owlapy.model.OWLObjectPropertyDomainAxiom": [[9, 5, 1, "", "__slots__"]], "owlapy.model.OWLObjectPropertyExpression": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_inverse_property"], [9, 4, 1, "", "get_named_property"], [9, 4, 1, "", "is_object_property_expression"]], "owlapy.model.OWLObjectPropertyRangeAxiom": [[9, 5, 1, "", "__slots__"]], "owlapy.model.OWLObjectRestriction": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_property"], [9, 4, 1, "", "is_object_restriction"]], "owlapy.model.OWLObjectSomeValuesFrom": [[9, 4, 1, "", "__eq__"], [9, 4, 1, "", "__hash__"], [9, 4, 1, "", "__repr__"], [9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_property"], [9, 5, 1, "", "type_index"]], "owlapy.model.OWLObjectUnionOf": [[9, 5, 1, "", "__slots__"], [9, 5, 1, "", "type_index"]], "owlapy.model.OWLOntology": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "classes_in_signature"], [9, 4, 1, "", "data_properties_in_signature"], [9, 4, 1, "", "data_property_domain_axioms"], [9, 4, 1, "", "data_property_range_axioms"], [9, 4, 1, "", "equivalent_classes_axioms"], [9, 4, 1, "", "general_class_axioms"], [9, 4, 1, "", "get_ontology_id"], [9, 4, 1, "", "get_owl_ontology_manager"], [9, 4, 1, "", "individuals_in_signature"], [9, 4, 1, "", "is_anonymous"], [9, 4, 1, "", "object_properties_in_signature"], [9, 4, 1, "", "object_property_domain_axioms"], [9, 4, 1, "", "object_property_range_axioms"], [9, 5, 1, "", "type_index"]], "owlapy.model.OWLOntologyChange": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_ontology"]], "owlapy.model.OWLOntologyID": [[9, 4, 1, "", "__eq__"], [9, 4, 1, "", "__repr__"], [9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_default_document_iri"], [9, 4, 1, "", "get_ontology_iri"], [9, 4, 1, "", "get_version_iri"], [9, 4, 1, "", "is_anonymous"]], "owlapy.model.OWLOntologyManager": [[9, 4, 1, "", "add_axiom"], [9, 4, 1, "", "apply_change"], [9, 4, 1, "", "create_ontology"], [9, 4, 1, "", "load_ontology"], [9, 4, 1, "", "remove_axiom"], [9, 4, 1, "", "save_ontology"]], "owlapy.model.OWLProperty": [[9, 5, 1, "", "__slots__"]], "owlapy.model.OWLPropertyExpression": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "is_data_property_expression"], [9, 4, 1, "", "is_object_property_expression"], [9, 4, 1, "", "is_owl_top_data_property"], [9, 4, 1, "", "is_owl_top_object_property"]], "owlapy.model.OWLQuantifiedDataRestriction": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_filler"]], "owlapy.model.OWLQuantifiedObjectRestriction": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_filler"]], "owlapy.model.OWLQuantifiedRestriction": [[9, 5, 1, "", "__slots__"]], "owlapy.model.OWLRDFVocabulary": [[9, 5, 1, "", "OWL_BOTTOM_DATA_PROPERTY"], [9, 5, 1, "", "OWL_BOTTOM_OBJECT_PROPERTY"], [9, 5, 1, "", "OWL_CLASS"], [9, 5, 1, "", "OWL_NAMED_INDIVIDUAL"], [9, 5, 1, "", "OWL_NOTHING"], [9, 5, 1, "", "OWL_THING"], [9, 5, 1, "", "OWL_TOP_DATA_PROPERTY"], [9, 5, 1, "", "OWL_TOP_OBJECT_PROPERTY"], [9, 5, 1, "", "RDFS_LITERAL"]], "owlapy.model.OWLReasoner": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "data_property_domains"], [9, 4, 1, "", "data_property_values"], [9, 4, 1, "", "different_individuals"], [9, 4, 1, "", "disjoint_classes"], [9, 4, 1, "", "disjoint_data_properties"], [9, 4, 1, "", "disjoint_object_properties"], [9, 4, 1, "", "equivalent_classes"], [9, 4, 1, "", "equivalent_data_properties"], [9, 4, 1, "", "equivalent_object_properties"], [9, 4, 1, "", "flush"], [9, 4, 1, "", "get_root_ontology"], [9, 4, 1, "", "instances"], [9, 4, 1, "", "is_isolated"], [9, 4, 1, "", "is_using_triplestore"], [9, 4, 1, "", "object_property_domains"], [9, 4, 1, "", "object_property_ranges"], [9, 4, 1, "", "object_property_values"], [9, 4, 1, "", "same_individuals"], [9, 4, 1, "", "sub_classes"], [9, 4, 1, "", "sub_data_properties"], [9, 4, 1, "", "sub_object_properties"], [9, 4, 1, "", "super_classes"], [9, 4, 1, "", "super_data_properties"], [9, 4, 1, "", "super_object_properties"], [9, 4, 1, "", "types"]], "owlapy.model.OWLRestriction": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_property"], [9, 4, 1, "", "is_data_restriction"], [9, 4, 1, "", "is_object_restriction"]], "owlapy.model.XSDVocabulary": [[9, 5, 1, "", "BOOLEAN"], [9, 5, 1, "", "DATE"], [9, 5, 1, "", "DATE_TIME"], [9, 5, 1, "", "DATE_TIME_STAMP"], [9, 5, 1, "", "DECIMAL"], [9, 5, 1, "", "DOUBLE"], [9, 5, 1, "", "DURATION"], [9, 5, 1, "", "FLOAT"], [9, 5, 1, "", "INTEGER"], [9, 5, 1, "", "LONG"], [9, 5, 1, "", "STRING"]], "owlapy.model.providers": [[10, 2, 1, "", "OWLDatatypeMaxExclusiveRestriction"], [10, 2, 1, "", "OWLDatatypeMaxInclusiveRestriction"], [10, 2, 1, "", "OWLDatatypeMinExclusiveRestriction"], [10, 2, 1, "", "OWLDatatypeMinInclusiveRestriction"], [10, 2, 1, "", "OWLDatatypeMinMaxExclusiveRestriction"], [10, 2, 1, "", "OWLDatatypeMinMaxInclusiveRestriction"], [10, 1, 1, "", "Restriction_Literals"]], "owlapy.namespaces": [[11, 3, 1, "", "Namespaces"], [11, 1, 1, "", "OWL"], [11, 1, 1, "", "RDF"], [11, 1, 1, "", "RDFS"], [11, 1, 1, "", "XSD"]], "owlapy.namespaces.Namespaces": [[11, 4, 1, "", "__eq__"], [11, 4, 1, "", "__hash__"], [11, 4, 1, "", "__repr__"], [11, 5, 1, "", "__slots__"], [11, 6, 1, "", "ns"], [11, 6, 1, "", "prefix"]], "owlapy.owl2sparql": [[12, 0, 0, "-", "converter"]], "owlapy.owl2sparql.converter": [[12, 3, 1, "", "Owl2SparqlConverter"], [12, 3, 1, "", "VariablesMapping"], [12, 1, 1, "", "converter"], [12, 2, 1, "", "owl_expression_to_sparql"], [12, 2, 1, "", "peek"]], "owlapy.owl2sparql.converter.Owl2SparqlConverter": [[12, 5, 1, "", "__slots__"], [12, 4, 1, "", "append"], [12, 4, 1, "", "append_triple"], [12, 4, 1, "", "as_query"], [12, 5, 1, "", "ce"], [12, 5, 1, "", "cnt"], [12, 4, 1, "", "convert"], [12, 6, 1, "", "current_variable"], [12, 5, 1, "", "grouping_vars"], [12, 5, 1, "", "having_conditions"], [12, 5, 1, "", "mapping"], [12, 6, 1, "", "modal_depth"], [12, 4, 1, "", "new_count_var"], [12, 5, 1, "", "parent"], [12, 5, 1, "", "parent_var"], [12, 4, 1, "", "process"], [12, 5, 1, "", "properties"], [12, 4, 1, "", "render"], [12, 5, 1, "", "sparql"], [12, 4, 1, "", "stack_parent"], [12, 4, 1, "", "stack_variable"], [12, 4, 1, "", "triple"], [12, 5, 1, "", "variable_entities"], [12, 5, 1, "", "variables"]], "owlapy.owl2sparql.converter.VariablesMapping": [[12, 4, 1, "", "__contains__"], [12, 4, 1, "", "__getitem__"], [12, 5, 1, "", "__slots__"], [12, 4, 1, "", "get_variable"], [12, 4, 1, "", "new_individual_variable"], [12, 4, 1, "", "new_property_variable"]], "owlapy.owl_annotation": [[14, 3, 1, "", "OWLAnnotationObject"], [14, 3, 1, "", "OWLAnnotationSubject"], [14, 3, 1, "", "OWLAnnotationValue"]], "owlapy.owl_annotation.OWLAnnotationObject": [[14, 5, 1, "", "__slots__"], [14, 4, 1, "", "as_anonymous_individual"], [14, 4, 1, "", "as_iri"]], "owlapy.owl_annotation.OWLAnnotationSubject": [[14, 5, 1, "", "__slots__"]], "owlapy.owl_annotation.OWLAnnotationValue": [[14, 5, 1, "", "__slots__"], [14, 4, 1, "", "as_literal"], [14, 4, 1, "", "is_literal"]], "owlapy.owl_axiom": [[15, 3, 1, "", "OWLAnnotation"], [15, 3, 1, "", "OWLAnnotationAssertionAxiom"], [15, 3, 1, "", "OWLAnnotationAxiom"], [15, 3, 1, "", "OWLAnnotationProperty"], [15, 3, 1, "", "OWLAnnotationPropertyDomainAxiom"], [15, 3, 1, "", "OWLAnnotationPropertyRangeAxiom"], [15, 3, 1, "", "OWLAsymmetricObjectPropertyAxiom"], [15, 3, 1, "", "OWLAxiom"], [15, 3, 1, "", "OWLClassAssertionAxiom"], [15, 3, 1, "", "OWLClassAxiom"], [15, 3, 1, "", "OWLDataPropertyAssertionAxiom"], [15, 3, 1, "", "OWLDataPropertyAxiom"], [15, 3, 1, "", "OWLDataPropertyCharacteristicAxiom"], [15, 3, 1, "", "OWLDataPropertyDomainAxiom"], [15, 3, 1, "", "OWLDataPropertyRangeAxiom"], [15, 3, 1, "", "OWLDatatypeDefinitionAxiom"], [15, 3, 1, "", "OWLDeclarationAxiom"], [15, 3, 1, "", "OWLDifferentIndividualsAxiom"], [15, 3, 1, "", "OWLDisjointClassesAxiom"], [15, 3, 1, "", "OWLDisjointDataPropertiesAxiom"], [15, 3, 1, "", "OWLDisjointObjectPropertiesAxiom"], [15, 3, 1, "", "OWLDisjointUnionAxiom"], [15, 3, 1, "", "OWLEquivalentClassesAxiom"], [15, 3, 1, "", "OWLEquivalentDataPropertiesAxiom"], [15, 3, 1, "", "OWLEquivalentObjectPropertiesAxiom"], [15, 3, 1, "", "OWLFunctionalDataPropertyAxiom"], [15, 3, 1, "", "OWLFunctionalObjectPropertyAxiom"], [15, 3, 1, "", "OWLHasKeyAxiom"], [15, 3, 1, "", "OWLIndividualAxiom"], [15, 3, 1, "", "OWLInverseFunctionalObjectPropertyAxiom"], [15, 3, 1, "", "OWLInverseObjectPropertiesAxiom"], [15, 3, 1, "", "OWLIrreflexiveObjectPropertyAxiom"], [15, 3, 1, "", "OWLLogicalAxiom"], [15, 3, 1, "", "OWLNaryAxiom"], [15, 3, 1, "", "OWLNaryClassAxiom"], [15, 3, 1, "", "OWLNaryIndividualAxiom"], [15, 3, 1, "", "OWLNaryPropertyAxiom"], [15, 3, 1, "", "OWLNegativeDataPropertyAssertionAxiom"], [15, 3, 1, "", "OWLNegativeObjectPropertyAssertionAxiom"], [15, 3, 1, "", "OWLObjectPropertyAssertionAxiom"], [15, 3, 1, "", "OWLObjectPropertyAxiom"], [15, 3, 1, "", "OWLObjectPropertyCharacteristicAxiom"], [15, 3, 1, "", "OWLObjectPropertyDomainAxiom"], [15, 3, 1, "", "OWLObjectPropertyRangeAxiom"], [15, 3, 1, "", "OWLPropertyAssertionAxiom"], [15, 3, 1, "", "OWLPropertyAxiom"], [15, 3, 1, "", "OWLPropertyDomainAxiom"], [15, 3, 1, "", "OWLPropertyRangeAxiom"], [15, 3, 1, "", "OWLReflexiveObjectPropertyAxiom"], [15, 3, 1, "", "OWLSameIndividualAxiom"], [15, 3, 1, "", "OWLSubAnnotationPropertyOfAxiom"], [15, 3, 1, "", "OWLSubClassOfAxiom"], [15, 3, 1, "", "OWLSubDataPropertyOfAxiom"], [15, 3, 1, "", "OWLSubObjectPropertyOfAxiom"], [15, 3, 1, "", "OWLSubPropertyAxiom"], [15, 3, 1, "", "OWLSymmetricObjectPropertyAxiom"], [15, 3, 1, "", "OWLTransitiveObjectPropertyAxiom"], [15, 3, 1, "", "OWLUnaryPropertyAxiom"]], "owlapy.owl_axiom.OWLAnnotation": [[15, 4, 1, "", "__eq__"], [15, 4, 1, "", "__hash__"], [15, 4, 1, "", "__repr__"], [15, 5, 1, "", "__slots__"], [15, 4, 1, "", "get_property"], [15, 4, 1, "", "get_value"]], "owlapy.owl_axiom.OWLAnnotationAssertionAxiom": [[15, 4, 1, "", "__eq__"], [15, 4, 1, "", "__hash__"], [15, 4, 1, "", "__repr__"], [15, 5, 1, "", "__slots__"], [15, 4, 1, "", "get_property"], [15, 4, 1, "", "get_subject"], [15, 4, 1, "", "get_value"]], "owlapy.owl_axiom.OWLAnnotationAxiom": [[15, 5, 1, "", "__slots__"], [15, 4, 1, "", "is_annotation_axiom"]], "owlapy.owl_axiom.OWLAnnotationProperty": [[15, 5, 1, "", "__slots__"], [15, 4, 1, "", "get_iri"]], "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom": [[15, 4, 1, "", "__eq__"], [15, 4, 1, "", "__hash__"], [15, 4, 1, "", "__repr__"], [15, 5, 1, "", "__slots__"], [15, 4, 1, "", "get_domain"], [15, 4, 1, "", "get_property"]], "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom": [[15, 4, 1, "", "__eq__"], [15, 4, 1, "", "__hash__"], [15, 4, 1, "", "__repr__"], [15, 5, 1, "", "__slots__"], [15, 4, 1, "", "get_property"], [15, 4, 1, "", "get_range"]], "owlapy.owl_axiom.OWLAsymmetricObjectPropertyAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLAxiom": [[15, 5, 1, "", "__slots__"], [15, 4, 1, "", "annotations"], [15, 4, 1, "", "is_annotated"], [15, 4, 1, "", "is_annotation_axiom"], [15, 4, 1, "", "is_logical_axiom"]], "owlapy.owl_axiom.OWLClassAssertionAxiom": [[15, 4, 1, "", "__eq__"], [15, 4, 1, "", "__hash__"], [15, 4, 1, "", "__repr__"], [15, 5, 1, "", "__slots__"], [15, 4, 1, "", "get_class_expression"], [15, 4, 1, "", "get_individual"]], "owlapy.owl_axiom.OWLClassAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyAssertionAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom": [[15, 4, 1, "", "__eq__"], [15, 4, 1, "", "__hash__"], [15, 4, 1, "", "__repr__"], [15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyDomainAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyRangeAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom": [[15, 4, 1, "", "__eq__"], [15, 4, 1, "", "__hash__"], [15, 4, 1, "", "__repr__"], [15, 5, 1, "", "__slots__"], [15, 4, 1, "", "get_datarange"], [15, 4, 1, "", "get_datatype"]], "owlapy.owl_axiom.OWLDeclarationAxiom": [[15, 4, 1, "", "__eq__"], [15, 4, 1, "", "__hash__"], [15, 4, 1, "", "__repr__"], [15, 5, 1, "", "__slots__"], [15, 4, 1, "", "get_entity"]], "owlapy.owl_axiom.OWLDifferentIndividualsAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDisjointClassesAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDisjointDataPropertiesAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDisjointObjectPropertiesAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDisjointUnionAxiom": [[15, 4, 1, "", "__eq__"], [15, 4, 1, "", "__hash__"], [15, 4, 1, "", "__repr__"], [15, 5, 1, "", "__slots__"], [15, 4, 1, "", "get_class_expressions"], [15, 4, 1, "", "get_owl_class"], [15, 4, 1, "", "get_owl_disjoint_classes_axiom"], [15, 4, 1, "", "get_owl_equivalent_classes_axiom"]], "owlapy.owl_axiom.OWLEquivalentClassesAxiom": [[15, 5, 1, "", "__slots__"], [15, 4, 1, "", "contains_named_equivalent_class"], [15, 4, 1, "", "contains_owl_nothing"], [15, 4, 1, "", "contains_owl_thing"], [15, 4, 1, "", "named_classes"]], "owlapy.owl_axiom.OWLEquivalentDataPropertiesAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLEquivalentObjectPropertiesAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLFunctionalDataPropertyAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLFunctionalObjectPropertyAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLHasKeyAxiom": [[15, 4, 1, "", "__eq__"], [15, 4, 1, "", "__hash__"], [15, 4, 1, "", "__repr__"], [15, 5, 1, "", "__slots__"], [15, 4, 1, "", "get_class_expression"], [15, 4, 1, "", "get_property_expressions"], [15, 4, 1, "", "operands"]], "owlapy.owl_axiom.OWLIndividualAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLInverseFunctionalObjectPropertyAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom": [[15, 4, 1, "", "__repr__"], [15, 5, 1, "", "__slots__"], [15, 4, 1, "", "get_first_property"], [15, 4, 1, "", "get_second_property"]], "owlapy.owl_axiom.OWLIrreflexiveObjectPropertyAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLLogicalAxiom": [[15, 5, 1, "", "__slots__"], [15, 4, 1, "", "is_logical_axiom"]], "owlapy.owl_axiom.OWLNaryAxiom": [[15, 5, 1, "", "__slots__"], [15, 4, 1, "", "as_pairwise_axioms"]], "owlapy.owl_axiom.OWLNaryClassAxiom": [[15, 4, 1, "", "__eq__"], [15, 4, 1, "", "__hash__"], [15, 4, 1, "", "__repr__"], [15, 5, 1, "", "__slots__"], [15, 4, 1, "", "as_pairwise_axioms"], [15, 4, 1, "", "class_expressions"]], "owlapy.owl_axiom.OWLNaryIndividualAxiom": [[15, 4, 1, "", "__eq__"], [15, 4, 1, "", "__hash__"], [15, 4, 1, "", "__repr__"], [15, 5, 1, "", "__slots__"], [15, 4, 1, "", "as_pairwise_axioms"], [15, 4, 1, "", "individuals"]], "owlapy.owl_axiom.OWLNaryPropertyAxiom": [[15, 4, 1, "", "__eq__"], [15, 4, 1, "", "__hash__"], [15, 4, 1, "", "__repr__"], [15, 5, 1, "", "__slots__"], [15, 4, 1, "", "as_pairwise_axioms"], [15, 4, 1, "", "properties"]], "owlapy.owl_axiom.OWLNegativeDataPropertyAssertionAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLNegativeObjectPropertyAssertionAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyAssertionAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom": [[15, 4, 1, "", "__eq__"], [15, 4, 1, "", "__hash__"], [15, 4, 1, "", "__repr__"], [15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyDomainAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyRangeAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLPropertyAssertionAxiom": [[15, 4, 1, "", "__eq__"], [15, 4, 1, "", "__hash__"], [15, 4, 1, "", "__repr__"], [15, 5, 1, "", "__slots__"], [15, 4, 1, "", "get_object"], [15, 4, 1, "", "get_property"], [15, 4, 1, "", "get_subject"]], "owlapy.owl_axiom.OWLPropertyAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLPropertyDomainAxiom": [[15, 4, 1, "", "__eq__"], [15, 4, 1, "", "__hash__"], [15, 4, 1, "", "__repr__"], [15, 5, 1, "", "__slots__"], [15, 4, 1, "", "get_domain"]], "owlapy.owl_axiom.OWLPropertyRangeAxiom": [[15, 4, 1, "", "__eq__"], [15, 4, 1, "", "__hash__"], [15, 4, 1, "", "__repr__"], [15, 5, 1, "", "__slots__"], [15, 4, 1, "", "get_range"]], "owlapy.owl_axiom.OWLReflexiveObjectPropertyAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLSameIndividualAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom": [[15, 4, 1, "", "__eq__"], [15, 4, 1, "", "__hash__"], [15, 4, 1, "", "__repr__"], [15, 5, 1, "", "__slots__"], [15, 4, 1, "", "get_sub_property"], [15, 4, 1, "", "get_super_property"]], "owlapy.owl_axiom.OWLSubClassOfAxiom": [[15, 4, 1, "", "__eq__"], [15, 4, 1, "", "__hash__"], [15, 4, 1, "", "__repr__"], [15, 5, 1, "", "__slots__"], [15, 4, 1, "", "get_sub_class"], [15, 4, 1, "", "get_super_class"]], "owlapy.owl_axiom.OWLSubDataPropertyOfAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLSubObjectPropertyOfAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLSubPropertyAxiom": [[15, 4, 1, "", "__eq__"], [15, 4, 1, "", "__hash__"], [15, 4, 1, "", "__repr__"], [15, 5, 1, "", "__slots__"], [15, 4, 1, "", "get_sub_property"], [15, 4, 1, "", "get_super_property"]], "owlapy.owl_axiom.OWLSymmetricObjectPropertyAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLTransitiveObjectPropertyAxiom": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLUnaryPropertyAxiom": [[15, 5, 1, "", "__slots__"], [15, 4, 1, "", "get_property"]], "owlapy.owl_class_expression": [[16, 3, 1, "", "OWLDataComplementOf"], [16, 3, 1, "", "OWLDataIntersectionOf"], [16, 3, 1, "", "OWLDataUnionOf"], [16, 3, 1, "", "OWLNaryDataRange"]], "owlapy.owl_class_expression.OWLDataComplementOf": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 4, 1, "", "get_data_range"], [16, 5, 1, "", "type_index"]], "owlapy.owl_class_expression.OWLDataIntersectionOf": [[16, 5, 1, "", "__slots__"], [16, 5, 1, "", "type_index"]], "owlapy.owl_class_expression.OWLDataUnionOf": [[16, 5, 1, "", "__slots__"], [16, 5, 1, "", "type_index"]], "owlapy.owl_class_expression.OWLNaryDataRange": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "operands"]], "owlapy.owl_individual": [[17, 3, 1, "", "OWLIndividual"], [17, 3, 1, "", "OWLNamedIndividual"]], "owlapy.owl_individual.OWLIndividual": [[17, 5, 1, "", "__slots__"]], "owlapy.owl_individual.OWLNamedIndividual": [[17, 5, 1, "", "__slots__"], [17, 4, 1, "", "get_iri"], [17, 6, 1, "", "iri"], [17, 6, 1, "", "str"], [17, 5, 1, "", "type_index"]], "owlapy.owl_literal": [[18, 1, 1, "", "BooleanOWLDatatype"], [18, 1, 1, "", "DateOWLDatatype"], [18, 1, 1, "", "DateTimeOWLDatatype"], [18, 1, 1, "", "DoubleOWLDatatype"], [18, 1, 1, "", "DurationOWLDatatype"], [18, 1, 1, "", "IntegerOWLDatatype"], [18, 1, 1, "", "Literals"], [18, 1, 1, "", "NUMERIC_DATATYPES"], [18, 1, 1, "", "OWLBottomDataProperty"], [18, 1, 1, "", "OWLBottomObjectProperty"], [18, 3, 1, "", "OWLLiteral"], [18, 1, 1, "", "OWLTopDataProperty"], [18, 1, 1, "", "OWLTopObjectProperty"], [18, 1, 1, "", "StringOWLDatatype"], [18, 1, 1, "", "TIME_DATATYPES"], [18, 1, 1, "", "TopOWLDatatype"]], "owlapy.owl_literal.OWLLiteral": [[18, 5, 1, "", "__slots__"], [18, 4, 1, "", "as_literal"], [18, 4, 1, "", "get_datatype"], [18, 4, 1, "", "get_literal"], [18, 4, 1, "", "is_boolean"], [18, 4, 1, "", "is_date"], [18, 4, 1, "", "is_datetime"], [18, 4, 1, "", "is_double"], [18, 4, 1, "", "is_duration"], [18, 4, 1, "", "is_integer"], [18, 4, 1, "", "is_literal"], [18, 4, 1, "", "is_string"], [18, 4, 1, "", "parse_boolean"], [18, 4, 1, "", "parse_date"], [18, 4, 1, "", "parse_datetime"], [18, 4, 1, "", "parse_double"], [18, 4, 1, "", "parse_duration"], [18, 4, 1, "", "parse_integer"], [18, 4, 1, "", "parse_string"], [18, 4, 1, "", "to_python"], [18, 5, 1, "", "type_index"]], "owlapy.owl_property": [[19, 3, 1, "", "OWLDataProperty"], [19, 3, 1, "", "OWLDataPropertyExpression"], [19, 3, 1, "", "OWLObjectInverseOf"], [19, 3, 1, "", "OWLObjectProperty"], [19, 3, 1, "", "OWLObjectPropertyExpression"], [19, 3, 1, "", "OWLProperty"], [19, 3, 1, "", "OWLPropertyExpression"]], "owlapy.owl_property.OWLDataProperty": [[19, 5, 1, "", "__slots__"], [19, 4, 1, "", "get_iri"], [19, 4, 1, "", "is_owl_top_data_property"], [19, 5, 1, "", "type_index"]], "owlapy.owl_property.OWLDataPropertyExpression": [[19, 5, 1, "", "__slots__"], [19, 4, 1, "", "is_data_property_expression"]], "owlapy.owl_property.OWLObjectInverseOf": [[19, 4, 1, "", "__eq__"], [19, 4, 1, "", "__hash__"], [19, 4, 1, "", "__repr__"], [19, 5, 1, "", "__slots__"], [19, 4, 1, "", "get_inverse"], [19, 4, 1, "", "get_inverse_property"], [19, 4, 1, "", "get_named_property"], [19, 5, 1, "", "type_index"]], "owlapy.owl_property.OWLObjectProperty": [[19, 5, 1, "", "__slots__"], [19, 4, 1, "", "get_inverse_property"], [19, 4, 1, "", "get_iri"], [19, 4, 1, "", "get_named_property"], [19, 6, 1, "", "iri"], [19, 4, 1, "", "is_owl_top_object_property"], [19, 6, 1, "", "str"], [19, 5, 1, "", "type_index"]], "owlapy.owl_property.OWLObjectPropertyExpression": [[19, 5, 1, "", "__slots__"], [19, 4, 1, "", "get_inverse_property"], [19, 4, 1, "", "get_named_property"], [19, 4, 1, "", "is_object_property_expression"]], "owlapy.owl_property.OWLProperty": [[19, 5, 1, "", "__slots__"]], "owlapy.owl_property.OWLPropertyExpression": [[19, 5, 1, "", "__slots__"], [19, 4, 1, "", "is_data_property_expression"], [19, 4, 1, "", "is_object_property_expression"], [19, 4, 1, "", "is_owl_top_data_property"], [19, 4, 1, "", "is_owl_top_object_property"]], "owlapy.owl_restriction": [[20, 1, 1, "", "Literals"], [20, 3, 1, "", "OWLCardinalityRestriction"], [20, 3, 1, "", "OWLDataAllValuesFrom"], [20, 3, 1, "", "OWLDataCardinalityRestriction"], [20, 3, 1, "", "OWLDataExactCardinality"], [20, 3, 1, "", "OWLDataHasValue"], [20, 3, 1, "", "OWLDataMaxCardinality"], [20, 3, 1, "", "OWLDataMinCardinality"], [20, 3, 1, "", "OWLDataOneOf"], [20, 3, 1, "", "OWLDataRestriction"], [20, 3, 1, "", "OWLDataSomeValuesFrom"], [20, 3, 1, "", "OWLDatatypeRestriction"], [20, 3, 1, "", "OWLFacetRestriction"], [20, 3, 1, "", "OWLHasValueRestriction"], [20, 3, 1, "", "OWLObjectAllValuesFrom"], [20, 3, 1, "", "OWLObjectCardinalityRestriction"], [20, 3, 1, "", "OWLObjectExactCardinality"], [20, 3, 1, "", "OWLObjectHasSelf"], [20, 3, 1, "", "OWLObjectHasValue"], [20, 3, 1, "", "OWLObjectMaxCardinality"], [20, 3, 1, "", "OWLObjectMinCardinality"], [20, 3, 1, "", "OWLObjectOneOf"], [20, 3, 1, "", "OWLObjectRestriction"], [20, 3, 1, "", "OWLObjectSomeValuesFrom"], [20, 3, 1, "", "OWLQuantifiedDataRestriction"], [20, 3, 1, "", "OWLQuantifiedObjectRestriction"], [20, 3, 1, "", "OWLQuantifiedRestriction"], [20, 3, 1, "", "OWLRestriction"]], "owlapy.owl_restriction.OWLCardinalityRestriction": [[20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_cardinality"], [20, 4, 1, "", "get_filler"]], "owlapy.owl_restriction.OWLDataAllValuesFrom": [[20, 4, 1, "", "__eq__"], [20, 4, 1, "", "__hash__"], [20, 4, 1, "", "__repr__"], [20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_property"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLDataCardinalityRestriction": [[20, 4, 1, "", "__eq__"], [20, 4, 1, "", "__hash__"], [20, 4, 1, "", "__repr__"], [20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_property"]], "owlapy.owl_restriction.OWLDataExactCardinality": [[20, 5, 1, "", "__slots__"], [20, 4, 1, "", "as_intersection_of_min_max"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLDataHasValue": [[20, 4, 1, "", "__eq__"], [20, 4, 1, "", "__hash__"], [20, 4, 1, "", "__repr__"], [20, 5, 1, "", "__slots__"], [20, 4, 1, "", "as_some_values_from"], [20, 4, 1, "", "get_property"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLDataMaxCardinality": [[20, 5, 1, "", "__slots__"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLDataMinCardinality": [[20, 5, 1, "", "__slots__"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLDataOneOf": [[20, 4, 1, "", "__eq__"], [20, 4, 1, "", "__hash__"], [20, 4, 1, "", "__repr__"], [20, 4, 1, "", "operands"], [20, 5, 1, "", "type_index"], [20, 4, 1, "", "values"]], "owlapy.owl_restriction.OWLDataRestriction": [[20, 5, 1, "", "__slots__"], [20, 4, 1, "", "is_data_restriction"]], "owlapy.owl_restriction.OWLDataSomeValuesFrom": [[20, 4, 1, "", "__eq__"], [20, 4, 1, "", "__hash__"], [20, 4, 1, "", "__repr__"], [20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_property"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLDatatypeRestriction": [[20, 4, 1, "", "__eq__"], [20, 4, 1, "", "__hash__"], [20, 4, 1, "", "__repr__"], [20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_datatype"], [20, 4, 1, "", "get_facet_restrictions"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLFacetRestriction": [[20, 4, 1, "", "__eq__"], [20, 4, 1, "", "__hash__"], [20, 4, 1, "", "__repr__"], [20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_facet"], [20, 4, 1, "", "get_facet_value"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLHasValueRestriction": [[20, 4, 1, "", "__eq__"], [20, 4, 1, "", "__hash__"], [20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_filler"]], "owlapy.owl_restriction.OWLObjectAllValuesFrom": [[20, 4, 1, "", "__eq__"], [20, 4, 1, "", "__hash__"], [20, 4, 1, "", "__repr__"], [20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_property"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLObjectCardinalityRestriction": [[20, 4, 1, "", "__eq__"], [20, 4, 1, "", "__hash__"], [20, 4, 1, "", "__repr__"], [20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_property"]], "owlapy.owl_restriction.OWLObjectExactCardinality": [[20, 5, 1, "", "__slots__"], [20, 4, 1, "", "as_intersection_of_min_max"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLObjectHasSelf": [[20, 4, 1, "", "__eq__"], [20, 4, 1, "", "__hash__"], [20, 4, 1, "", "__repr__"], [20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_property"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLObjectHasValue": [[20, 4, 1, "", "__repr__"], [20, 5, 1, "", "__slots__"], [20, 4, 1, "", "as_some_values_from"], [20, 4, 1, "", "get_property"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLObjectMaxCardinality": [[20, 5, 1, "", "__slots__"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLObjectMinCardinality": [[20, 5, 1, "", "__slots__"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLObjectOneOf": [[20, 4, 1, "", "__eq__"], [20, 4, 1, "", "__hash__"], [20, 4, 1, "", "__repr__"], [20, 5, 1, "", "__slots__"], [20, 4, 1, "", "as_object_union_of"], [20, 4, 1, "", "individuals"], [20, 4, 1, "", "operands"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLObjectRestriction": [[20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_property"], [20, 4, 1, "", "is_object_restriction"]], "owlapy.owl_restriction.OWLObjectSomeValuesFrom": [[20, 4, 1, "", "__eq__"], [20, 4, 1, "", "__hash__"], [20, 4, 1, "", "__repr__"], [20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_property"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLQuantifiedDataRestriction": [[20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_filler"]], "owlapy.owl_restriction.OWLQuantifiedObjectRestriction": [[20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_filler"]], "owlapy.owl_restriction.OWLQuantifiedRestriction": [[20, 5, 1, "", "__slots__"]], "owlapy.owl_restriction.OWLRestriction": [[20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_property"], [20, 4, 1, "", "is_data_restriction"], [20, 4, 1, "", "is_object_restriction"]], "owlapy.owlobject": [[21, 3, 1, "", "OWLEntity"], [21, 3, 1, "", "OWLNamedObject"], [21, 3, 1, "", "OWLObject"], [21, 3, 1, "", "OWLObjectParser"], [21, 3, 1, "", "OWLObjectRenderer"]], "owlapy.owlobject.OWLEntity": [[21, 5, 1, "", "__slots__"], [21, 4, 1, "", "is_anonymous"], [21, 4, 1, "", "to_string_id"]], "owlapy.owlobject.OWLNamedObject": [[21, 4, 1, "", "__eq__"], [21, 4, 1, "", "__hash__"], [21, 4, 1, "", "__lt__"], [21, 4, 1, "", "__repr__"], [21, 5, 1, "", "__slots__"]], "owlapy.owlobject.OWLObject": [[21, 4, 1, "", "__eq__"], [21, 4, 1, "", "__hash__"], [21, 4, 1, "", "__repr__"], [21, 5, 1, "", "__slots__"], [21, 4, 1, "", "is_anonymous"]], "owlapy.owlobject.OWLObjectParser": [[21, 4, 1, "", "parse_expression"]], "owlapy.owlobject.OWLObjectRenderer": [[21, 4, 1, "", "render"], [21, 4, 1, "", "set_short_form_provider"]], "owlapy.parser": [[22, 3, 1, "", "DLSyntaxParser"], [22, 1, 1, "", "DL_GRAMMAR"], [22, 1, 1, "", "DLparser"], [22, 1, 1, "", "MANCHESTER_GRAMMAR"], [22, 3, 1, "", "ManchesterOWLSyntaxParser"], [22, 1, 1, "", "ManchesterParser"], [22, 2, 1, "", "dl_to_owl_expression"], [22, 2, 1, "", "manchester_to_owl_expression"]], "owlapy.parser.DLSyntaxParser": [[22, 4, 1, "", "generic_visit"], [22, 5, 1, "", "ns"], [22, 4, 1, "", "parse_expression"], [22, 5, 1, "", "slots"], [22, 4, 1, "", "visit_abbreviated_iri"], [22, 4, 1, "", "visit_boolean_literal"], [22, 4, 1, "", "visit_cardinality_res"], [22, 4, 1, "", "visit_class_expression"], [22, 4, 1, "", "visit_class_iri"], [22, 4, 1, "", "visit_data_cardinality_res"], [22, 4, 1, "", "visit_data_intersection"], [22, 4, 1, "", "visit_data_parentheses"], [22, 4, 1, "", "visit_data_primary"], [22, 4, 1, "", "visit_data_property_iri"], [22, 4, 1, "", "visit_data_some_only_res"], [22, 4, 1, "", "visit_data_union"], [22, 4, 1, "", "visit_data_value_res"], [22, 4, 1, "", "visit_datatype"], [22, 4, 1, "", "visit_datatype_iri"], [22, 4, 1, "", "visit_datatype_restriction"], [22, 4, 1, "", "visit_date_literal"], [22, 4, 1, "", "visit_datetime_literal"], [22, 4, 1, "", "visit_decimal_literal"], [22, 4, 1, "", "visit_duration_literal"], [22, 4, 1, "", "visit_facet"], [22, 4, 1, "", "visit_facet_restriction"], [22, 4, 1, "", "visit_facet_restrictions"], [22, 4, 1, "", "visit_float_literal"], [22, 4, 1, "", "visit_full_iri"], [22, 4, 1, "", "visit_has_self"], [22, 4, 1, "", "visit_individual_iri"], [22, 4, 1, "", "visit_individual_list"], [22, 4, 1, "", "visit_integer_literal"], [22, 4, 1, "", "visit_intersection"], [22, 4, 1, "", "visit_iri"], [22, 4, 1, "", "visit_literal"], [22, 4, 1, "", "visit_literal_list"], [22, 4, 1, "", "visit_non_negative_integer"], [22, 4, 1, "", "visit_object_property"], [22, 4, 1, "", "visit_object_property_iri"], [22, 4, 1, "", "visit_parentheses"], [22, 4, 1, "", "visit_primary"], [22, 4, 1, "", "visit_quoted_string"], [22, 4, 1, "", "visit_simple_iri"], [22, 4, 1, "", "visit_some_only_res"], [22, 4, 1, "", "visit_string_literal_language"], [22, 4, 1, "", "visit_string_literal_no_language"], [22, 4, 1, "", "visit_typed_literal"], [22, 4, 1, "", "visit_union"], [22, 4, 1, "", "visit_value_res"]], "owlapy.parser.ManchesterOWLSyntaxParser": [[22, 4, 1, "", "generic_visit"], [22, 5, 1, "", "ns"], [22, 4, 1, "", "parse_expression"], [22, 5, 1, "", "slots"], [22, 4, 1, "", "visit_abbreviated_iri"], [22, 4, 1, "", "visit_boolean_literal"], [22, 4, 1, "", "visit_cardinality_res"], [22, 4, 1, "", "visit_class_expression"], [22, 4, 1, "", "visit_class_iri"], [22, 4, 1, "", "visit_data_cardinality_res"], [22, 4, 1, "", "visit_data_intersection"], [22, 4, 1, "", "visit_data_parentheses"], [22, 4, 1, "", "visit_data_primary"], [22, 4, 1, "", "visit_data_property_iri"], [22, 4, 1, "", "visit_data_some_only_res"], [22, 4, 1, "", "visit_data_union"], [22, 4, 1, "", "visit_data_value_res"], [22, 4, 1, "", "visit_datatype"], [22, 4, 1, "", "visit_datatype_iri"], [22, 4, 1, "", "visit_datatype_restriction"], [22, 4, 1, "", "visit_date_literal"], [22, 4, 1, "", "visit_datetime_literal"], [22, 4, 1, "", "visit_decimal_literal"], [22, 4, 1, "", "visit_duration_literal"], [22, 4, 1, "", "visit_facet"], [22, 4, 1, "", "visit_facet_restriction"], [22, 4, 1, "", "visit_facet_restrictions"], [22, 4, 1, "", "visit_float_literal"], [22, 4, 1, "", "visit_full_iri"], [22, 4, 1, "", "visit_has_self"], [22, 4, 1, "", "visit_individual_iri"], [22, 4, 1, "", "visit_individual_list"], [22, 4, 1, "", "visit_integer_literal"], [22, 4, 1, "", "visit_intersection"], [22, 4, 1, "", "visit_iri"], [22, 4, 1, "", "visit_literal"], [22, 4, 1, "", "visit_literal_list"], [22, 4, 1, "", "visit_non_negative_integer"], [22, 4, 1, "", "visit_object_property"], [22, 4, 1, "", "visit_object_property_iri"], [22, 4, 1, "", "visit_parentheses"], [22, 4, 1, "", "visit_primary"], [22, 4, 1, "", "visit_quoted_string"], [22, 4, 1, "", "visit_simple_iri"], [22, 4, 1, "", "visit_some_only_res"], [22, 4, 1, "", "visit_string_literal_language"], [22, 4, 1, "", "visit_string_literal_no_language"], [22, 4, 1, "", "visit_typed_literal"], [22, 4, 1, "", "visit_union"], [22, 4, 1, "", "visit_value_res"]], "owlapy.ranges": [[23, 3, 1, "", "OWLDataRange"], [23, 3, 1, "", "OWLPropertyRange"]], "owlapy.render": [[24, 3, 1, "", "DLSyntaxObjectRenderer"], [24, 1, 1, "", "DLrenderer"], [24, 3, 1, "", "ManchesterOWLSyntaxOWLObjectRenderer"], [24, 1, 1, "", "ManchesterRenderer"], [24, 2, 1, "", "owl_expression_to_dl"], [24, 2, 1, "", "owl_expression_to_manchester"]], "owlapy.render.DLSyntaxObjectRenderer": [[24, 5, 1, "", "__slots__"], [24, 4, 1, "", "render"], [24, 4, 1, "", "set_short_form_provider"]], "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer": [[24, 5, 1, "", "__slots__"], [24, 4, 1, "", "render"], [24, 4, 1, "", "set_short_form_provider"]], "owlapy.types": [[25, 3, 1, "", "OWLDatatype"]], "owlapy.types.OWLDatatype": [[25, 5, 1, "", "__slots__"], [25, 4, 1, "", "get_iri"], [25, 5, 1, "", "type_index"]], "owlapy.util": [[26, 3, 1, "", "LRUCache"], [26, 3, 1, "", "NNF"], [26, 3, 1, "", "OrderedOWLObject"], [26, 3, 1, "", "TopLevelCNF"], [26, 3, 1, "", "TopLevelDNF"], [26, 2, 1, "", "as_index"], [26, 2, 1, "", "combine_nary_expressions"], [26, 2, 1, "", "iter_count"]], "owlapy.util.LRUCache": [[26, 5, 1, "", "KEY"], [26, 5, 1, "", "NEXT"], [26, 5, 1, "", "PREV"], [26, 5, 1, "", "RESULT"], [26, 4, 1, "", "__contains__"], [26, 4, 1, "", "__getitem__"], [26, 4, 1, "", "__setitem__"], [26, 4, 1, "", "cache_clear"], [26, 4, 1, "", "cache_info"], [26, 5, 1, "id1", "sentinel"]], "owlapy.util.NNF": [[26, 4, 1, "", "get_class_nnf"]], "owlapy.util.OrderedOWLObject": [[26, 4, 1, "", "__eq__"], [26, 4, 1, "", "__lt__"], [26, 5, 1, "", "__slots__"], [26, 5, 1, "id0", "o"]], "owlapy.util.TopLevelCNF": [[26, 4, 1, "", "get_top_level_cnf"]], "owlapy.util.TopLevelDNF": [[26, 4, 1, "", "get_top_level_dnf"]], "owlapy.vocab": [[27, 3, 1, "", "OWLFacet"], [27, 3, 1, "", "OWLRDFVocabulary"], [27, 3, 1, "", "XSDVocabulary"]], "owlapy.vocab.OWLFacet": [[27, 5, 1, "", "FRACTION_DIGITS"], [27, 5, 1, "", "LENGTH"], [27, 5, 1, "", "MAX_EXCLUSIVE"], [27, 5, 1, "", "MAX_INCLUSIVE"], [27, 5, 1, "", "MAX_LENGTH"], [27, 5, 1, "", "MIN_EXCLUSIVE"], [27, 5, 1, "", "MIN_INCLUSIVE"], [27, 5, 1, "", "MIN_LENGTH"], [27, 5, 1, "", "PATTERN"], [27, 5, 1, "", "TOTAL_DIGITS"], [27, 4, 1, "", "from_str"], [27, 6, 1, "", "operator"], [27, 6, 1, "", "symbolic_form"]], "owlapy.vocab.OWLRDFVocabulary": [[27, 5, 1, "", "OWL_BOTTOM_DATA_PROPERTY"], [27, 5, 1, "", "OWL_BOTTOM_OBJECT_PROPERTY"], [27, 5, 1, "", "OWL_CLASS"], [27, 5, 1, "", "OWL_NAMED_INDIVIDUAL"], [27, 5, 1, "", "OWL_NOTHING"], [27, 5, 1, "", "OWL_THING"], [27, 5, 1, "", "OWL_TOP_DATA_PROPERTY"], [27, 5, 1, "", "OWL_TOP_OBJECT_PROPERTY"], [27, 5, 1, "", "RDFS_LITERAL"]], "owlapy.vocab.XSDVocabulary": [[27, 5, 1, "", "BOOLEAN"], [27, 5, 1, "", "DATE"], [27, 5, 1, "", "DATE_TIME"], [27, 5, 1, "", "DATE_TIME_STAMP"], [27, 5, 1, "", "DECIMAL"], [27, 5, 1, "", "DOUBLE"], [27, 5, 1, "", "DURATION"], [27, 5, 1, "", "FLOAT"], [27, 5, 1, "", "INTEGER"], [27, 5, 1, "", "LONG"], [27, 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, 26, 27, 28, 29], "_util": 0, "modul": [0, 1, 3, 4, 5, 7, 8, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27], "content": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28], "function": [0, 9, 10, 12, 22, 24, 26], "class_express": [1, 2, 3, 4], "class": [1, 2, 3, 4, 5, 7, 8, 9, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27], "submodul": [2, 6, 9, 13], "packag": [2, 6, 9], "attribut": [2, 9, 10, 11, 12, 18, 20, 22, 24], "nary_boolean_express": 3, "owl_class": 4, "ha": 5, "subpackag": 6, "iri": 7, "meta_class": 8, "model": [9, 10], "provid": 10, "namespac": 11, "owl2sparql": [12, 13], "convert": 12, "owl_annot": 14, "owl_axiom": 15, "owl_class_express": 16, "owl_individu": 17, "owl_liter": 18, "owl_properti": 19, "owl_restrict": 20, "owlobject": 21, "parser": 22, "rang": 23, "render": 24, "type": 25, "util": 26, "vocab": 27, "welcom": 28}, "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"], [5, "module-contents"], [7, "module-contents"], [8, "module-contents"], [10, "module-contents"], [11, "module-contents"], [12, "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"], [24, "module-contents"], [25, "module-contents"], [26, "module-contents"], [27, "module-contents"]], "Functions": [[0, "functions"], [9, "functions"], [10, "functions"], [12, "functions"], [22, "functions"], [24, "functions"], [26, "functions"]], "owlapy.class_expression.class_expression": [[1, "module-owlapy.class_expression.class_expression"]], "Classes": [[1, "classes"], [2, "classes"], [3, "classes"], [4, "classes"], [5, "classes"], [7, "classes"], [8, "classes"], [9, "classes"], [11, "classes"], [12, "classes"], [14, "classes"], [15, "classes"], [16, "classes"], [17, "classes"], [18, "classes"], [19, "classes"], [20, "classes"], [21, "classes"], [22, "classes"], [23, "classes"], [24, "classes"], [25, "classes"], [26, "classes"], [27, "classes"]], "owlapy.class_expression": [[2, "module-owlapy.class_expression"]], "Submodules": [[2, "submodules"], [6, "submodules"], [9, "submodules"], [13, "submodules"]], "Package Contents": [[2, "package-contents"], [6, "package-contents"], [9, "package-contents"]], "Attributes": [[2, "attributes"], [9, "attributes"], [10, "attributes"], [11, "attributes"], [12, "attributes"], [18, "attributes"], [20, "attributes"], [22, "attributes"], [24, "attributes"]], "owlapy.class_expression.nary_boolean_expression": [[3, "module-owlapy.class_expression.nary_boolean_expression"]], "owlapy.class_expression.owl_class": [[4, "module-owlapy.class_expression.owl_class"]], "owlapy.has": [[5, "module-owlapy.has"]], "owlapy": [[6, "module-owlapy"]], "Subpackages": [[6, "subpackages"]], "owlapy.iri": [[7, "module-owlapy.iri"]], "owlapy.meta_classes": [[8, "module-owlapy.meta_classes"]], "owlapy.model": [[9, "module-owlapy.model"]], "owlapy.model.providers": [[10, "module-owlapy.model.providers"]], "owlapy.namespaces": [[11, "module-owlapy.namespaces"]], "owlapy.owl2sparql.converter": [[12, "module-owlapy.owl2sparql.converter"]], "owlapy.owl2sparql": [[13, "module-owlapy.owl2sparql"]], "owlapy.owl_annotation": [[14, "module-owlapy.owl_annotation"]], "owlapy.owl_axiom": [[15, "module-owlapy.owl_axiom"]], "owlapy.owl_class_expression": [[16, "module-owlapy.owl_class_expression"]], "owlapy.owl_individual": [[17, "module-owlapy.owl_individual"]], "owlapy.owl_literal": [[18, "module-owlapy.owl_literal"]], "owlapy.owl_property": [[19, "module-owlapy.owl_property"]], "owlapy.owl_restriction": [[20, "module-owlapy.owl_restriction"]], "owlapy.owlobject": [[21, "module-owlapy.owlobject"]], "owlapy.parser": [[22, "module-owlapy.parser"]], "owlapy.ranges": [[23, "module-owlapy.ranges"]], "owlapy.render": [[24, "module-owlapy.render"]], "owlapy.types": [[25, "module-owlapy.types"]], "owlapy.util": [[26, "module-owlapy.util"]], "owlapy.vocab": [[27, "module-owlapy.vocab"]], "Welcome to OWLAPY!": [[28, "welcome-to-owlapy"]], "Contents:": [[28, null]], "OWLAPY": [[29, "owlapy"]]}, "indexentries": {"move() (in module owlapy._utils)": [[0, "owlapy._utils.MOVE"]], "module": [[0, "module-owlapy._utils"], [1, "module-owlapy.class_expression.class_expression"], [2, "module-owlapy.class_expression"], [3, "module-owlapy.class_expression.nary_boolean_expression"], [4, "module-owlapy.class_expression.owl_class"], [5, "module-owlapy.has"], [6, "module-owlapy"], [7, "module-owlapy.iri"], [8, "module-owlapy.meta_classes"], [9, "module-owlapy.model"], [10, "module-owlapy.model.providers"], [11, "module-owlapy.namespaces"], [12, "module-owlapy.owl2sparql.converter"], [13, "module-owlapy.owl2sparql"], [14, "module-owlapy.owl_annotation"], [15, "module-owlapy.owl_axiom"], [16, "module-owlapy.owl_class_expression"], [17, "module-owlapy.owl_individual"], [18, "module-owlapy.owl_literal"], [19, "module-owlapy.owl_property"], [20, "module-owlapy.owl_restriction"], [21, "module-owlapy.owlobject"], [22, "module-owlapy.parser"], [23, "module-owlapy.ranges"], [24, "module-owlapy.render"], [25, "module-owlapy.types"], [26, "module-owlapy.util"], [27, "module-owlapy.vocab"]], "owlapy._utils": [[0, "module-owlapy._utils"]], "owlanonymousclassexpression (class in owlapy.class_expression.class_expression)": [[1, "owlapy.class_expression.class_expression.OWLAnonymousClassExpression"]], "owlbooleanclassexpression (class in owlapy.class_expression.class_expression)": [[1, "owlapy.class_expression.class_expression.OWLBooleanClassExpression"]], "owlclassexpression (class in owlapy.class_expression.class_expression)": [[1, "owlapy.class_expression.class_expression.OWLClassExpression"]], "owlobjectcomplementof (class in owlapy.class_expression.class_expression)": [[1, "owlapy.class_expression.class_expression.OWLObjectComplementOf"]], "__eq__() (owlapy.class_expression.class_expression.owlobjectcomplementof method)": [[1, "owlapy.class_expression.class_expression.OWLObjectComplementOf.__eq__"]], "__hash__() (owlapy.class_expression.class_expression.owlobjectcomplementof method)": [[1, "owlapy.class_expression.class_expression.OWLObjectComplementOf.__hash__"]], "__repr__() (owlapy.class_expression.class_expression.owlobjectcomplementof method)": [[1, "owlapy.class_expression.class_expression.OWLObjectComplementOf.__repr__"]], "__slots__ (owlapy.class_expression.class_expression.owlbooleanclassexpression attribute)": [[1, "owlapy.class_expression.class_expression.OWLBooleanClassExpression.__slots__"]], "__slots__ (owlapy.class_expression.class_expression.owlclassexpression attribute)": [[1, "owlapy.class_expression.class_expression.OWLClassExpression.__slots__"]], "__slots__ (owlapy.class_expression.class_expression.owlobjectcomplementof attribute)": [[1, "owlapy.class_expression.class_expression.OWLObjectComplementOf.__slots__"]], "get_nnf() (owlapy.class_expression.class_expression.owlanonymousclassexpression method)": [[1, "owlapy.class_expression.class_expression.OWLAnonymousClassExpression.get_nnf"]], "get_nnf() (owlapy.class_expression.class_expression.owlclassexpression method)": [[1, "owlapy.class_expression.class_expression.OWLClassExpression.get_nnf"]], "get_object_complement_of() (owlapy.class_expression.class_expression.owlanonymousclassexpression method)": [[1, "owlapy.class_expression.class_expression.OWLAnonymousClassExpression.get_object_complement_of"]], "get_object_complement_of() (owlapy.class_expression.class_expression.owlclassexpression method)": [[1, "owlapy.class_expression.class_expression.OWLClassExpression.get_object_complement_of"]], "get_operand() (owlapy.class_expression.class_expression.owlobjectcomplementof method)": [[1, "owlapy.class_expression.class_expression.OWLObjectComplementOf.get_operand"]], "is_owl_nothing() (owlapy.class_expression.class_expression.owlanonymousclassexpression method)": [[1, "owlapy.class_expression.class_expression.OWLAnonymousClassExpression.is_owl_nothing"]], "is_owl_nothing() (owlapy.class_expression.class_expression.owlclassexpression method)": [[1, "owlapy.class_expression.class_expression.OWLClassExpression.is_owl_nothing"]], "is_owl_thing() (owlapy.class_expression.class_expression.owlanonymousclassexpression method)": [[1, "owlapy.class_expression.class_expression.OWLAnonymousClassExpression.is_owl_thing"]], "is_owl_thing() (owlapy.class_expression.class_expression.owlclassexpression method)": [[1, "owlapy.class_expression.class_expression.OWLClassExpression.is_owl_thing"]], "operands() (owlapy.class_expression.class_expression.owlobjectcomplementof method)": [[1, "owlapy.class_expression.class_expression.OWLObjectComplementOf.operands"]], "owlapy.class_expression.class_expression": [[1, "module-owlapy.class_expression.class_expression"]], "type_index (owlapy.class_expression.class_expression.owlobjectcomplementof attribute)": [[1, "owlapy.class_expression.class_expression.OWLObjectComplementOf.type_index"]], "owlanonymousclassexpression (class in owlapy.class_expression)": [[2, "owlapy.class_expression.OWLAnonymousClassExpression"]], "owlbooleanclassexpression (class in owlapy.class_expression)": [[2, "owlapy.class_expression.OWLBooleanClassExpression"]], "owlclass (class in owlapy.class_expression)": [[2, "owlapy.class_expression.OWLClass"]], "owlclassexpression (class in owlapy.class_expression)": [[2, "owlapy.class_expression.OWLClassExpression"]], "owlnarybooleanclassexpression (class in owlapy.class_expression)": [[2, "owlapy.class_expression.OWLNaryBooleanClassExpression"]], "owlnothing (in module owlapy.class_expression)": [[2, "owlapy.class_expression.OWLNothing"]], "owlobjectcomplementof (class in owlapy.class_expression)": [[2, "owlapy.class_expression.OWLObjectComplementOf"]], "owlobjectintersectionof (class in owlapy.class_expression)": [[2, "owlapy.class_expression.OWLObjectIntersectionOf"]], "owlobjectunionof (class in owlapy.class_expression)": [[2, "owlapy.class_expression.OWLObjectUnionOf"]], "owlrdfvocabulary (class in owlapy.class_expression)": [[2, "owlapy.class_expression.OWLRDFVocabulary"]], "owlthing (in module owlapy.class_expression)": [[2, "owlapy.class_expression.OWLThing"]], "owl_bottom_data_property (owlapy.class_expression.owlrdfvocabulary attribute)": [[2, "owlapy.class_expression.OWLRDFVocabulary.OWL_BOTTOM_DATA_PROPERTY"]], "owl_bottom_object_property (owlapy.class_expression.owlrdfvocabulary attribute)": [[2, "owlapy.class_expression.OWLRDFVocabulary.OWL_BOTTOM_OBJECT_PROPERTY"]], "owl_class (owlapy.class_expression.owlrdfvocabulary attribute)": [[2, "owlapy.class_expression.OWLRDFVocabulary.OWL_CLASS"]], "owl_named_individual (owlapy.class_expression.owlrdfvocabulary attribute)": [[2, "owlapy.class_expression.OWLRDFVocabulary.OWL_NAMED_INDIVIDUAL"]], "owl_nothing (owlapy.class_expression.owlrdfvocabulary attribute)": [[2, "owlapy.class_expression.OWLRDFVocabulary.OWL_NOTHING"]], "owl_thing (owlapy.class_expression.owlrdfvocabulary attribute)": [[2, "owlapy.class_expression.OWLRDFVocabulary.OWL_THING"]], "owl_top_data_property (owlapy.class_expression.owlrdfvocabulary attribute)": [[2, "owlapy.class_expression.OWLRDFVocabulary.OWL_TOP_DATA_PROPERTY"]], "owl_top_object_property (owlapy.class_expression.owlrdfvocabulary attribute)": [[2, "owlapy.class_expression.OWLRDFVocabulary.OWL_TOP_OBJECT_PROPERTY"]], "rdfs_literal (owlapy.class_expression.owlrdfvocabulary attribute)": [[2, "owlapy.class_expression.OWLRDFVocabulary.RDFS_LITERAL"]], "__eq__() (owlapy.class_expression.owlnarybooleanclassexpression method)": [[2, "owlapy.class_expression.OWLNaryBooleanClassExpression.__eq__"]], "__eq__() (owlapy.class_expression.owlobjectcomplementof method)": [[2, "owlapy.class_expression.OWLObjectComplementOf.__eq__"]], "__hash__() (owlapy.class_expression.owlnarybooleanclassexpression method)": [[2, "owlapy.class_expression.OWLNaryBooleanClassExpression.__hash__"]], "__hash__() (owlapy.class_expression.owlobjectcomplementof method)": [[2, "owlapy.class_expression.OWLObjectComplementOf.__hash__"]], "__repr__() (owlapy.class_expression.owlnarybooleanclassexpression method)": [[2, "owlapy.class_expression.OWLNaryBooleanClassExpression.__repr__"]], "__repr__() (owlapy.class_expression.owlobjectcomplementof method)": [[2, "owlapy.class_expression.OWLObjectComplementOf.__repr__"]], "__slots__ (owlapy.class_expression.owlbooleanclassexpression attribute)": [[2, "owlapy.class_expression.OWLBooleanClassExpression.__slots__"]], "__slots__ (owlapy.class_expression.owlclass attribute)": [[2, "owlapy.class_expression.OWLClass.__slots__"]], "__slots__ (owlapy.class_expression.owlclassexpression attribute)": [[2, "owlapy.class_expression.OWLClassExpression.__slots__"]], "__slots__ (owlapy.class_expression.owlnarybooleanclassexpression attribute)": [[2, "owlapy.class_expression.OWLNaryBooleanClassExpression.__slots__"]], "__slots__ (owlapy.class_expression.owlobjectcomplementof attribute)": [[2, "owlapy.class_expression.OWLObjectComplementOf.__slots__"]], "__slots__ (owlapy.class_expression.owlobjectintersectionof attribute)": [[2, "owlapy.class_expression.OWLObjectIntersectionOf.__slots__"]], "__slots__ (owlapy.class_expression.owlobjectunionof attribute)": [[2, "owlapy.class_expression.OWLObjectUnionOf.__slots__"]], "get_iri() (owlapy.class_expression.owlclass method)": [[2, "owlapy.class_expression.OWLClass.get_iri"]], "get_nnf() (owlapy.class_expression.owlanonymousclassexpression method)": [[2, "owlapy.class_expression.OWLAnonymousClassExpression.get_nnf"]], "get_nnf() (owlapy.class_expression.owlclass method)": [[2, "owlapy.class_expression.OWLClass.get_nnf"]], "get_nnf() (owlapy.class_expression.owlclassexpression method)": [[2, "owlapy.class_expression.OWLClassExpression.get_nnf"]], "get_object_complement_of() (owlapy.class_expression.owlanonymousclassexpression method)": [[2, "owlapy.class_expression.OWLAnonymousClassExpression.get_object_complement_of"]], "get_object_complement_of() (owlapy.class_expression.owlclass method)": [[2, "owlapy.class_expression.OWLClass.get_object_complement_of"]], "get_object_complement_of() (owlapy.class_expression.owlclassexpression method)": [[2, "owlapy.class_expression.OWLClassExpression.get_object_complement_of"]], "get_operand() (owlapy.class_expression.owlobjectcomplementof method)": [[2, "owlapy.class_expression.OWLObjectComplementOf.get_operand"]], "is_owl_nothing() (owlapy.class_expression.owlanonymousclassexpression method)": [[2, "owlapy.class_expression.OWLAnonymousClassExpression.is_owl_nothing"]], "is_owl_nothing() (owlapy.class_expression.owlclass method)": [[2, "owlapy.class_expression.OWLClass.is_owl_nothing"]], "is_owl_nothing() (owlapy.class_expression.owlclassexpression method)": [[2, "owlapy.class_expression.OWLClassExpression.is_owl_nothing"]], "is_owl_thing() (owlapy.class_expression.owlanonymousclassexpression method)": [[2, "owlapy.class_expression.OWLAnonymousClassExpression.is_owl_thing"]], "is_owl_thing() (owlapy.class_expression.owlclass method)": [[2, "owlapy.class_expression.OWLClass.is_owl_thing"]], "is_owl_thing() (owlapy.class_expression.owlclassexpression method)": [[2, "owlapy.class_expression.OWLClassExpression.is_owl_thing"]], "operands() (owlapy.class_expression.owlnarybooleanclassexpression method)": [[2, "owlapy.class_expression.OWLNaryBooleanClassExpression.operands"]], "operands() (owlapy.class_expression.owlobjectcomplementof method)": [[2, "owlapy.class_expression.OWLObjectComplementOf.operands"]], "owlapy.class_expression": [[2, "module-owlapy.class_expression"]], "reminder (owlapy.class_expression.owlclass property)": [[2, "owlapy.class_expression.OWLClass.reminder"]], "str (owlapy.class_expression.owlclass property)": [[2, "owlapy.class_expression.OWLClass.str"]], "type_index (owlapy.class_expression.owlclass attribute)": [[2, "owlapy.class_expression.OWLClass.type_index"]], "type_index (owlapy.class_expression.owlobjectcomplementof attribute)": [[2, "owlapy.class_expression.OWLObjectComplementOf.type_index"]], "type_index (owlapy.class_expression.owlobjectintersectionof attribute)": [[2, "owlapy.class_expression.OWLObjectIntersectionOf.type_index"]], "type_index (owlapy.class_expression.owlobjectunionof attribute)": [[2, "owlapy.class_expression.OWLObjectUnionOf.type_index"]], "owlnarybooleanclassexpression (class in owlapy.class_expression.nary_boolean_expression)": [[3, "owlapy.class_expression.nary_boolean_expression.OWLNaryBooleanClassExpression"]], "owlobjectintersectionof (class in owlapy.class_expression.nary_boolean_expression)": [[3, "owlapy.class_expression.nary_boolean_expression.OWLObjectIntersectionOf"]], "owlobjectunionof (class in owlapy.class_expression.nary_boolean_expression)": [[3, "owlapy.class_expression.nary_boolean_expression.OWLObjectUnionOf"]], "__eq__() (owlapy.class_expression.nary_boolean_expression.owlnarybooleanclassexpression method)": [[3, "owlapy.class_expression.nary_boolean_expression.OWLNaryBooleanClassExpression.__eq__"]], "__hash__() (owlapy.class_expression.nary_boolean_expression.owlnarybooleanclassexpression method)": [[3, "owlapy.class_expression.nary_boolean_expression.OWLNaryBooleanClassExpression.__hash__"]], "__repr__() (owlapy.class_expression.nary_boolean_expression.owlnarybooleanclassexpression method)": [[3, "owlapy.class_expression.nary_boolean_expression.OWLNaryBooleanClassExpression.__repr__"]], "__slots__ (owlapy.class_expression.nary_boolean_expression.owlnarybooleanclassexpression attribute)": [[3, "owlapy.class_expression.nary_boolean_expression.OWLNaryBooleanClassExpression.__slots__"]], "__slots__ (owlapy.class_expression.nary_boolean_expression.owlobjectintersectionof attribute)": [[3, "owlapy.class_expression.nary_boolean_expression.OWLObjectIntersectionOf.__slots__"]], "__slots__ (owlapy.class_expression.nary_boolean_expression.owlobjectunionof attribute)": [[3, "owlapy.class_expression.nary_boolean_expression.OWLObjectUnionOf.__slots__"]], "operands() (owlapy.class_expression.nary_boolean_expression.owlnarybooleanclassexpression method)": [[3, "owlapy.class_expression.nary_boolean_expression.OWLNaryBooleanClassExpression.operands"]], "owlapy.class_expression.nary_boolean_expression": [[3, "module-owlapy.class_expression.nary_boolean_expression"]], "type_index (owlapy.class_expression.nary_boolean_expression.owlobjectintersectionof attribute)": [[3, "owlapy.class_expression.nary_boolean_expression.OWLObjectIntersectionOf.type_index"]], "type_index (owlapy.class_expression.nary_boolean_expression.owlobjectunionof attribute)": [[3, "owlapy.class_expression.nary_boolean_expression.OWLObjectUnionOf.type_index"]], "owlclass (class in owlapy.class_expression.owl_class)": [[4, "owlapy.class_expression.owl_class.OWLClass"]], "__slots__ (owlapy.class_expression.owl_class.owlclass attribute)": [[4, "owlapy.class_expression.owl_class.OWLClass.__slots__"]], "get_iri() (owlapy.class_expression.owl_class.owlclass method)": [[4, "owlapy.class_expression.owl_class.OWLClass.get_iri"]], "get_nnf() (owlapy.class_expression.owl_class.owlclass method)": [[4, "owlapy.class_expression.owl_class.OWLClass.get_nnf"]], "get_object_complement_of() (owlapy.class_expression.owl_class.owlclass method)": [[4, "owlapy.class_expression.owl_class.OWLClass.get_object_complement_of"]], "is_owl_nothing() (owlapy.class_expression.owl_class.owlclass method)": [[4, "owlapy.class_expression.owl_class.OWLClass.is_owl_nothing"]], "is_owl_thing() (owlapy.class_expression.owl_class.owlclass method)": [[4, "owlapy.class_expression.owl_class.OWLClass.is_owl_thing"]], "owlapy.class_expression.owl_class": [[4, "module-owlapy.class_expression.owl_class"]], "reminder (owlapy.class_expression.owl_class.owlclass property)": [[4, "owlapy.class_expression.owl_class.OWLClass.reminder"]], "str (owlapy.class_expression.owl_class.owlclass property)": [[4, "owlapy.class_expression.owl_class.OWLClass.str"]], "type_index (owlapy.class_expression.owl_class.owlclass attribute)": [[4, "owlapy.class_expression.owl_class.OWLClass.type_index"]], "hasindex (class in owlapy.has)": [[5, "owlapy.has.HasIndex"]], "__eq__() (owlapy.has.hasindex method)": [[5, "owlapy.has.HasIndex.__eq__"]], "owlapy.has": [[5, "module-owlapy.has"]], "type_index (owlapy.has.hasindex attribute)": [[5, "owlapy.has.HasIndex.type_index"]], "__version__ (in module owlapy)": [[6, "owlapy.__version__"]], "owlapy": [[6, "module-owlapy"]], "iri (class in owlapy.iri)": [[7, "owlapy.iri.IRI"]], "__eq__() (owlapy.iri.iri method)": [[7, "owlapy.iri.IRI.__eq__"]], "__hash__() (owlapy.iri.iri method)": [[7, "owlapy.iri.IRI.__hash__"]], "__repr__() (owlapy.iri.iri method)": [[7, "owlapy.iri.IRI.__repr__"]], "__slots__ (owlapy.iri.iri attribute)": [[7, "owlapy.iri.IRI.__slots__"]], "as_iri() (owlapy.iri.iri method)": [[7, "owlapy.iri.IRI.as_iri"]], "as_str() (owlapy.iri.iri method)": [[7, "owlapy.iri.IRI.as_str"]], "create() (owlapy.iri.iri static method)": [[7, "owlapy.iri.IRI.create"]], "get_namespace() (owlapy.iri.iri method)": [[7, "owlapy.iri.IRI.get_namespace"]], "get_remainder() (owlapy.iri.iri method)": [[7, "owlapy.iri.IRI.get_remainder"]], "get_short_form() (owlapy.iri.iri method)": [[7, "owlapy.iri.IRI.get_short_form"]], "is_nothing() (owlapy.iri.iri method)": [[7, "owlapy.iri.IRI.is_nothing"]], "is_reserved_vocabulary() (owlapy.iri.iri method)": [[7, "owlapy.iri.IRI.is_reserved_vocabulary"]], "is_thing() (owlapy.iri.iri method)": [[7, "owlapy.iri.IRI.is_thing"]], "owlapy.iri": [[7, "module-owlapy.iri"]], "reminder (owlapy.iri.iri property)": [[7, "owlapy.iri.IRI.reminder"]], "str (owlapy.iri.iri property)": [[7, "owlapy.iri.IRI.str"]], "type_index (owlapy.iri.iri attribute)": [[7, "owlapy.iri.IRI.type_index"]], "hascardinality (class in owlapy.meta_classes)": [[8, "owlapy.meta_classes.HasCardinality"]], "hasfiller (class in owlapy.meta_classes)": [[8, "owlapy.meta_classes.HasFiller"]], "hasiri (class in owlapy.meta_classes)": [[8, "owlapy.meta_classes.HasIRI"]], "hasoperands (class in owlapy.meta_classes)": [[8, "owlapy.meta_classes.HasOperands"]], "__slots__ (owlapy.meta_classes.hascardinality attribute)": [[8, "owlapy.meta_classes.HasCardinality.__slots__"]], "__slots__ (owlapy.meta_classes.hasfiller attribute)": [[8, "owlapy.meta_classes.HasFiller.__slots__"]], "__slots__ (owlapy.meta_classes.hasiri attribute)": [[8, "owlapy.meta_classes.HasIRI.__slots__"]], "__slots__ (owlapy.meta_classes.hasoperands attribute)": [[8, "owlapy.meta_classes.HasOperands.__slots__"]], "get_cardinality() (owlapy.meta_classes.hascardinality method)": [[8, "owlapy.meta_classes.HasCardinality.get_cardinality"]], "get_filler() (owlapy.meta_classes.hasfiller method)": [[8, "owlapy.meta_classes.HasFiller.get_filler"]], "get_iri() (owlapy.meta_classes.hasiri method)": [[8, "owlapy.meta_classes.HasIRI.get_iri"]], "operands() (owlapy.meta_classes.hasoperands method)": [[8, "owlapy.meta_classes.HasOperands.operands"]], "owlapy.meta_classes": [[8, "module-owlapy.meta_classes"]], "addimport (class in owlapy.model)": [[9, "owlapy.model.AddImport"]], "boolean (owlapy.model.xsdvocabulary attribute)": [[9, "owlapy.model.XSDVocabulary.BOOLEAN"]], "booleanowldatatype (in module owlapy.model)": [[9, "owlapy.model.BooleanOWLDatatype"]], "date (owlapy.model.xsdvocabulary attribute)": [[9, "owlapy.model.XSDVocabulary.DATE"]], "date_time (owlapy.model.xsdvocabulary attribute)": [[9, "owlapy.model.XSDVocabulary.DATE_TIME"]], "date_time_stamp (owlapy.model.xsdvocabulary attribute)": [[9, "owlapy.model.XSDVocabulary.DATE_TIME_STAMP"]], "decimal (owlapy.model.xsdvocabulary attribute)": [[9, "owlapy.model.XSDVocabulary.DECIMAL"]], "double (owlapy.model.xsdvocabulary attribute)": [[9, "owlapy.model.XSDVocabulary.DOUBLE"]], "duration (owlapy.model.xsdvocabulary attribute)": [[9, "owlapy.model.XSDVocabulary.DURATION"]], "dateowldatatype (in module owlapy.model)": [[9, "owlapy.model.DateOWLDatatype"]], "datetimeowldatatype (in module owlapy.model)": [[9, "owlapy.model.DateTimeOWLDatatype"]], "doubleowldatatype (in module owlapy.model)": [[9, "owlapy.model.DoubleOWLDatatype"]], "durationowldatatype (in module owlapy.model)": [[9, "owlapy.model.DurationOWLDatatype"]], "float (owlapy.model.xsdvocabulary attribute)": [[9, "owlapy.model.XSDVocabulary.FLOAT"]], "fraction_digits (owlapy.model.owlfacet attribute)": [[9, "owlapy.model.OWLFacet.FRACTION_DIGITS"]], "hascardinality (class in owlapy.model)": [[9, "owlapy.model.HasCardinality"]], "hasfiller (class in owlapy.model)": [[9, "owlapy.model.HasFiller"]], "hasiri (class in owlapy.model)": [[9, "owlapy.model.HasIRI"]], "hasindex (class in owlapy.model)": [[9, "owlapy.model.HasIndex"]], "hasoperands (class in owlapy.model)": [[9, "owlapy.model.HasOperands"]], "integer (owlapy.model.xsdvocabulary attribute)": [[9, "owlapy.model.XSDVocabulary.INTEGER"]], "iri (class in owlapy.model)": [[9, "owlapy.model.IRI"]], "integerowldatatype (in module owlapy.model)": [[9, "owlapy.model.IntegerOWLDatatype"]], "length (owlapy.model.owlfacet attribute)": [[9, "owlapy.model.OWLFacet.LENGTH"]], "long (owlapy.model.xsdvocabulary attribute)": [[9, "owlapy.model.XSDVocabulary.LONG"]], "literals (in module owlapy.model)": [[9, "owlapy.model.Literals"]], "max_exclusive (owlapy.model.owlfacet attribute)": [[9, "owlapy.model.OWLFacet.MAX_EXCLUSIVE"]], "max_inclusive (owlapy.model.owlfacet attribute)": [[9, "owlapy.model.OWLFacet.MAX_INCLUSIVE"]], "max_length (owlapy.model.owlfacet attribute)": [[9, "owlapy.model.OWLFacet.MAX_LENGTH"]], "min_exclusive (owlapy.model.owlfacet attribute)": [[9, "owlapy.model.OWLFacet.MIN_EXCLUSIVE"]], "min_inclusive (owlapy.model.owlfacet attribute)": [[9, "owlapy.model.OWLFacet.MIN_INCLUSIVE"]], "min_length (owlapy.model.owlfacet attribute)": [[9, "owlapy.model.OWLFacet.MIN_LENGTH"]], "move() (in module owlapy.model)": [[9, "owlapy.model.MOVE"]], "numeric_datatypes (in module owlapy.model)": [[9, "owlapy.model.NUMERIC_DATATYPES"]], "owlannotationobject (class in owlapy.model)": [[9, "owlapy.model.OWLAnnotationObject"]], "owlannotationsubject (class in owlapy.model)": [[9, "owlapy.model.OWLAnnotationSubject"]], "owlannotationvalue (class in owlapy.model)": [[9, "owlapy.model.OWLAnnotationValue"]], "owlaxiom (class in owlapy.model)": [[9, "owlapy.model.OWLAxiom"]], "owlbottomdataproperty (in module owlapy.model)": [[9, "owlapy.model.OWLBottomDataProperty"]], "owlbottomobjectproperty (in module owlapy.model)": [[9, "owlapy.model.OWLBottomObjectProperty"]], "owlcardinalityrestriction (class in owlapy.model)": [[9, "owlapy.model.OWLCardinalityRestriction"]], "owlclass (class in owlapy.model)": [[9, "owlapy.model.OWLClass"]], "owlclassaxiom (class in owlapy.model)": [[9, "owlapy.model.OWLClassAxiom"]], "owlclassexpression (class in owlapy.model)": [[9, "owlapy.model.OWLClassExpression"]], "owldataallvaluesfrom (class in owlapy.model)": [[9, "owlapy.model.OWLDataAllValuesFrom"]], "owldatacardinalityrestriction (class in owlapy.model)": [[9, "owlapy.model.OWLDataCardinalityRestriction"]], "owldataexactcardinality (class in owlapy.model)": [[9, "owlapy.model.OWLDataExactCardinality"]], "owldatahasvalue (class in owlapy.model)": [[9, "owlapy.model.OWLDataHasValue"]], "owldatamaxcardinality (class in owlapy.model)": [[9, "owlapy.model.OWLDataMaxCardinality"]], "owldatamincardinality (class in owlapy.model)": [[9, "owlapy.model.OWLDataMinCardinality"]], "owldataoneof (class in owlapy.model)": [[9, "owlapy.model.OWLDataOneOf"]], "owldataproperty (class in owlapy.model)": [[9, "owlapy.model.OWLDataProperty"]], "owldatapropertydomainaxiom (class in owlapy.model)": [[9, "owlapy.model.OWLDataPropertyDomainAxiom"]], "owldatapropertyexpression (class in owlapy.model)": [[9, "owlapy.model.OWLDataPropertyExpression"]], "owldatapropertyrangeaxiom (class in owlapy.model)": [[9, "owlapy.model.OWLDataPropertyRangeAxiom"]], "owldatarange (class in owlapy.model)": [[9, "owlapy.model.OWLDataRange"]], "owldatarestriction (class in owlapy.model)": [[9, "owlapy.model.OWLDataRestriction"]], "owldatasomevaluesfrom (class in owlapy.model)": [[9, "owlapy.model.OWLDataSomeValuesFrom"]], "owldatatype (class in owlapy.model)": [[9, "owlapy.model.OWLDatatype"]], "owlentity (class in owlapy.model)": [[9, "owlapy.model.OWLEntity"]], "owlequivalentclassesaxiom (class in owlapy.model)": [[9, "owlapy.model.OWLEquivalentClassesAxiom"]], "owlfacet (class in owlapy.model)": [[9, "owlapy.model.OWLFacet"]], "owlhasvaluerestriction (class in owlapy.model)": [[9, "owlapy.model.OWLHasValueRestriction"]], "owlimportsdeclaration (class in owlapy.model)": [[9, "owlapy.model.OWLImportsDeclaration"]], "owlindividual (class in owlapy.model)": [[9, "owlapy.model.OWLIndividual"]], "owlliteral (class in owlapy.model)": [[9, "owlapy.model.OWLLiteral"]], "owlnamedindividual (class in owlapy.model)": [[9, "owlapy.model.OWLNamedIndividual"]], "owlnarybooleanclassexpression (class in owlapy.model)": [[9, "owlapy.model.OWLNaryBooleanClassExpression"]], "owlnothing (in module owlapy.model)": [[9, "owlapy.model.OWLNothing"]], "owlobject (class in owlapy.model)": [[9, "owlapy.model.OWLObject"]], "owlobjectallvaluesfrom (class in owlapy.model)": [[9, "owlapy.model.OWLObjectAllValuesFrom"]], "owlobjectcardinalityrestriction (class in owlapy.model)": [[9, "owlapy.model.OWLObjectCardinalityRestriction"]], "owlobjectcomplementof (class in owlapy.model)": [[9, "owlapy.model.OWLObjectComplementOf"]], "owlobjectexactcardinality (class in owlapy.model)": [[9, "owlapy.model.OWLObjectExactCardinality"]], "owlobjecthasself (class in owlapy.model)": [[9, "owlapy.model.OWLObjectHasSelf"]], "owlobjectintersectionof (class in owlapy.model)": [[9, "owlapy.model.OWLObjectIntersectionOf"]], "owlobjectmaxcardinality (class in owlapy.model)": [[9, "owlapy.model.OWLObjectMaxCardinality"]], "owlobjectmincardinality (class in owlapy.model)": [[9, "owlapy.model.OWLObjectMinCardinality"]], "owlobjectproperty (class in owlapy.model)": [[9, "owlapy.model.OWLObjectProperty"]], "owlobjectpropertydomainaxiom (class in owlapy.model)": [[9, "owlapy.model.OWLObjectPropertyDomainAxiom"]], "owlobjectpropertyexpression (class in owlapy.model)": [[9, "owlapy.model.OWLObjectPropertyExpression"]], "owlobjectpropertyrangeaxiom (class in owlapy.model)": [[9, "owlapy.model.OWLObjectPropertyRangeAxiom"]], "owlobjectrestriction (class in owlapy.model)": [[9, "owlapy.model.OWLObjectRestriction"]], "owlobjectsomevaluesfrom (class in owlapy.model)": [[9, "owlapy.model.OWLObjectSomeValuesFrom"]], "owlobjectunionof (class in owlapy.model)": [[9, "owlapy.model.OWLObjectUnionOf"]], "owlontology (class in owlapy.model)": [[9, "owlapy.model.OWLOntology"]], "owlontologychange (class in owlapy.model)": [[9, "owlapy.model.OWLOntologyChange"]], "owlontologyid (class in owlapy.model)": [[9, "owlapy.model.OWLOntologyID"]], "owlontologymanager (class in owlapy.model)": [[9, "owlapy.model.OWLOntologyManager"]], "owlproperty (class in owlapy.model)": [[9, "owlapy.model.OWLProperty"]], "owlpropertyexpression (class in owlapy.model)": [[9, "owlapy.model.OWLPropertyExpression"]], "owlpropertyrange (class in owlapy.model)": [[9, "owlapy.model.OWLPropertyRange"]], "owlquantifieddatarestriction (class in owlapy.model)": [[9, "owlapy.model.OWLQuantifiedDataRestriction"]], "owlquantifiedobjectrestriction (class in owlapy.model)": [[9, "owlapy.model.OWLQuantifiedObjectRestriction"]], "owlquantifiedrestriction (class in owlapy.model)": [[9, "owlapy.model.OWLQuantifiedRestriction"]], "owlrdfvocabulary (class in owlapy.model)": [[9, "owlapy.model.OWLRDFVocabulary"]], "owlreasoner (class in owlapy.model)": [[9, "owlapy.model.OWLReasoner"]], "owlrestriction (class in owlapy.model)": [[9, "owlapy.model.OWLRestriction"]], "owlthing (in module owlapy.model)": [[9, "owlapy.model.OWLThing"]], "owltopdataproperty (in module owlapy.model)": [[9, "owlapy.model.OWLTopDataProperty"]], "owltopobjectproperty (in module owlapy.model)": [[9, "owlapy.model.OWLTopObjectProperty"]], "owl_bottom_data_property (owlapy.model.owlrdfvocabulary attribute)": [[9, "owlapy.model.OWLRDFVocabulary.OWL_BOTTOM_DATA_PROPERTY"]], "owl_bottom_object_property (owlapy.model.owlrdfvocabulary attribute)": [[9, "owlapy.model.OWLRDFVocabulary.OWL_BOTTOM_OBJECT_PROPERTY"]], "owl_class (owlapy.model.owlrdfvocabulary attribute)": [[9, "owlapy.model.OWLRDFVocabulary.OWL_CLASS"]], "owl_named_individual (owlapy.model.owlrdfvocabulary attribute)": [[9, "owlapy.model.OWLRDFVocabulary.OWL_NAMED_INDIVIDUAL"]], "owl_nothing (owlapy.model.owlrdfvocabulary attribute)": [[9, "owlapy.model.OWLRDFVocabulary.OWL_NOTHING"]], "owl_thing (owlapy.model.owlrdfvocabulary attribute)": [[9, "owlapy.model.OWLRDFVocabulary.OWL_THING"]], "owl_top_data_property (owlapy.model.owlrdfvocabulary attribute)": [[9, "owlapy.model.OWLRDFVocabulary.OWL_TOP_DATA_PROPERTY"]], "owl_top_object_property (owlapy.model.owlrdfvocabulary attribute)": [[9, "owlapy.model.OWLRDFVocabulary.OWL_TOP_OBJECT_PROPERTY"]], "pattern (owlapy.model.owlfacet attribute)": [[9, "owlapy.model.OWLFacet.PATTERN"]], "rdfs_literal (owlapy.model.owlrdfvocabulary attribute)": [[9, "owlapy.model.OWLRDFVocabulary.RDFS_LITERAL"]], "string (owlapy.model.xsdvocabulary attribute)": [[9, "owlapy.model.XSDVocabulary.STRING"]], "stringowldatatype (in module owlapy.model)": [[9, "owlapy.model.StringOWLDatatype"]], "time_datatypes (in module owlapy.model)": [[9, "owlapy.model.TIME_DATATYPES"]], "total_digits (owlapy.model.owlfacet attribute)": [[9, "owlapy.model.OWLFacet.TOTAL_DIGITS"]], "topowldatatype (in module owlapy.model)": [[9, "owlapy.model.TopOWLDatatype"]], "xsdvocabulary (class in owlapy.model)": [[9, "owlapy.model.XSDVocabulary"]], "__eq__() (owlapy.model.hasindex method)": [[9, "owlapy.model.HasIndex.__eq__"]], "__eq__() (owlapy.model.iri method)": [[9, "owlapy.model.IRI.__eq__"]], "__eq__() (owlapy.model.owldataallvaluesfrom method)": [[9, "owlapy.model.OWLDataAllValuesFrom.__eq__"]], "__eq__() (owlapy.model.owldatacardinalityrestriction method)": [[9, "owlapy.model.OWLDataCardinalityRestriction.__eq__"]], "__eq__() (owlapy.model.owldatahasvalue method)": [[9, "owlapy.model.OWLDataHasValue.__eq__"]], "__eq__() (owlapy.model.owldataoneof method)": [[9, "owlapy.model.OWLDataOneOf.__eq__"]], "__eq__() (owlapy.model.owldatasomevaluesfrom method)": [[9, "owlapy.model.OWLDataSomeValuesFrom.__eq__"]], "__eq__() (owlapy.model.owlhasvaluerestriction method)": [[9, "owlapy.model.OWLHasValueRestriction.__eq__"]], "__eq__() (owlapy.model.owlnarybooleanclassexpression method)": [[9, "owlapy.model.OWLNaryBooleanClassExpression.__eq__"]], "__eq__() (owlapy.model.owlobject method)": [[9, "owlapy.model.OWLObject.__eq__"]], "__eq__() (owlapy.model.owlobjectallvaluesfrom method)": [[9, "owlapy.model.OWLObjectAllValuesFrom.__eq__"]], "__eq__() (owlapy.model.owlobjectcardinalityrestriction method)": [[9, "owlapy.model.OWLObjectCardinalityRestriction.__eq__"]], "__eq__() (owlapy.model.owlobjectcomplementof method)": [[9, "owlapy.model.OWLObjectComplementOf.__eq__"]], "__eq__() (owlapy.model.owlobjecthasself method)": [[9, "owlapy.model.OWLObjectHasSelf.__eq__"]], "__eq__() (owlapy.model.owlobjectsomevaluesfrom method)": [[9, "owlapy.model.OWLObjectSomeValuesFrom.__eq__"]], "__eq__() (owlapy.model.owlontologyid method)": [[9, "owlapy.model.OWLOntologyID.__eq__"]], "__hash__() (owlapy.model.iri method)": [[9, "owlapy.model.IRI.__hash__"]], "__hash__() (owlapy.model.owldataallvaluesfrom method)": [[9, "owlapy.model.OWLDataAllValuesFrom.__hash__"]], "__hash__() (owlapy.model.owldatacardinalityrestriction method)": [[9, "owlapy.model.OWLDataCardinalityRestriction.__hash__"]], "__hash__() (owlapy.model.owldatahasvalue method)": [[9, "owlapy.model.OWLDataHasValue.__hash__"]], "__hash__() (owlapy.model.owldataoneof method)": [[9, "owlapy.model.OWLDataOneOf.__hash__"]], "__hash__() (owlapy.model.owldatasomevaluesfrom method)": [[9, "owlapy.model.OWLDataSomeValuesFrom.__hash__"]], "__hash__() (owlapy.model.owlhasvaluerestriction method)": [[9, "owlapy.model.OWLHasValueRestriction.__hash__"]], "__hash__() (owlapy.model.owlnarybooleanclassexpression method)": [[9, "owlapy.model.OWLNaryBooleanClassExpression.__hash__"]], "__hash__() (owlapy.model.owlobject method)": [[9, "owlapy.model.OWLObject.__hash__"]], "__hash__() (owlapy.model.owlobjectallvaluesfrom method)": [[9, "owlapy.model.OWLObjectAllValuesFrom.__hash__"]], "__hash__() (owlapy.model.owlobjectcardinalityrestriction method)": [[9, "owlapy.model.OWLObjectCardinalityRestriction.__hash__"]], "__hash__() (owlapy.model.owlobjectcomplementof method)": [[9, "owlapy.model.OWLObjectComplementOf.__hash__"]], "__hash__() (owlapy.model.owlobjecthasself method)": [[9, "owlapy.model.OWLObjectHasSelf.__hash__"]], "__hash__() (owlapy.model.owlobjectsomevaluesfrom method)": [[9, "owlapy.model.OWLObjectSomeValuesFrom.__hash__"]], "__repr__() (owlapy.model.iri method)": [[9, "owlapy.model.IRI.__repr__"]], "__repr__() (owlapy.model.owldataallvaluesfrom method)": [[9, "owlapy.model.OWLDataAllValuesFrom.__repr__"]], "__repr__() (owlapy.model.owldatacardinalityrestriction method)": [[9, "owlapy.model.OWLDataCardinalityRestriction.__repr__"]], "__repr__() (owlapy.model.owldatahasvalue method)": [[9, "owlapy.model.OWLDataHasValue.__repr__"]], "__repr__() (owlapy.model.owldataoneof method)": [[9, "owlapy.model.OWLDataOneOf.__repr__"]], "__repr__() (owlapy.model.owldatasomevaluesfrom method)": [[9, "owlapy.model.OWLDataSomeValuesFrom.__repr__"]], "__repr__() (owlapy.model.owlnarybooleanclassexpression method)": [[9, "owlapy.model.OWLNaryBooleanClassExpression.__repr__"]], "__repr__() (owlapy.model.owlobject method)": [[9, "owlapy.model.OWLObject.__repr__"]], "__repr__() (owlapy.model.owlobjectallvaluesfrom method)": [[9, "owlapy.model.OWLObjectAllValuesFrom.__repr__"]], "__repr__() (owlapy.model.owlobjectcardinalityrestriction method)": [[9, "owlapy.model.OWLObjectCardinalityRestriction.__repr__"]], "__repr__() (owlapy.model.owlobjectcomplementof method)": [[9, "owlapy.model.OWLObjectComplementOf.__repr__"]], "__repr__() (owlapy.model.owlobjecthasself method)": [[9, "owlapy.model.OWLObjectHasSelf.__repr__"]], "__repr__() (owlapy.model.owlobjectsomevaluesfrom method)": [[9, "owlapy.model.OWLObjectSomeValuesFrom.__repr__"]], "__repr__() (owlapy.model.owlontologyid method)": [[9, "owlapy.model.OWLOntologyID.__repr__"]], "__slots__ (owlapy.model.addimport attribute)": [[9, "owlapy.model.AddImport.__slots__"]], "__slots__ (owlapy.model.hascardinality attribute)": [[9, "owlapy.model.HasCardinality.__slots__"]], "__slots__ (owlapy.model.hasfiller attribute)": [[9, "owlapy.model.HasFiller.__slots__"]], "__slots__ (owlapy.model.hasiri attribute)": [[9, "owlapy.model.HasIRI.__slots__"]], "__slots__ (owlapy.model.hasoperands attribute)": [[9, "owlapy.model.HasOperands.__slots__"]], "__slots__ (owlapy.model.iri attribute)": [[9, "owlapy.model.IRI.__slots__"]], "__slots__ (owlapy.model.owlannotationobject attribute)": [[9, "owlapy.model.OWLAnnotationObject.__slots__"]], "__slots__ (owlapy.model.owlannotationsubject attribute)": [[9, "owlapy.model.OWLAnnotationSubject.__slots__"]], "__slots__ (owlapy.model.owlannotationvalue attribute)": [[9, "owlapy.model.OWLAnnotationValue.__slots__"]], "__slots__ (owlapy.model.owlaxiom attribute)": [[9, "owlapy.model.OWLAxiom.__slots__"]], "__slots__ (owlapy.model.owlcardinalityrestriction attribute)": [[9, "owlapy.model.OWLCardinalityRestriction.__slots__"]], "__slots__ (owlapy.model.owlclass attribute)": [[9, "owlapy.model.OWLClass.__slots__"]], "__slots__ (owlapy.model.owlclassaxiom attribute)": [[9, "owlapy.model.OWLClassAxiom.__slots__"]], "__slots__ (owlapy.model.owlclassexpression attribute)": [[9, "owlapy.model.OWLClassExpression.__slots__"]], "__slots__ (owlapy.model.owldataallvaluesfrom attribute)": [[9, "owlapy.model.OWLDataAllValuesFrom.__slots__"]], "__slots__ (owlapy.model.owldatacardinalityrestriction attribute)": [[9, "owlapy.model.OWLDataCardinalityRestriction.__slots__"]], "__slots__ (owlapy.model.owldataexactcardinality attribute)": [[9, "owlapy.model.OWLDataExactCardinality.__slots__"]], "__slots__ (owlapy.model.owldatahasvalue attribute)": [[9, "owlapy.model.OWLDataHasValue.__slots__"]], "__slots__ (owlapy.model.owldatamaxcardinality attribute)": [[9, "owlapy.model.OWLDataMaxCardinality.__slots__"]], "__slots__ (owlapy.model.owldatamincardinality attribute)": [[9, "owlapy.model.OWLDataMinCardinality.__slots__"]], "__slots__ (owlapy.model.owldataproperty attribute)": [[9, "owlapy.model.OWLDataProperty.__slots__"]], "__slots__ (owlapy.model.owldatapropertydomainaxiom attribute)": [[9, "owlapy.model.OWLDataPropertyDomainAxiom.__slots__"]], "__slots__ (owlapy.model.owldatapropertyexpression attribute)": [[9, "owlapy.model.OWLDataPropertyExpression.__slots__"]], "__slots__ (owlapy.model.owldatapropertyrangeaxiom attribute)": [[9, "owlapy.model.OWLDataPropertyRangeAxiom.__slots__"]], "__slots__ (owlapy.model.owldatarestriction attribute)": [[9, "owlapy.model.OWLDataRestriction.__slots__"]], "__slots__ (owlapy.model.owldatasomevaluesfrom attribute)": [[9, "owlapy.model.OWLDataSomeValuesFrom.__slots__"]], "__slots__ (owlapy.model.owldatatype attribute)": [[9, "owlapy.model.OWLDatatype.__slots__"]], "__slots__ (owlapy.model.owlentity attribute)": [[9, "owlapy.model.OWLEntity.__slots__"]], "__slots__ (owlapy.model.owlequivalentclassesaxiom attribute)": [[9, "owlapy.model.OWLEquivalentClassesAxiom.__slots__"]], "__slots__ (owlapy.model.owlhasvaluerestriction attribute)": [[9, "owlapy.model.OWLHasValueRestriction.__slots__"]], "__slots__ (owlapy.model.owlimportsdeclaration attribute)": [[9, "owlapy.model.OWLImportsDeclaration.__slots__"]], "__slots__ (owlapy.model.owlindividual attribute)": [[9, "owlapy.model.OWLIndividual.__slots__"]], "__slots__ (owlapy.model.owlliteral attribute)": [[9, "owlapy.model.OWLLiteral.__slots__"]], "__slots__ (owlapy.model.owlnamedindividual attribute)": [[9, "owlapy.model.OWLNamedIndividual.__slots__"]], "__slots__ (owlapy.model.owlnarybooleanclassexpression attribute)": [[9, "owlapy.model.OWLNaryBooleanClassExpression.__slots__"]], "__slots__ (owlapy.model.owlobject attribute)": [[9, "owlapy.model.OWLObject.__slots__"]], "__slots__ (owlapy.model.owlobjectallvaluesfrom attribute)": [[9, "owlapy.model.OWLObjectAllValuesFrom.__slots__"]], "__slots__ (owlapy.model.owlobjectcardinalityrestriction attribute)": [[9, "owlapy.model.OWLObjectCardinalityRestriction.__slots__"]], "__slots__ (owlapy.model.owlobjectcomplementof attribute)": [[9, "owlapy.model.OWLObjectComplementOf.__slots__"]], "__slots__ (owlapy.model.owlobjectexactcardinality attribute)": [[9, "owlapy.model.OWLObjectExactCardinality.__slots__"]], "__slots__ (owlapy.model.owlobjecthasself attribute)": [[9, "owlapy.model.OWLObjectHasSelf.__slots__"]], "__slots__ (owlapy.model.owlobjectintersectionof attribute)": [[9, "owlapy.model.OWLObjectIntersectionOf.__slots__"]], "__slots__ (owlapy.model.owlobjectmaxcardinality attribute)": [[9, "owlapy.model.OWLObjectMaxCardinality.__slots__"]], "__slots__ (owlapy.model.owlobjectmincardinality attribute)": [[9, "owlapy.model.OWLObjectMinCardinality.__slots__"]], "__slots__ (owlapy.model.owlobjectproperty attribute)": [[9, "owlapy.model.OWLObjectProperty.__slots__"]], "__slots__ (owlapy.model.owlobjectpropertydomainaxiom attribute)": [[9, "owlapy.model.OWLObjectPropertyDomainAxiom.__slots__"]], "__slots__ (owlapy.model.owlobjectpropertyexpression attribute)": [[9, "owlapy.model.OWLObjectPropertyExpression.__slots__"]], "__slots__ (owlapy.model.owlobjectpropertyrangeaxiom attribute)": [[9, "owlapy.model.OWLObjectPropertyRangeAxiom.__slots__"]], "__slots__ (owlapy.model.owlobjectrestriction attribute)": [[9, "owlapy.model.OWLObjectRestriction.__slots__"]], "__slots__ (owlapy.model.owlobjectsomevaluesfrom attribute)": [[9, "owlapy.model.OWLObjectSomeValuesFrom.__slots__"]], "__slots__ (owlapy.model.owlobjectunionof attribute)": [[9, "owlapy.model.OWLObjectUnionOf.__slots__"]], "__slots__ (owlapy.model.owlontology attribute)": [[9, "owlapy.model.OWLOntology.__slots__"]], "__slots__ (owlapy.model.owlontologychange attribute)": [[9, "owlapy.model.OWLOntologyChange.__slots__"]], "__slots__ (owlapy.model.owlontologyid attribute)": [[9, "owlapy.model.OWLOntologyID.__slots__"]], "__slots__ (owlapy.model.owlproperty attribute)": [[9, "owlapy.model.OWLProperty.__slots__"]], "__slots__ (owlapy.model.owlpropertyexpression attribute)": [[9, "owlapy.model.OWLPropertyExpression.__slots__"]], "__slots__ (owlapy.model.owlquantifieddatarestriction attribute)": [[9, "owlapy.model.OWLQuantifiedDataRestriction.__slots__"]], "__slots__ (owlapy.model.owlquantifiedobjectrestriction attribute)": [[9, "owlapy.model.OWLQuantifiedObjectRestriction.__slots__"]], "__slots__ (owlapy.model.owlquantifiedrestriction attribute)": [[9, "owlapy.model.OWLQuantifiedRestriction.__slots__"]], "__slots__ (owlapy.model.owlreasoner attribute)": [[9, "owlapy.model.OWLReasoner.__slots__"]], "__slots__ (owlapy.model.owlrestriction attribute)": [[9, "owlapy.model.OWLRestriction.__slots__"]], "add_axiom() (owlapy.model.owlontologymanager method)": [[9, "owlapy.model.OWLOntologyManager.add_axiom"]], "annotations() (owlapy.model.owlaxiom method)": [[9, "owlapy.model.OWLAxiom.annotations"]], "apply_change() (owlapy.model.owlontologymanager method)": [[9, "owlapy.model.OWLOntologyManager.apply_change"]], "as_anonymous_individual() (owlapy.model.owlannotationobject method)": [[9, "owlapy.model.OWLAnnotationObject.as_anonymous_individual"]], "as_intersection_of_min_max() (owlapy.model.owldataexactcardinality method)": [[9, "owlapy.model.OWLDataExactCardinality.as_intersection_of_min_max"]], "as_intersection_of_min_max() (owlapy.model.owlobjectexactcardinality method)": [[9, "owlapy.model.OWLObjectExactCardinality.as_intersection_of_min_max"]], "as_iri() (owlapy.model.iri method)": [[9, "owlapy.model.IRI.as_iri"]], "as_iri() (owlapy.model.owlannotationobject method)": [[9, "owlapy.model.OWLAnnotationObject.as_iri"]], "as_literal() (owlapy.model.owlannotationvalue method)": [[9, "owlapy.model.OWLAnnotationValue.as_literal"]], "as_literal() (owlapy.model.owlliteral method)": [[9, "owlapy.model.OWLLiteral.as_literal"]], "as_some_values_from() (owlapy.model.owldatahasvalue method)": [[9, "owlapy.model.OWLDataHasValue.as_some_values_from"]], "as_str() (owlapy.model.iri method)": [[9, "owlapy.model.IRI.as_str"]], "classes_in_signature() (owlapy.model.owlontology method)": [[9, "owlapy.model.OWLOntology.classes_in_signature"]], "contains_named_equivalent_class() (owlapy.model.owlequivalentclassesaxiom method)": [[9, "owlapy.model.OWLEquivalentClassesAxiom.contains_named_equivalent_class"]], "contains_owl_nothing() (owlapy.model.owlequivalentclassesaxiom method)": [[9, "owlapy.model.OWLEquivalentClassesAxiom.contains_owl_nothing"]], "contains_owl_thing() (owlapy.model.owlequivalentclassesaxiom method)": [[9, "owlapy.model.OWLEquivalentClassesAxiom.contains_owl_thing"]], "create() (owlapy.model.iri static method)": [[9, "owlapy.model.IRI.create"]], "create_ontology() (owlapy.model.owlontologymanager method)": [[9, "owlapy.model.OWLOntologyManager.create_ontology"]], "data_properties_in_signature() (owlapy.model.owlontology method)": [[9, "owlapy.model.OWLOntology.data_properties_in_signature"]], "data_property_domain_axioms() (owlapy.model.owlontology method)": [[9, "owlapy.model.OWLOntology.data_property_domain_axioms"]], "data_property_domains() (owlapy.model.owlreasoner method)": [[9, "owlapy.model.OWLReasoner.data_property_domains"]], "data_property_range_axioms() (owlapy.model.owlontology method)": [[9, "owlapy.model.OWLOntology.data_property_range_axioms"]], "data_property_values() (owlapy.model.owlreasoner method)": [[9, "owlapy.model.OWLReasoner.data_property_values"]], "different_individuals() (owlapy.model.owlreasoner method)": [[9, "owlapy.model.OWLReasoner.different_individuals"]], "disjoint_classes() (owlapy.model.owlreasoner method)": [[9, "owlapy.model.OWLReasoner.disjoint_classes"]], "disjoint_data_properties() (owlapy.model.owlreasoner method)": [[9, "owlapy.model.OWLReasoner.disjoint_data_properties"]], "disjoint_object_properties() (owlapy.model.owlreasoner method)": [[9, "owlapy.model.OWLReasoner.disjoint_object_properties"]], "equivalent_classes() (owlapy.model.owlreasoner method)": [[9, "owlapy.model.OWLReasoner.equivalent_classes"]], "equivalent_classes_axioms() (owlapy.model.owlontology method)": [[9, "owlapy.model.OWLOntology.equivalent_classes_axioms"]], "equivalent_data_properties() (owlapy.model.owlreasoner method)": [[9, "owlapy.model.OWLReasoner.equivalent_data_properties"]], "equivalent_object_properties() (owlapy.model.owlreasoner method)": [[9, "owlapy.model.OWLReasoner.equivalent_object_properties"]], "flush() (owlapy.model.owlreasoner method)": [[9, "owlapy.model.OWLReasoner.flush"]], "from_str() (owlapy.model.owlfacet static method)": [[9, "owlapy.model.OWLFacet.from_str"]], "general_class_axioms() (owlapy.model.owlontology method)": [[9, "owlapy.model.OWLOntology.general_class_axioms"]], "get_cardinality() (owlapy.model.hascardinality method)": [[9, "owlapy.model.HasCardinality.get_cardinality"]], "get_cardinality() (owlapy.model.owlcardinalityrestriction method)": [[9, "owlapy.model.OWLCardinalityRestriction.get_cardinality"]], "get_datatype() (owlapy.model.owlliteral method)": [[9, "owlapy.model.OWLLiteral.get_datatype"]], "get_default_document_iri() (owlapy.model.owlontologyid method)": [[9, "owlapy.model.OWLOntologyID.get_default_document_iri"]], "get_filler() (owlapy.model.hasfiller method)": [[9, "owlapy.model.HasFiller.get_filler"]], "get_filler() (owlapy.model.owlcardinalityrestriction method)": [[9, "owlapy.model.OWLCardinalityRestriction.get_filler"]], "get_filler() (owlapy.model.owlhasvaluerestriction method)": [[9, "owlapy.model.OWLHasValueRestriction.get_filler"]], "get_filler() (owlapy.model.owlquantifieddatarestriction method)": [[9, "owlapy.model.OWLQuantifiedDataRestriction.get_filler"]], "get_filler() (owlapy.model.owlquantifiedobjectrestriction method)": [[9, "owlapy.model.OWLQuantifiedObjectRestriction.get_filler"]], "get_import_declaration() (owlapy.model.addimport method)": [[9, "owlapy.model.AddImport.get_import_declaration"]], "get_inverse_property() (owlapy.model.owlobjectproperty method)": [[9, "owlapy.model.OWLObjectProperty.get_inverse_property"]], "get_inverse_property() (owlapy.model.owlobjectpropertyexpression method)": [[9, "owlapy.model.OWLObjectPropertyExpression.get_inverse_property"]], "get_iri() (owlapy.model.hasiri method)": [[9, "owlapy.model.HasIRI.get_iri"]], "get_iri() (owlapy.model.owlclass method)": [[9, "owlapy.model.OWLClass.get_iri"]], "get_iri() (owlapy.model.owldataproperty method)": [[9, "owlapy.model.OWLDataProperty.get_iri"]], "get_iri() (owlapy.model.owldatatype method)": [[9, "owlapy.model.OWLDatatype.get_iri"]], "get_iri() (owlapy.model.owlimportsdeclaration method)": [[9, "owlapy.model.OWLImportsDeclaration.get_iri"]], "get_iri() (owlapy.model.owlnamedindividual method)": [[9, "owlapy.model.OWLNamedIndividual.get_iri"]], "get_iri() (owlapy.model.owlobjectproperty method)": [[9, "owlapy.model.OWLObjectProperty.get_iri"]], "get_literal() (owlapy.model.owlliteral method)": [[9, "owlapy.model.OWLLiteral.get_literal"]], "get_named_property() (owlapy.model.owlobjectproperty method)": [[9, "owlapy.model.OWLObjectProperty.get_named_property"]], "get_named_property() (owlapy.model.owlobjectpropertyexpression method)": [[9, "owlapy.model.OWLObjectPropertyExpression.get_named_property"]], "get_namespace() (owlapy.model.iri method)": [[9, "owlapy.model.IRI.get_namespace"]], "get_nnf() (owlapy.model.owlclass method)": [[9, "owlapy.model.OWLClass.get_nnf"]], "get_nnf() (owlapy.model.owlclassexpression method)": [[9, "owlapy.model.OWLClassExpression.get_nnf"]], "get_object_complement_of() (owlapy.model.owlclass method)": [[9, "owlapy.model.OWLClass.get_object_complement_of"]], "get_object_complement_of() (owlapy.model.owlclassexpression method)": [[9, "owlapy.model.OWLClassExpression.get_object_complement_of"]], "get_ontology() (owlapy.model.owlontologychange method)": [[9, "owlapy.model.OWLOntologyChange.get_ontology"]], "get_ontology_id() (owlapy.model.owlontology method)": [[9, "owlapy.model.OWLOntology.get_ontology_id"]], "get_ontology_iri() (owlapy.model.owlontologyid method)": [[9, "owlapy.model.OWLOntologyID.get_ontology_iri"]], "get_operand() (owlapy.model.owlobjectcomplementof method)": [[9, "owlapy.model.OWLObjectComplementOf.get_operand"]], "get_owl_ontology_manager() (owlapy.model.owlontology method)": [[9, "owlapy.model.OWLOntology.get_owl_ontology_manager"]], "get_property() (owlapy.model.owldataallvaluesfrom method)": [[9, "owlapy.model.OWLDataAllValuesFrom.get_property"]], "get_property() (owlapy.model.owldatacardinalityrestriction method)": [[9, "owlapy.model.OWLDataCardinalityRestriction.get_property"]], "get_property() (owlapy.model.owldatahasvalue method)": [[9, "owlapy.model.OWLDataHasValue.get_property"]], "get_property() (owlapy.model.owldatasomevaluesfrom method)": [[9, "owlapy.model.OWLDataSomeValuesFrom.get_property"]], "get_property() (owlapy.model.owlobjectallvaluesfrom method)": [[9, "owlapy.model.OWLObjectAllValuesFrom.get_property"]], "get_property() (owlapy.model.owlobjectcardinalityrestriction method)": [[9, "owlapy.model.OWLObjectCardinalityRestriction.get_property"]], "get_property() (owlapy.model.owlobjecthasself method)": [[9, "owlapy.model.OWLObjectHasSelf.get_property"]], "get_property() (owlapy.model.owlobjectrestriction method)": [[9, "owlapy.model.OWLObjectRestriction.get_property"]], "get_property() (owlapy.model.owlobjectsomevaluesfrom method)": [[9, "owlapy.model.OWLObjectSomeValuesFrom.get_property"]], "get_property() (owlapy.model.owlrestriction method)": [[9, "owlapy.model.OWLRestriction.get_property"]], "get_remainder() (owlapy.model.iri method)": [[9, "owlapy.model.IRI.get_remainder"]], "get_root_ontology() (owlapy.model.owlreasoner method)": [[9, "owlapy.model.OWLReasoner.get_root_ontology"]], "get_short_form() (owlapy.model.iri method)": [[9, "owlapy.model.IRI.get_short_form"]], "get_version_iri() (owlapy.model.owlontologyid method)": [[9, "owlapy.model.OWLOntologyID.get_version_iri"]], "individuals_in_signature() (owlapy.model.owlontology method)": [[9, "owlapy.model.OWLOntology.individuals_in_signature"]], "instances() (owlapy.model.owlreasoner method)": [[9, "owlapy.model.OWLReasoner.instances"]], "iri (owlapy.model.owlnamedindividual property)": [[9, "owlapy.model.OWLNamedIndividual.iri"]], "iri (owlapy.model.owlobjectproperty property)": [[9, "owlapy.model.OWLObjectProperty.iri"]], "is_annotated() (owlapy.model.owlaxiom method)": [[9, "owlapy.model.OWLAxiom.is_annotated"]], "is_annotation_axiom() (owlapy.model.owlaxiom method)": [[9, "owlapy.model.OWLAxiom.is_annotation_axiom"]], "is_anonymous() (owlapy.model.owlentity method)": [[9, "owlapy.model.OWLEntity.is_anonymous"]], "is_anonymous() (owlapy.model.owlobject method)": [[9, "owlapy.model.OWLObject.is_anonymous"]], "is_anonymous() (owlapy.model.owlontology method)": [[9, "owlapy.model.OWLOntology.is_anonymous"]], "is_anonymous() (owlapy.model.owlontologyid method)": [[9, "owlapy.model.OWLOntologyID.is_anonymous"]], "is_boolean() (owlapy.model.owlliteral method)": [[9, "owlapy.model.OWLLiteral.is_boolean"]], "is_data_property_expression() (owlapy.model.owldatapropertyexpression method)": [[9, "owlapy.model.OWLDataPropertyExpression.is_data_property_expression"]], "is_data_property_expression() (owlapy.model.owlpropertyexpression method)": [[9, "owlapy.model.OWLPropertyExpression.is_data_property_expression"]], "is_data_restriction() (owlapy.model.owldatarestriction method)": [[9, "owlapy.model.OWLDataRestriction.is_data_restriction"]], "is_data_restriction() (owlapy.model.owlrestriction method)": [[9, "owlapy.model.OWLRestriction.is_data_restriction"]], "is_date() (owlapy.model.owlliteral method)": [[9, "owlapy.model.OWLLiteral.is_date"]], "is_datetime() (owlapy.model.owlliteral method)": [[9, "owlapy.model.OWLLiteral.is_datetime"]], "is_double() (owlapy.model.owlliteral method)": [[9, "owlapy.model.OWLLiteral.is_double"]], "is_duration() (owlapy.model.owlliteral method)": [[9, "owlapy.model.OWLLiteral.is_duration"]], "is_integer() (owlapy.model.owlliteral method)": [[9, "owlapy.model.OWLLiteral.is_integer"]], "is_isolated() (owlapy.model.owlreasoner method)": [[9, "owlapy.model.OWLReasoner.is_isolated"]], "is_literal() (owlapy.model.owlannotationvalue method)": [[9, "owlapy.model.OWLAnnotationValue.is_literal"]], "is_literal() (owlapy.model.owlliteral method)": [[9, "owlapy.model.OWLLiteral.is_literal"]], "is_logical_axiom() (owlapy.model.owlaxiom method)": [[9, "owlapy.model.OWLAxiom.is_logical_axiom"]], "is_nothing() (owlapy.model.iri method)": [[9, "owlapy.model.IRI.is_nothing"]], "is_object_property_expression() (owlapy.model.owlobjectpropertyexpression method)": [[9, "owlapy.model.OWLObjectPropertyExpression.is_object_property_expression"]], "is_object_property_expression() (owlapy.model.owlpropertyexpression method)": [[9, "owlapy.model.OWLPropertyExpression.is_object_property_expression"]], "is_object_restriction() (owlapy.model.owlobjectrestriction method)": [[9, "owlapy.model.OWLObjectRestriction.is_object_restriction"]], "is_object_restriction() (owlapy.model.owlrestriction method)": [[9, "owlapy.model.OWLRestriction.is_object_restriction"]], "is_owl_nothing() (owlapy.model.owlclass method)": [[9, "owlapy.model.OWLClass.is_owl_nothing"]], "is_owl_nothing() (owlapy.model.owlclassexpression method)": [[9, "owlapy.model.OWLClassExpression.is_owl_nothing"]], "is_owl_thing() (owlapy.model.owlclass method)": [[9, "owlapy.model.OWLClass.is_owl_thing"]], "is_owl_thing() (owlapy.model.owlclassexpression method)": [[9, "owlapy.model.OWLClassExpression.is_owl_thing"]], "is_owl_top_data_property() (owlapy.model.owldataproperty method)": [[9, "owlapy.model.OWLDataProperty.is_owl_top_data_property"]], "is_owl_top_data_property() (owlapy.model.owlpropertyexpression method)": [[9, "owlapy.model.OWLPropertyExpression.is_owl_top_data_property"]], "is_owl_top_object_property() (owlapy.model.owlobjectproperty method)": [[9, "owlapy.model.OWLObjectProperty.is_owl_top_object_property"]], "is_owl_top_object_property() (owlapy.model.owlpropertyexpression method)": [[9, "owlapy.model.OWLPropertyExpression.is_owl_top_object_property"]], "is_reserved_vocabulary() (owlapy.model.iri method)": [[9, "owlapy.model.IRI.is_reserved_vocabulary"]], "is_string() (owlapy.model.owlliteral method)": [[9, "owlapy.model.OWLLiteral.is_string"]], "is_thing() (owlapy.model.iri method)": [[9, "owlapy.model.IRI.is_thing"]], "is_using_triplestore() (owlapy.model.owlreasoner method)": [[9, "owlapy.model.OWLReasoner.is_using_triplestore"]], "load_ontology() (owlapy.model.owlontologymanager method)": [[9, "owlapy.model.OWLOntologyManager.load_ontology"]], "named_classes() (owlapy.model.owlequivalentclassesaxiom method)": [[9, "owlapy.model.OWLEquivalentClassesAxiom.named_classes"]], "object_properties_in_signature() (owlapy.model.owlontology method)": [[9, "owlapy.model.OWLOntology.object_properties_in_signature"]], "object_property_domain_axioms() (owlapy.model.owlontology method)": [[9, "owlapy.model.OWLOntology.object_property_domain_axioms"]], "object_property_domains() (owlapy.model.owlreasoner method)": [[9, "owlapy.model.OWLReasoner.object_property_domains"]], "object_property_range_axioms() (owlapy.model.owlontology method)": [[9, "owlapy.model.OWLOntology.object_property_range_axioms"]], "object_property_ranges() (owlapy.model.owlreasoner method)": [[9, "owlapy.model.OWLReasoner.object_property_ranges"]], "object_property_values() (owlapy.model.owlreasoner method)": [[9, "owlapy.model.OWLReasoner.object_property_values"]], "operands() (owlapy.model.hasoperands method)": [[9, "owlapy.model.HasOperands.operands"]], "operands() (owlapy.model.owldataoneof method)": [[9, "owlapy.model.OWLDataOneOf.operands"]], "operands() (owlapy.model.owlnarybooleanclassexpression method)": [[9, "owlapy.model.OWLNaryBooleanClassExpression.operands"]], "operands() (owlapy.model.owlobjectcomplementof method)": [[9, "owlapy.model.OWLObjectComplementOf.operands"]], "operator (owlapy.model.owlfacet property)": [[9, "owlapy.model.OWLFacet.operator"]], "owlapy.model": [[9, "module-owlapy.model"]], "parse_boolean() (owlapy.model.owlliteral method)": [[9, "owlapy.model.OWLLiteral.parse_boolean"]], "parse_date() (owlapy.model.owlliteral method)": [[9, "owlapy.model.OWLLiteral.parse_date"]], "parse_datetime() (owlapy.model.owlliteral method)": [[9, "owlapy.model.OWLLiteral.parse_datetime"]], "parse_double() (owlapy.model.owlliteral method)": [[9, "owlapy.model.OWLLiteral.parse_double"]], "parse_duration() (owlapy.model.owlliteral method)": [[9, "owlapy.model.OWLLiteral.parse_duration"]], "parse_integer() (owlapy.model.owlliteral method)": [[9, "owlapy.model.OWLLiteral.parse_integer"]], "parse_string() (owlapy.model.owlliteral method)": [[9, "owlapy.model.OWLLiteral.parse_string"]], "reminder (owlapy.model.iri property)": [[9, "owlapy.model.IRI.reminder"]], "reminder (owlapy.model.owlclass property)": [[9, "owlapy.model.OWLClass.reminder"]], "remove_axiom() (owlapy.model.owlontologymanager method)": [[9, "owlapy.model.OWLOntologyManager.remove_axiom"]], "same_individuals() (owlapy.model.owlreasoner method)": [[9, "owlapy.model.OWLReasoner.same_individuals"]], "save_ontology() (owlapy.model.owlontologymanager method)": [[9, "owlapy.model.OWLOntologyManager.save_ontology"]], "str (owlapy.model.iri property)": [[9, "owlapy.model.IRI.str"]], "str (owlapy.model.owlclass property)": [[9, "owlapy.model.OWLClass.str"]], "str (owlapy.model.owlnamedindividual property)": [[9, "owlapy.model.OWLNamedIndividual.str"]], "str (owlapy.model.owlobjectproperty property)": [[9, "owlapy.model.OWLObjectProperty.str"]], "sub_classes() (owlapy.model.owlreasoner method)": [[9, "owlapy.model.OWLReasoner.sub_classes"]], "sub_data_properties() (owlapy.model.owlreasoner method)": [[9, "owlapy.model.OWLReasoner.sub_data_properties"]], "sub_object_properties() (owlapy.model.owlreasoner method)": [[9, "owlapy.model.OWLReasoner.sub_object_properties"]], "super_classes() (owlapy.model.owlreasoner method)": [[9, "owlapy.model.OWLReasoner.super_classes"]], "super_data_properties() (owlapy.model.owlreasoner method)": [[9, "owlapy.model.OWLReasoner.super_data_properties"]], "super_object_properties() (owlapy.model.owlreasoner method)": [[9, "owlapy.model.OWLReasoner.super_object_properties"]], "symbolic_form (owlapy.model.owlfacet property)": [[9, "owlapy.model.OWLFacet.symbolic_form"]], "to_python() (owlapy.model.owlliteral method)": [[9, "owlapy.model.OWLLiteral.to_python"]], "to_string_id() (owlapy.model.owlentity method)": [[9, "owlapy.model.OWLEntity.to_string_id"]], "type_index (owlapy.model.hasindex attribute)": [[9, "owlapy.model.HasIndex.type_index"]], "type_index (owlapy.model.iri attribute)": [[9, "owlapy.model.IRI.type_index"]], "type_index (owlapy.model.owlclass attribute)": [[9, "owlapy.model.OWLClass.type_index"]], "type_index (owlapy.model.owldataallvaluesfrom attribute)": [[9, "owlapy.model.OWLDataAllValuesFrom.type_index"]], "type_index (owlapy.model.owldataexactcardinality attribute)": [[9, "owlapy.model.OWLDataExactCardinality.type_index"]], "type_index (owlapy.model.owldatahasvalue attribute)": [[9, "owlapy.model.OWLDataHasValue.type_index"]], "type_index (owlapy.model.owldatamaxcardinality attribute)": [[9, "owlapy.model.OWLDataMaxCardinality.type_index"]], "type_index (owlapy.model.owldatamincardinality attribute)": [[9, "owlapy.model.OWLDataMinCardinality.type_index"]], "type_index (owlapy.model.owldataoneof attribute)": [[9, "owlapy.model.OWLDataOneOf.type_index"]], "type_index (owlapy.model.owldataproperty attribute)": [[9, "owlapy.model.OWLDataProperty.type_index"]], "type_index (owlapy.model.owldatasomevaluesfrom attribute)": [[9, "owlapy.model.OWLDataSomeValuesFrom.type_index"]], "type_index (owlapy.model.owldatatype attribute)": [[9, "owlapy.model.OWLDatatype.type_index"]], "type_index (owlapy.model.owlliteral attribute)": [[9, "owlapy.model.OWLLiteral.type_index"]], "type_index (owlapy.model.owlnamedindividual attribute)": [[9, "owlapy.model.OWLNamedIndividual.type_index"]], "type_index (owlapy.model.owlobjectallvaluesfrom attribute)": [[9, "owlapy.model.OWLObjectAllValuesFrom.type_index"]], "type_index (owlapy.model.owlobjectcomplementof attribute)": [[9, "owlapy.model.OWLObjectComplementOf.type_index"]], "type_index (owlapy.model.owlobjectexactcardinality attribute)": [[9, "owlapy.model.OWLObjectExactCardinality.type_index"]], "type_index (owlapy.model.owlobjecthasself attribute)": [[9, "owlapy.model.OWLObjectHasSelf.type_index"]], "type_index (owlapy.model.owlobjectintersectionof attribute)": [[9, "owlapy.model.OWLObjectIntersectionOf.type_index"]], "type_index (owlapy.model.owlobjectmaxcardinality attribute)": [[9, "owlapy.model.OWLObjectMaxCardinality.type_index"]], "type_index (owlapy.model.owlobjectmincardinality attribute)": [[9, "owlapy.model.OWLObjectMinCardinality.type_index"]], "type_index (owlapy.model.owlobjectproperty attribute)": [[9, "owlapy.model.OWLObjectProperty.type_index"]], "type_index (owlapy.model.owlobjectsomevaluesfrom attribute)": [[9, "owlapy.model.OWLObjectSomeValuesFrom.type_index"]], "type_index (owlapy.model.owlobjectunionof attribute)": [[9, "owlapy.model.OWLObjectUnionOf.type_index"]], "type_index (owlapy.model.owlontology attribute)": [[9, "owlapy.model.OWLOntology.type_index"]], "types() (owlapy.model.owlreasoner method)": [[9, "owlapy.model.OWLReasoner.types"]], "values() (owlapy.model.owldataoneof method)": [[9, "owlapy.model.OWLDataOneOf.values"]], "owldatatypemaxexclusiverestriction() (in module owlapy.model.providers)": [[10, "owlapy.model.providers.OWLDatatypeMaxExclusiveRestriction"]], "owldatatypemaxinclusiverestriction() (in module owlapy.model.providers)": [[10, "owlapy.model.providers.OWLDatatypeMaxInclusiveRestriction"]], "owldatatypeminexclusiverestriction() (in module owlapy.model.providers)": [[10, "owlapy.model.providers.OWLDatatypeMinExclusiveRestriction"]], "owldatatypemininclusiverestriction() (in module owlapy.model.providers)": [[10, "owlapy.model.providers.OWLDatatypeMinInclusiveRestriction"]], "owldatatypeminmaxexclusiverestriction() (in module owlapy.model.providers)": [[10, "owlapy.model.providers.OWLDatatypeMinMaxExclusiveRestriction"]], "owldatatypeminmaxinclusiverestriction() (in module owlapy.model.providers)": [[10, "owlapy.model.providers.OWLDatatypeMinMaxInclusiveRestriction"]], "restriction_literals (in module owlapy.model.providers)": [[10, "owlapy.model.providers.Restriction_Literals"]], "owlapy.model.providers": [[10, "module-owlapy.model.providers"]], "namespaces (class in owlapy.namespaces)": [[11, "owlapy.namespaces.Namespaces"]], "owl (in module owlapy.namespaces)": [[11, "owlapy.namespaces.OWL"]], "rdf (in module owlapy.namespaces)": [[11, "owlapy.namespaces.RDF"]], "rdfs (in module owlapy.namespaces)": [[11, "owlapy.namespaces.RDFS"]], "xsd (in module owlapy.namespaces)": [[11, "owlapy.namespaces.XSD"]], "__eq__() (owlapy.namespaces.namespaces method)": [[11, "owlapy.namespaces.Namespaces.__eq__"]], "__hash__() (owlapy.namespaces.namespaces method)": [[11, "owlapy.namespaces.Namespaces.__hash__"]], "__repr__() (owlapy.namespaces.namespaces method)": [[11, "owlapy.namespaces.Namespaces.__repr__"]], "__slots__ (owlapy.namespaces.namespaces attribute)": [[11, "owlapy.namespaces.Namespaces.__slots__"]], "ns (owlapy.namespaces.namespaces property)": [[11, "owlapy.namespaces.Namespaces.ns"]], "owlapy.namespaces": [[11, "module-owlapy.namespaces"]], "prefix (owlapy.namespaces.namespaces property)": [[11, "owlapy.namespaces.Namespaces.prefix"]], "owl2sparqlconverter (class in owlapy.owl2sparql.converter)": [[12, "owlapy.owl2sparql.converter.Owl2SparqlConverter"]], "variablesmapping (class in owlapy.owl2sparql.converter)": [[12, "owlapy.owl2sparql.converter.VariablesMapping"]], "__contains__() (owlapy.owl2sparql.converter.variablesmapping method)": [[12, "owlapy.owl2sparql.converter.VariablesMapping.__contains__"]], "__getitem__() (owlapy.owl2sparql.converter.variablesmapping method)": [[12, "owlapy.owl2sparql.converter.VariablesMapping.__getitem__"]], "__slots__ (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[12, "owlapy.owl2sparql.converter.Owl2SparqlConverter.__slots__"]], "__slots__ (owlapy.owl2sparql.converter.variablesmapping attribute)": [[12, "owlapy.owl2sparql.converter.VariablesMapping.__slots__"]], "append() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[12, "owlapy.owl2sparql.converter.Owl2SparqlConverter.append"]], "append_triple() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[12, "owlapy.owl2sparql.converter.Owl2SparqlConverter.append_triple"]], "as_query() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[12, "owlapy.owl2sparql.converter.Owl2SparqlConverter.as_query"]], "ce (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[12, "owlapy.owl2sparql.converter.Owl2SparqlConverter.ce"]], "cnt (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[12, "owlapy.owl2sparql.converter.Owl2SparqlConverter.cnt"]], "convert() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[12, "owlapy.owl2sparql.converter.Owl2SparqlConverter.convert"]], "converter (in module owlapy.owl2sparql.converter)": [[12, "owlapy.owl2sparql.converter.converter"]], "current_variable (owlapy.owl2sparql.converter.owl2sparqlconverter property)": [[12, "owlapy.owl2sparql.converter.Owl2SparqlConverter.current_variable"]], "get_variable() (owlapy.owl2sparql.converter.variablesmapping method)": [[12, "owlapy.owl2sparql.converter.VariablesMapping.get_variable"]], "grouping_vars (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[12, "owlapy.owl2sparql.converter.Owl2SparqlConverter.grouping_vars"]], "having_conditions (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[12, "owlapy.owl2sparql.converter.Owl2SparqlConverter.having_conditions"]], "mapping (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[12, "owlapy.owl2sparql.converter.Owl2SparqlConverter.mapping"]], "modal_depth (owlapy.owl2sparql.converter.owl2sparqlconverter property)": [[12, "owlapy.owl2sparql.converter.Owl2SparqlConverter.modal_depth"]], "new_count_var() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[12, "owlapy.owl2sparql.converter.Owl2SparqlConverter.new_count_var"]], "new_individual_variable() (owlapy.owl2sparql.converter.variablesmapping method)": [[12, "owlapy.owl2sparql.converter.VariablesMapping.new_individual_variable"]], "new_property_variable() (owlapy.owl2sparql.converter.variablesmapping method)": [[12, "owlapy.owl2sparql.converter.VariablesMapping.new_property_variable"]], "owl_expression_to_sparql() (in module owlapy.owl2sparql.converter)": [[12, "owlapy.owl2sparql.converter.owl_expression_to_sparql"]], "owlapy.owl2sparql.converter": [[12, "module-owlapy.owl2sparql.converter"]], "parent (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[12, "owlapy.owl2sparql.converter.Owl2SparqlConverter.parent"]], "parent_var (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[12, "owlapy.owl2sparql.converter.Owl2SparqlConverter.parent_var"]], "peek() (in module owlapy.owl2sparql.converter)": [[12, "owlapy.owl2sparql.converter.peek"]], "process() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[12, "owlapy.owl2sparql.converter.Owl2SparqlConverter.process"]], "properties (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[12, "owlapy.owl2sparql.converter.Owl2SparqlConverter.properties"]], "render() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[12, "owlapy.owl2sparql.converter.Owl2SparqlConverter.render"]], "sparql (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[12, "owlapy.owl2sparql.converter.Owl2SparqlConverter.sparql"]], "stack_parent() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[12, "owlapy.owl2sparql.converter.Owl2SparqlConverter.stack_parent"]], "stack_variable() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[12, "owlapy.owl2sparql.converter.Owl2SparqlConverter.stack_variable"]], "triple() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[12, "owlapy.owl2sparql.converter.Owl2SparqlConverter.triple"]], "variable_entities (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[12, "owlapy.owl2sparql.converter.Owl2SparqlConverter.variable_entities"]], "variables (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[12, "owlapy.owl2sparql.converter.Owl2SparqlConverter.variables"]], "owlapy.owl2sparql": [[13, "module-owlapy.owl2sparql"]], "owlannotationobject (class in owlapy.owl_annotation)": [[14, "owlapy.owl_annotation.OWLAnnotationObject"]], "owlannotationsubject (class in owlapy.owl_annotation)": [[14, "owlapy.owl_annotation.OWLAnnotationSubject"]], "owlannotationvalue (class in owlapy.owl_annotation)": [[14, "owlapy.owl_annotation.OWLAnnotationValue"]], "__slots__ (owlapy.owl_annotation.owlannotationobject attribute)": [[14, "owlapy.owl_annotation.OWLAnnotationObject.__slots__"]], "__slots__ (owlapy.owl_annotation.owlannotationsubject attribute)": [[14, "owlapy.owl_annotation.OWLAnnotationSubject.__slots__"]], "__slots__ (owlapy.owl_annotation.owlannotationvalue attribute)": [[14, "owlapy.owl_annotation.OWLAnnotationValue.__slots__"]], "as_anonymous_individual() (owlapy.owl_annotation.owlannotationobject method)": [[14, "owlapy.owl_annotation.OWLAnnotationObject.as_anonymous_individual"]], "as_iri() (owlapy.owl_annotation.owlannotationobject method)": [[14, "owlapy.owl_annotation.OWLAnnotationObject.as_iri"]], "as_literal() (owlapy.owl_annotation.owlannotationvalue method)": [[14, "owlapy.owl_annotation.OWLAnnotationValue.as_literal"]], "is_literal() (owlapy.owl_annotation.owlannotationvalue method)": [[14, "owlapy.owl_annotation.OWLAnnotationValue.is_literal"]], "owlapy.owl_annotation": [[14, "module-owlapy.owl_annotation"]], "owlannotation (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLAnnotation"]], "owlannotationassertionaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom"]], "owlannotationaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLAnnotationAxiom"]], "owlannotationproperty (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLAnnotationProperty"]], "owlannotationpropertydomainaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom"]], "owlannotationpropertyrangeaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom"]], "owlasymmetricobjectpropertyaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLAsymmetricObjectPropertyAxiom"]], "owlaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLAxiom"]], "owlclassassertionaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLClassAssertionAxiom"]], "owlclassaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLClassAxiom"]], "owldatapropertyassertionaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLDataPropertyAssertionAxiom"]], "owldatapropertyaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLDataPropertyAxiom"]], "owldatapropertycharacteristicaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom"]], "owldatapropertydomainaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLDataPropertyDomainAxiom"]], "owldatapropertyrangeaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLDataPropertyRangeAxiom"]], "owldatatypedefinitionaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom"]], "owldeclarationaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLDeclarationAxiom"]], "owldifferentindividualsaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLDifferentIndividualsAxiom"]], "owldisjointclassesaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLDisjointClassesAxiom"]], "owldisjointdatapropertiesaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLDisjointDataPropertiesAxiom"]], "owldisjointobjectpropertiesaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLDisjointObjectPropertiesAxiom"]], "owldisjointunionaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLDisjointUnionAxiom"]], "owlequivalentclassesaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLEquivalentClassesAxiom"]], "owlequivalentdatapropertiesaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLEquivalentDataPropertiesAxiom"]], "owlequivalentobjectpropertiesaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLEquivalentObjectPropertiesAxiom"]], "owlfunctionaldatapropertyaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLFunctionalDataPropertyAxiom"]], "owlfunctionalobjectpropertyaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLFunctionalObjectPropertyAxiom"]], "owlhaskeyaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLHasKeyAxiom"]], "owlindividualaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLIndividualAxiom"]], "owlinversefunctionalobjectpropertyaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLInverseFunctionalObjectPropertyAxiom"]], "owlinverseobjectpropertiesaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom"]], "owlirreflexiveobjectpropertyaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLIrreflexiveObjectPropertyAxiom"]], "owllogicalaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLLogicalAxiom"]], "owlnaryaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLNaryAxiom"]], "owlnaryclassaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLNaryClassAxiom"]], "owlnaryindividualaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLNaryIndividualAxiom"]], "owlnarypropertyaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLNaryPropertyAxiom"]], "owlnegativedatapropertyassertionaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLNegativeDataPropertyAssertionAxiom"]], "owlnegativeobjectpropertyassertionaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLNegativeObjectPropertyAssertionAxiom"]], "owlobjectpropertyassertionaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLObjectPropertyAssertionAxiom"]], "owlobjectpropertyaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLObjectPropertyAxiom"]], "owlobjectpropertycharacteristicaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom"]], "owlobjectpropertydomainaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLObjectPropertyDomainAxiom"]], "owlobjectpropertyrangeaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLObjectPropertyRangeAxiom"]], "owlpropertyassertionaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLPropertyAssertionAxiom"]], "owlpropertyaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLPropertyAxiom"]], "owlpropertydomainaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLPropertyDomainAxiom"]], "owlpropertyrangeaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLPropertyRangeAxiom"]], "owlreflexiveobjectpropertyaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLReflexiveObjectPropertyAxiom"]], "owlsameindividualaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLSameIndividualAxiom"]], "owlsubannotationpropertyofaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom"]], "owlsubclassofaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLSubClassOfAxiom"]], "owlsubdatapropertyofaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLSubDataPropertyOfAxiom"]], "owlsubobjectpropertyofaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLSubObjectPropertyOfAxiom"]], "owlsubpropertyaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLSubPropertyAxiom"]], "owlsymmetricobjectpropertyaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLSymmetricObjectPropertyAxiom"]], "owltransitiveobjectpropertyaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLTransitiveObjectPropertyAxiom"]], "owlunarypropertyaxiom (class in owlapy.owl_axiom)": [[15, "owlapy.owl_axiom.OWLUnaryPropertyAxiom"]], "__eq__() (owlapy.owl_axiom.owlannotation method)": [[15, "owlapy.owl_axiom.OWLAnnotation.__eq__"]], "__eq__() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[15, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[15, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[15, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[15, "owlapy.owl_axiom.OWLClassAssertionAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owldatapropertycharacteristicaxiom method)": [[15, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[15, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owldeclarationaxiom method)": [[15, "owlapy.owl_axiom.OWLDeclarationAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[15, "owlapy.owl_axiom.OWLDisjointUnionAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[15, "owlapy.owl_axiom.OWLHasKeyAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[15, "owlapy.owl_axiom.OWLNaryClassAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[15, "owlapy.owl_axiom.OWLNaryIndividualAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[15, "owlapy.owl_axiom.OWLNaryPropertyAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlobjectpropertycharacteristicaxiom method)": [[15, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[15, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlpropertydomainaxiom method)": [[15, "owlapy.owl_axiom.OWLPropertyDomainAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlpropertyrangeaxiom method)": [[15, "owlapy.owl_axiom.OWLPropertyRangeAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[15, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[15, "owlapy.owl_axiom.OWLSubClassOfAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[15, "owlapy.owl_axiom.OWLSubPropertyAxiom.__eq__"]], "__hash__() (owlapy.owl_axiom.owlannotation method)": [[15, "owlapy.owl_axiom.OWLAnnotation.__hash__"]], "__hash__() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[15, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[15, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[15, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[15, "owlapy.owl_axiom.OWLClassAssertionAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owldatapropertycharacteristicaxiom method)": [[15, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[15, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owldeclarationaxiom method)": [[15, "owlapy.owl_axiom.OWLDeclarationAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[15, "owlapy.owl_axiom.OWLDisjointUnionAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[15, "owlapy.owl_axiom.OWLHasKeyAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[15, "owlapy.owl_axiom.OWLNaryClassAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[15, "owlapy.owl_axiom.OWLNaryIndividualAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[15, "owlapy.owl_axiom.OWLNaryPropertyAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlobjectpropertycharacteristicaxiom method)": [[15, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[15, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlpropertydomainaxiom method)": [[15, "owlapy.owl_axiom.OWLPropertyDomainAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlpropertyrangeaxiom method)": [[15, "owlapy.owl_axiom.OWLPropertyRangeAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[15, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[15, "owlapy.owl_axiom.OWLSubClassOfAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[15, "owlapy.owl_axiom.OWLSubPropertyAxiom.__hash__"]], "__repr__() (owlapy.owl_axiom.owlannotation method)": [[15, "owlapy.owl_axiom.OWLAnnotation.__repr__"]], "__repr__() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[15, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[15, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[15, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[15, "owlapy.owl_axiom.OWLClassAssertionAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owldatapropertycharacteristicaxiom method)": [[15, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[15, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owldeclarationaxiom method)": [[15, "owlapy.owl_axiom.OWLDeclarationAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[15, "owlapy.owl_axiom.OWLDisjointUnionAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[15, "owlapy.owl_axiom.OWLHasKeyAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlinverseobjectpropertiesaxiom method)": [[15, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[15, "owlapy.owl_axiom.OWLNaryClassAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[15, "owlapy.owl_axiom.OWLNaryIndividualAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[15, "owlapy.owl_axiom.OWLNaryPropertyAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlobjectpropertycharacteristicaxiom method)": [[15, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[15, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlpropertydomainaxiom method)": [[15, "owlapy.owl_axiom.OWLPropertyDomainAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlpropertyrangeaxiom method)": [[15, "owlapy.owl_axiom.OWLPropertyRangeAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[15, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[15, "owlapy.owl_axiom.OWLSubClassOfAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[15, "owlapy.owl_axiom.OWLSubPropertyAxiom.__repr__"]], "__slots__ (owlapy.owl_axiom.owlannotation attribute)": [[15, "owlapy.owl_axiom.OWLAnnotation.__slots__"]], "__slots__ (owlapy.owl_axiom.owlannotationassertionaxiom attribute)": [[15, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlannotationaxiom attribute)": [[15, "owlapy.owl_axiom.OWLAnnotationAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlannotationproperty attribute)": [[15, "owlapy.owl_axiom.OWLAnnotationProperty.__slots__"]], "__slots__ (owlapy.owl_axiom.owlannotationpropertydomainaxiom attribute)": [[15, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlannotationpropertyrangeaxiom attribute)": [[15, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlasymmetricobjectpropertyaxiom attribute)": [[15, "owlapy.owl_axiom.OWLAsymmetricObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlaxiom attribute)": [[15, "owlapy.owl_axiom.OWLAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlclassassertionaxiom attribute)": [[15, "owlapy.owl_axiom.OWLClassAssertionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlclassaxiom attribute)": [[15, "owlapy.owl_axiom.OWLClassAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldatapropertyassertionaxiom attribute)": [[15, "owlapy.owl_axiom.OWLDataPropertyAssertionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldatapropertyaxiom attribute)": [[15, "owlapy.owl_axiom.OWLDataPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldatapropertycharacteristicaxiom attribute)": [[15, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldatapropertydomainaxiom attribute)": [[15, "owlapy.owl_axiom.OWLDataPropertyDomainAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldatapropertyrangeaxiom attribute)": [[15, "owlapy.owl_axiom.OWLDataPropertyRangeAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldatatypedefinitionaxiom attribute)": [[15, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldeclarationaxiom attribute)": [[15, "owlapy.owl_axiom.OWLDeclarationAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldifferentindividualsaxiom attribute)": [[15, "owlapy.owl_axiom.OWLDifferentIndividualsAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldisjointclassesaxiom attribute)": [[15, "owlapy.owl_axiom.OWLDisjointClassesAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldisjointdatapropertiesaxiom attribute)": [[15, "owlapy.owl_axiom.OWLDisjointDataPropertiesAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldisjointobjectpropertiesaxiom attribute)": [[15, "owlapy.owl_axiom.OWLDisjointObjectPropertiesAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldisjointunionaxiom attribute)": [[15, "owlapy.owl_axiom.OWLDisjointUnionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlequivalentclassesaxiom attribute)": [[15, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlequivalentdatapropertiesaxiom attribute)": [[15, "owlapy.owl_axiom.OWLEquivalentDataPropertiesAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlequivalentobjectpropertiesaxiom attribute)": [[15, "owlapy.owl_axiom.OWLEquivalentObjectPropertiesAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlfunctionaldatapropertyaxiom attribute)": [[15, "owlapy.owl_axiom.OWLFunctionalDataPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlfunctionalobjectpropertyaxiom attribute)": [[15, "owlapy.owl_axiom.OWLFunctionalObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlhaskeyaxiom attribute)": [[15, "owlapy.owl_axiom.OWLHasKeyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlindividualaxiom attribute)": [[15, "owlapy.owl_axiom.OWLIndividualAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlinversefunctionalobjectpropertyaxiom attribute)": [[15, "owlapy.owl_axiom.OWLInverseFunctionalObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlinverseobjectpropertiesaxiom attribute)": [[15, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlirreflexiveobjectpropertyaxiom attribute)": [[15, "owlapy.owl_axiom.OWLIrreflexiveObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owllogicalaxiom attribute)": [[15, "owlapy.owl_axiom.OWLLogicalAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlnaryaxiom attribute)": [[15, "owlapy.owl_axiom.OWLNaryAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlnaryclassaxiom attribute)": [[15, "owlapy.owl_axiom.OWLNaryClassAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlnaryindividualaxiom attribute)": [[15, "owlapy.owl_axiom.OWLNaryIndividualAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlnarypropertyaxiom attribute)": [[15, "owlapy.owl_axiom.OWLNaryPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlnegativedatapropertyassertionaxiom attribute)": [[15, "owlapy.owl_axiom.OWLNegativeDataPropertyAssertionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlnegativeobjectpropertyassertionaxiom attribute)": [[15, "owlapy.owl_axiom.OWLNegativeObjectPropertyAssertionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlobjectpropertyassertionaxiom attribute)": [[15, "owlapy.owl_axiom.OWLObjectPropertyAssertionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlobjectpropertyaxiom attribute)": [[15, "owlapy.owl_axiom.OWLObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlobjectpropertycharacteristicaxiom attribute)": [[15, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlobjectpropertydomainaxiom attribute)": [[15, "owlapy.owl_axiom.OWLObjectPropertyDomainAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlobjectpropertyrangeaxiom attribute)": [[15, "owlapy.owl_axiom.OWLObjectPropertyRangeAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlpropertyassertionaxiom attribute)": [[15, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlpropertyaxiom attribute)": [[15, "owlapy.owl_axiom.OWLPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlpropertydomainaxiom attribute)": [[15, "owlapy.owl_axiom.OWLPropertyDomainAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlpropertyrangeaxiom attribute)": [[15, "owlapy.owl_axiom.OWLPropertyRangeAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlreflexiveobjectpropertyaxiom attribute)": [[15, "owlapy.owl_axiom.OWLReflexiveObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlsameindividualaxiom attribute)": [[15, "owlapy.owl_axiom.OWLSameIndividualAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlsubannotationpropertyofaxiom attribute)": [[15, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlsubclassofaxiom attribute)": [[15, "owlapy.owl_axiom.OWLSubClassOfAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlsubdatapropertyofaxiom attribute)": [[15, "owlapy.owl_axiom.OWLSubDataPropertyOfAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlsubobjectpropertyofaxiom attribute)": [[15, "owlapy.owl_axiom.OWLSubObjectPropertyOfAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlsubpropertyaxiom attribute)": [[15, "owlapy.owl_axiom.OWLSubPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlsymmetricobjectpropertyaxiom attribute)": [[15, "owlapy.owl_axiom.OWLSymmetricObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owltransitiveobjectpropertyaxiom attribute)": [[15, "owlapy.owl_axiom.OWLTransitiveObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlunarypropertyaxiom attribute)": [[15, "owlapy.owl_axiom.OWLUnaryPropertyAxiom.__slots__"]], "annotations() (owlapy.owl_axiom.owlaxiom method)": [[15, "owlapy.owl_axiom.OWLAxiom.annotations"]], "as_pairwise_axioms() (owlapy.owl_axiom.owlnaryaxiom method)": [[15, "owlapy.owl_axiom.OWLNaryAxiom.as_pairwise_axioms"]], "as_pairwise_axioms() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[15, "owlapy.owl_axiom.OWLNaryClassAxiom.as_pairwise_axioms"]], "as_pairwise_axioms() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[15, "owlapy.owl_axiom.OWLNaryIndividualAxiom.as_pairwise_axioms"]], "as_pairwise_axioms() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[15, "owlapy.owl_axiom.OWLNaryPropertyAxiom.as_pairwise_axioms"]], "class_expressions() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[15, "owlapy.owl_axiom.OWLNaryClassAxiom.class_expressions"]], "contains_named_equivalent_class() (owlapy.owl_axiom.owlequivalentclassesaxiom method)": [[15, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.contains_named_equivalent_class"]], "contains_owl_nothing() (owlapy.owl_axiom.owlequivalentclassesaxiom method)": [[15, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.contains_owl_nothing"]], "contains_owl_thing() (owlapy.owl_axiom.owlequivalentclassesaxiom method)": [[15, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.contains_owl_thing"]], "get_class_expression() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[15, "owlapy.owl_axiom.OWLClassAssertionAxiom.get_class_expression"]], "get_class_expression() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[15, "owlapy.owl_axiom.OWLHasKeyAxiom.get_class_expression"]], "get_class_expressions() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[15, "owlapy.owl_axiom.OWLDisjointUnionAxiom.get_class_expressions"]], "get_datarange() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[15, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.get_datarange"]], "get_datatype() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[15, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.get_datatype"]], "get_domain() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[15, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.get_domain"]], "get_domain() (owlapy.owl_axiom.owlpropertydomainaxiom method)": [[15, "owlapy.owl_axiom.OWLPropertyDomainAxiom.get_domain"]], "get_entity() (owlapy.owl_axiom.owldeclarationaxiom method)": [[15, "owlapy.owl_axiom.OWLDeclarationAxiom.get_entity"]], "get_first_property() (owlapy.owl_axiom.owlinverseobjectpropertiesaxiom method)": [[15, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom.get_first_property"]], "get_individual() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[15, "owlapy.owl_axiom.OWLClassAssertionAxiom.get_individual"]], "get_iri() (owlapy.owl_axiom.owlannotationproperty method)": [[15, "owlapy.owl_axiom.OWLAnnotationProperty.get_iri"]], "get_object() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[15, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.get_object"]], "get_owl_class() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[15, "owlapy.owl_axiom.OWLDisjointUnionAxiom.get_owl_class"]], "get_owl_disjoint_classes_axiom() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[15, "owlapy.owl_axiom.OWLDisjointUnionAxiom.get_owl_disjoint_classes_axiom"]], "get_owl_equivalent_classes_axiom() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[15, "owlapy.owl_axiom.OWLDisjointUnionAxiom.get_owl_equivalent_classes_axiom"]], "get_property() (owlapy.owl_axiom.owlannotation method)": [[15, "owlapy.owl_axiom.OWLAnnotation.get_property"]], "get_property() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[15, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.get_property"]], "get_property() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[15, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.get_property"]], "get_property() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[15, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.get_property"]], "get_property() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[15, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.get_property"]], "get_property() (owlapy.owl_axiom.owlunarypropertyaxiom method)": [[15, "owlapy.owl_axiom.OWLUnaryPropertyAxiom.get_property"]], "get_property_expressions() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[15, "owlapy.owl_axiom.OWLHasKeyAxiom.get_property_expressions"]], "get_range() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[15, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.get_range"]], "get_range() (owlapy.owl_axiom.owlpropertyrangeaxiom method)": [[15, "owlapy.owl_axiom.OWLPropertyRangeAxiom.get_range"]], "get_second_property() (owlapy.owl_axiom.owlinverseobjectpropertiesaxiom method)": [[15, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom.get_second_property"]], "get_sub_class() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[15, "owlapy.owl_axiom.OWLSubClassOfAxiom.get_sub_class"]], "get_sub_property() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[15, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.get_sub_property"]], "get_sub_property() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[15, "owlapy.owl_axiom.OWLSubPropertyAxiom.get_sub_property"]], "get_subject() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[15, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.get_subject"]], "get_subject() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[15, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.get_subject"]], "get_super_class() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[15, "owlapy.owl_axiom.OWLSubClassOfAxiom.get_super_class"]], "get_super_property() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[15, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.get_super_property"]], "get_super_property() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[15, "owlapy.owl_axiom.OWLSubPropertyAxiom.get_super_property"]], "get_value() (owlapy.owl_axiom.owlannotation method)": [[15, "owlapy.owl_axiom.OWLAnnotation.get_value"]], "get_value() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[15, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.get_value"]], "individuals() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[15, "owlapy.owl_axiom.OWLNaryIndividualAxiom.individuals"]], "is_annotated() (owlapy.owl_axiom.owlaxiom method)": [[15, "owlapy.owl_axiom.OWLAxiom.is_annotated"]], "is_annotation_axiom() (owlapy.owl_axiom.owlannotationaxiom method)": [[15, "owlapy.owl_axiom.OWLAnnotationAxiom.is_annotation_axiom"]], "is_annotation_axiom() (owlapy.owl_axiom.owlaxiom method)": [[15, "owlapy.owl_axiom.OWLAxiom.is_annotation_axiom"]], "is_logical_axiom() (owlapy.owl_axiom.owlaxiom method)": [[15, "owlapy.owl_axiom.OWLAxiom.is_logical_axiom"]], "is_logical_axiom() (owlapy.owl_axiom.owllogicalaxiom method)": [[15, "owlapy.owl_axiom.OWLLogicalAxiom.is_logical_axiom"]], "named_classes() (owlapy.owl_axiom.owlequivalentclassesaxiom method)": [[15, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.named_classes"]], "operands() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[15, "owlapy.owl_axiom.OWLHasKeyAxiom.operands"]], "owlapy.owl_axiom": [[15, "module-owlapy.owl_axiom"]], "properties() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[15, "owlapy.owl_axiom.OWLNaryPropertyAxiom.properties"]], "owldatacomplementof (class in owlapy.owl_class_expression)": [[16, "owlapy.owl_class_expression.OWLDataComplementOf"]], "owldataintersectionof (class in owlapy.owl_class_expression)": [[16, "owlapy.owl_class_expression.OWLDataIntersectionOf"]], "owldataunionof (class in owlapy.owl_class_expression)": [[16, "owlapy.owl_class_expression.OWLDataUnionOf"]], "owlnarydatarange (class in owlapy.owl_class_expression)": [[16, "owlapy.owl_class_expression.OWLNaryDataRange"]], "__eq__() (owlapy.owl_class_expression.owldatacomplementof method)": [[16, "owlapy.owl_class_expression.OWLDataComplementOf.__eq__"]], "__eq__() (owlapy.owl_class_expression.owlnarydatarange method)": [[16, "owlapy.owl_class_expression.OWLNaryDataRange.__eq__"]], "__hash__() (owlapy.owl_class_expression.owldatacomplementof method)": [[16, "owlapy.owl_class_expression.OWLDataComplementOf.__hash__"]], "__hash__() (owlapy.owl_class_expression.owlnarydatarange method)": [[16, "owlapy.owl_class_expression.OWLNaryDataRange.__hash__"]], "__repr__() (owlapy.owl_class_expression.owldatacomplementof method)": [[16, "owlapy.owl_class_expression.OWLDataComplementOf.__repr__"]], "__repr__() (owlapy.owl_class_expression.owlnarydatarange method)": [[16, "owlapy.owl_class_expression.OWLNaryDataRange.__repr__"]], "__slots__ (owlapy.owl_class_expression.owldataintersectionof attribute)": [[16, "owlapy.owl_class_expression.OWLDataIntersectionOf.__slots__"]], "__slots__ (owlapy.owl_class_expression.owldataunionof attribute)": [[16, "owlapy.owl_class_expression.OWLDataUnionOf.__slots__"]], "__slots__ (owlapy.owl_class_expression.owlnarydatarange attribute)": [[16, "owlapy.owl_class_expression.OWLNaryDataRange.__slots__"]], "get_data_range() (owlapy.owl_class_expression.owldatacomplementof method)": [[16, "owlapy.owl_class_expression.OWLDataComplementOf.get_data_range"]], "operands() (owlapy.owl_class_expression.owlnarydatarange method)": [[16, "owlapy.owl_class_expression.OWLNaryDataRange.operands"]], "owlapy.owl_class_expression": [[16, "module-owlapy.owl_class_expression"]], "type_index (owlapy.owl_class_expression.owldatacomplementof attribute)": [[16, "owlapy.owl_class_expression.OWLDataComplementOf.type_index"]], "type_index (owlapy.owl_class_expression.owldataintersectionof attribute)": [[16, "owlapy.owl_class_expression.OWLDataIntersectionOf.type_index"]], "type_index (owlapy.owl_class_expression.owldataunionof attribute)": [[16, "owlapy.owl_class_expression.OWLDataUnionOf.type_index"]], "owlindividual (class in owlapy.owl_individual)": [[17, "owlapy.owl_individual.OWLIndividual"]], "owlnamedindividual (class in owlapy.owl_individual)": [[17, "owlapy.owl_individual.OWLNamedIndividual"]], "__slots__ (owlapy.owl_individual.owlindividual attribute)": [[17, "owlapy.owl_individual.OWLIndividual.__slots__"]], "__slots__ (owlapy.owl_individual.owlnamedindividual attribute)": [[17, "owlapy.owl_individual.OWLNamedIndividual.__slots__"]], "get_iri() (owlapy.owl_individual.owlnamedindividual method)": [[17, "owlapy.owl_individual.OWLNamedIndividual.get_iri"]], "iri (owlapy.owl_individual.owlnamedindividual property)": [[17, "owlapy.owl_individual.OWLNamedIndividual.iri"]], "owlapy.owl_individual": [[17, "module-owlapy.owl_individual"]], "str (owlapy.owl_individual.owlnamedindividual property)": [[17, "owlapy.owl_individual.OWLNamedIndividual.str"]], "type_index (owlapy.owl_individual.owlnamedindividual attribute)": [[17, "owlapy.owl_individual.OWLNamedIndividual.type_index"]], "booleanowldatatype (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.BooleanOWLDatatype"]], "dateowldatatype (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.DateOWLDatatype"]], "datetimeowldatatype (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.DateTimeOWLDatatype"]], "doubleowldatatype (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.DoubleOWLDatatype"]], "durationowldatatype (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.DurationOWLDatatype"]], "integerowldatatype (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.IntegerOWLDatatype"]], "literals (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.Literals"]], "numeric_datatypes (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.NUMERIC_DATATYPES"]], "owlbottomdataproperty (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.OWLBottomDataProperty"]], "owlbottomobjectproperty (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.OWLBottomObjectProperty"]], "owlliteral (class in owlapy.owl_literal)": [[18, "owlapy.owl_literal.OWLLiteral"]], "owltopdataproperty (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.OWLTopDataProperty"]], "owltopobjectproperty (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.OWLTopObjectProperty"]], "stringowldatatype (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.StringOWLDatatype"]], "time_datatypes (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.TIME_DATATYPES"]], "topowldatatype (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.TopOWLDatatype"]], "__slots__ (owlapy.owl_literal.owlliteral attribute)": [[18, "owlapy.owl_literal.OWLLiteral.__slots__"]], "as_literal() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.as_literal"]], "get_datatype() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.get_datatype"]], "get_literal() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.get_literal"]], "is_boolean() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.is_boolean"]], "is_date() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.is_date"]], "is_datetime() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.is_datetime"]], "is_double() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.is_double"]], "is_duration() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.is_duration"]], "is_integer() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.is_integer"]], "is_literal() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.is_literal"]], "is_string() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.is_string"]], "owlapy.owl_literal": [[18, "module-owlapy.owl_literal"]], "parse_boolean() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.parse_boolean"]], "parse_date() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.parse_date"]], "parse_datetime() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.parse_datetime"]], "parse_double() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.parse_double"]], "parse_duration() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.parse_duration"]], "parse_integer() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.parse_integer"]], "parse_string() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.parse_string"]], "to_python() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.to_python"]], "type_index (owlapy.owl_literal.owlliteral attribute)": [[18, "owlapy.owl_literal.OWLLiteral.type_index"]], "owldataproperty (class in owlapy.owl_property)": [[19, "owlapy.owl_property.OWLDataProperty"]], "owldatapropertyexpression (class in owlapy.owl_property)": [[19, "owlapy.owl_property.OWLDataPropertyExpression"]], "owlobjectinverseof (class in owlapy.owl_property)": [[19, "owlapy.owl_property.OWLObjectInverseOf"]], "owlobjectproperty (class in owlapy.owl_property)": [[19, "owlapy.owl_property.OWLObjectProperty"]], "owlobjectpropertyexpression (class in owlapy.owl_property)": [[19, "owlapy.owl_property.OWLObjectPropertyExpression"]], "owlproperty (class in owlapy.owl_property)": [[19, "owlapy.owl_property.OWLProperty"]], "owlpropertyexpression (class in owlapy.owl_property)": [[19, "owlapy.owl_property.OWLPropertyExpression"]], "__eq__() (owlapy.owl_property.owlobjectinverseof method)": [[19, "owlapy.owl_property.OWLObjectInverseOf.__eq__"]], "__hash__() (owlapy.owl_property.owlobjectinverseof method)": [[19, "owlapy.owl_property.OWLObjectInverseOf.__hash__"]], "__repr__() (owlapy.owl_property.owlobjectinverseof method)": [[19, "owlapy.owl_property.OWLObjectInverseOf.__repr__"]], "__slots__ (owlapy.owl_property.owldataproperty attribute)": [[19, "owlapy.owl_property.OWLDataProperty.__slots__"]], "__slots__ (owlapy.owl_property.owldatapropertyexpression attribute)": [[19, "owlapy.owl_property.OWLDataPropertyExpression.__slots__"]], "__slots__ (owlapy.owl_property.owlobjectinverseof attribute)": [[19, "owlapy.owl_property.OWLObjectInverseOf.__slots__"]], "__slots__ (owlapy.owl_property.owlobjectproperty attribute)": [[19, "owlapy.owl_property.OWLObjectProperty.__slots__"]], "__slots__ (owlapy.owl_property.owlobjectpropertyexpression attribute)": [[19, "owlapy.owl_property.OWLObjectPropertyExpression.__slots__"]], "__slots__ (owlapy.owl_property.owlproperty attribute)": [[19, "owlapy.owl_property.OWLProperty.__slots__"]], "__slots__ (owlapy.owl_property.owlpropertyexpression attribute)": [[19, "owlapy.owl_property.OWLPropertyExpression.__slots__"]], "get_inverse() (owlapy.owl_property.owlobjectinverseof method)": [[19, "owlapy.owl_property.OWLObjectInverseOf.get_inverse"]], "get_inverse_property() (owlapy.owl_property.owlobjectinverseof method)": [[19, "owlapy.owl_property.OWLObjectInverseOf.get_inverse_property"]], "get_inverse_property() (owlapy.owl_property.owlobjectproperty method)": [[19, "owlapy.owl_property.OWLObjectProperty.get_inverse_property"]], "get_inverse_property() (owlapy.owl_property.owlobjectpropertyexpression method)": [[19, "owlapy.owl_property.OWLObjectPropertyExpression.get_inverse_property"]], "get_iri() (owlapy.owl_property.owldataproperty method)": [[19, "owlapy.owl_property.OWLDataProperty.get_iri"]], "get_iri() (owlapy.owl_property.owlobjectproperty method)": [[19, "owlapy.owl_property.OWLObjectProperty.get_iri"]], "get_named_property() (owlapy.owl_property.owlobjectinverseof method)": [[19, "owlapy.owl_property.OWLObjectInverseOf.get_named_property"]], "get_named_property() (owlapy.owl_property.owlobjectproperty method)": [[19, "owlapy.owl_property.OWLObjectProperty.get_named_property"]], "get_named_property() (owlapy.owl_property.owlobjectpropertyexpression method)": [[19, "owlapy.owl_property.OWLObjectPropertyExpression.get_named_property"]], "iri (owlapy.owl_property.owlobjectproperty property)": [[19, "owlapy.owl_property.OWLObjectProperty.iri"]], "is_data_property_expression() (owlapy.owl_property.owldatapropertyexpression method)": [[19, "owlapy.owl_property.OWLDataPropertyExpression.is_data_property_expression"]], "is_data_property_expression() (owlapy.owl_property.owlpropertyexpression method)": [[19, "owlapy.owl_property.OWLPropertyExpression.is_data_property_expression"]], "is_object_property_expression() (owlapy.owl_property.owlobjectpropertyexpression method)": [[19, "owlapy.owl_property.OWLObjectPropertyExpression.is_object_property_expression"]], "is_object_property_expression() (owlapy.owl_property.owlpropertyexpression method)": [[19, "owlapy.owl_property.OWLPropertyExpression.is_object_property_expression"]], "is_owl_top_data_property() (owlapy.owl_property.owldataproperty method)": [[19, "owlapy.owl_property.OWLDataProperty.is_owl_top_data_property"]], "is_owl_top_data_property() (owlapy.owl_property.owlpropertyexpression method)": [[19, "owlapy.owl_property.OWLPropertyExpression.is_owl_top_data_property"]], "is_owl_top_object_property() (owlapy.owl_property.owlobjectproperty method)": [[19, "owlapy.owl_property.OWLObjectProperty.is_owl_top_object_property"]], "is_owl_top_object_property() (owlapy.owl_property.owlpropertyexpression method)": [[19, "owlapy.owl_property.OWLPropertyExpression.is_owl_top_object_property"]], "owlapy.owl_property": [[19, "module-owlapy.owl_property"]], "str (owlapy.owl_property.owlobjectproperty property)": [[19, "owlapy.owl_property.OWLObjectProperty.str"]], "type_index (owlapy.owl_property.owldataproperty attribute)": [[19, "owlapy.owl_property.OWLDataProperty.type_index"]], "type_index (owlapy.owl_property.owlobjectinverseof attribute)": [[19, "owlapy.owl_property.OWLObjectInverseOf.type_index"]], "type_index (owlapy.owl_property.owlobjectproperty attribute)": [[19, "owlapy.owl_property.OWLObjectProperty.type_index"]], "literals (in module owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.Literals"]], "owlcardinalityrestriction (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLCardinalityRestriction"]], "owldataallvaluesfrom (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLDataAllValuesFrom"]], "owldatacardinalityrestriction (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLDataCardinalityRestriction"]], "owldataexactcardinality (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLDataExactCardinality"]], "owldatahasvalue (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLDataHasValue"]], "owldatamaxcardinality (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLDataMaxCardinality"]], "owldatamincardinality (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLDataMinCardinality"]], "owldataoneof (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLDataOneOf"]], "owldatarestriction (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLDataRestriction"]], "owldatasomevaluesfrom (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLDataSomeValuesFrom"]], "owldatatyperestriction (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLDatatypeRestriction"]], "owlfacetrestriction (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLFacetRestriction"]], "owlhasvaluerestriction (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLHasValueRestriction"]], "owlobjectallvaluesfrom (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLObjectAllValuesFrom"]], "owlobjectcardinalityrestriction (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLObjectCardinalityRestriction"]], "owlobjectexactcardinality (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLObjectExactCardinality"]], "owlobjecthasself (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLObjectHasSelf"]], "owlobjecthasvalue (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLObjectHasValue"]], "owlobjectmaxcardinality (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLObjectMaxCardinality"]], "owlobjectmincardinality (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLObjectMinCardinality"]], "owlobjectoneof (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLObjectOneOf"]], "owlobjectrestriction (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLObjectRestriction"]], "owlobjectsomevaluesfrom (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLObjectSomeValuesFrom"]], "owlquantifieddatarestriction (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLQuantifiedDataRestriction"]], "owlquantifiedobjectrestriction (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLQuantifiedObjectRestriction"]], "owlquantifiedrestriction (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLQuantifiedRestriction"]], "owlrestriction (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLRestriction"]], "__eq__() (owlapy.owl_restriction.owldataallvaluesfrom method)": [[20, "owlapy.owl_restriction.OWLDataAllValuesFrom.__eq__"]], "__eq__() (owlapy.owl_restriction.owldatacardinalityrestriction method)": [[20, "owlapy.owl_restriction.OWLDataCardinalityRestriction.__eq__"]], "__eq__() (owlapy.owl_restriction.owldatahasvalue method)": [[20, "owlapy.owl_restriction.OWLDataHasValue.__eq__"]], "__eq__() (owlapy.owl_restriction.owldataoneof method)": [[20, "owlapy.owl_restriction.OWLDataOneOf.__eq__"]], "__eq__() (owlapy.owl_restriction.owldatasomevaluesfrom method)": [[20, "owlapy.owl_restriction.OWLDataSomeValuesFrom.__eq__"]], "__eq__() (owlapy.owl_restriction.owldatatyperestriction method)": [[20, "owlapy.owl_restriction.OWLDatatypeRestriction.__eq__"]], "__eq__() (owlapy.owl_restriction.owlfacetrestriction method)": [[20, "owlapy.owl_restriction.OWLFacetRestriction.__eq__"]], "__eq__() (owlapy.owl_restriction.owlhasvaluerestriction method)": [[20, "owlapy.owl_restriction.OWLHasValueRestriction.__eq__"]], "__eq__() (owlapy.owl_restriction.owlobjectallvaluesfrom method)": [[20, "owlapy.owl_restriction.OWLObjectAllValuesFrom.__eq__"]], "__eq__() (owlapy.owl_restriction.owlobjectcardinalityrestriction method)": [[20, "owlapy.owl_restriction.OWLObjectCardinalityRestriction.__eq__"]], "__eq__() (owlapy.owl_restriction.owlobjecthasself method)": [[20, "owlapy.owl_restriction.OWLObjectHasSelf.__eq__"]], "__eq__() (owlapy.owl_restriction.owlobjectoneof method)": [[20, "owlapy.owl_restriction.OWLObjectOneOf.__eq__"]], "__eq__() (owlapy.owl_restriction.owlobjectsomevaluesfrom method)": [[20, "owlapy.owl_restriction.OWLObjectSomeValuesFrom.__eq__"]], "__hash__() (owlapy.owl_restriction.owldataallvaluesfrom method)": [[20, "owlapy.owl_restriction.OWLDataAllValuesFrom.__hash__"]], "__hash__() (owlapy.owl_restriction.owldatacardinalityrestriction method)": [[20, "owlapy.owl_restriction.OWLDataCardinalityRestriction.__hash__"]], "__hash__() (owlapy.owl_restriction.owldatahasvalue method)": [[20, "owlapy.owl_restriction.OWLDataHasValue.__hash__"]], "__hash__() (owlapy.owl_restriction.owldataoneof method)": [[20, "owlapy.owl_restriction.OWLDataOneOf.__hash__"]], "__hash__() (owlapy.owl_restriction.owldatasomevaluesfrom method)": [[20, "owlapy.owl_restriction.OWLDataSomeValuesFrom.__hash__"]], "__hash__() (owlapy.owl_restriction.owldatatyperestriction method)": [[20, "owlapy.owl_restriction.OWLDatatypeRestriction.__hash__"]], "__hash__() (owlapy.owl_restriction.owlfacetrestriction method)": [[20, "owlapy.owl_restriction.OWLFacetRestriction.__hash__"]], "__hash__() (owlapy.owl_restriction.owlhasvaluerestriction method)": [[20, "owlapy.owl_restriction.OWLHasValueRestriction.__hash__"]], "__hash__() (owlapy.owl_restriction.owlobjectallvaluesfrom method)": [[20, "owlapy.owl_restriction.OWLObjectAllValuesFrom.__hash__"]], "__hash__() (owlapy.owl_restriction.owlobjectcardinalityrestriction method)": [[20, "owlapy.owl_restriction.OWLObjectCardinalityRestriction.__hash__"]], "__hash__() (owlapy.owl_restriction.owlobjecthasself method)": [[20, "owlapy.owl_restriction.OWLObjectHasSelf.__hash__"]], "__hash__() (owlapy.owl_restriction.owlobjectoneof method)": [[20, "owlapy.owl_restriction.OWLObjectOneOf.__hash__"]], "__hash__() (owlapy.owl_restriction.owlobjectsomevaluesfrom method)": [[20, "owlapy.owl_restriction.OWLObjectSomeValuesFrom.__hash__"]], "__repr__() (owlapy.owl_restriction.owldataallvaluesfrom method)": [[20, "owlapy.owl_restriction.OWLDataAllValuesFrom.__repr__"]], "__repr__() (owlapy.owl_restriction.owldatacardinalityrestriction method)": [[20, "owlapy.owl_restriction.OWLDataCardinalityRestriction.__repr__"]], "__repr__() (owlapy.owl_restriction.owldatahasvalue method)": [[20, "owlapy.owl_restriction.OWLDataHasValue.__repr__"]], "__repr__() (owlapy.owl_restriction.owldataoneof method)": [[20, "owlapy.owl_restriction.OWLDataOneOf.__repr__"]], "__repr__() (owlapy.owl_restriction.owldatasomevaluesfrom method)": [[20, "owlapy.owl_restriction.OWLDataSomeValuesFrom.__repr__"]], "__repr__() (owlapy.owl_restriction.owldatatyperestriction method)": [[20, "owlapy.owl_restriction.OWLDatatypeRestriction.__repr__"]], "__repr__() (owlapy.owl_restriction.owlfacetrestriction method)": [[20, "owlapy.owl_restriction.OWLFacetRestriction.__repr__"]], "__repr__() (owlapy.owl_restriction.owlobjectallvaluesfrom method)": [[20, "owlapy.owl_restriction.OWLObjectAllValuesFrom.__repr__"]], "__repr__() (owlapy.owl_restriction.owlobjectcardinalityrestriction method)": [[20, "owlapy.owl_restriction.OWLObjectCardinalityRestriction.__repr__"]], "__repr__() (owlapy.owl_restriction.owlobjecthasself method)": [[20, "owlapy.owl_restriction.OWLObjectHasSelf.__repr__"]], "__repr__() (owlapy.owl_restriction.owlobjecthasvalue method)": [[20, "owlapy.owl_restriction.OWLObjectHasValue.__repr__"]], "__repr__() (owlapy.owl_restriction.owlobjectoneof method)": [[20, "owlapy.owl_restriction.OWLObjectOneOf.__repr__"]], "__repr__() (owlapy.owl_restriction.owlobjectsomevaluesfrom method)": [[20, "owlapy.owl_restriction.OWLObjectSomeValuesFrom.__repr__"]], "__slots__ (owlapy.owl_restriction.owlcardinalityrestriction attribute)": [[20, "owlapy.owl_restriction.OWLCardinalityRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owldataallvaluesfrom attribute)": [[20, "owlapy.owl_restriction.OWLDataAllValuesFrom.__slots__"]], "__slots__ (owlapy.owl_restriction.owldatacardinalityrestriction attribute)": [[20, "owlapy.owl_restriction.OWLDataCardinalityRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owldataexactcardinality attribute)": [[20, "owlapy.owl_restriction.OWLDataExactCardinality.__slots__"]], "__slots__ (owlapy.owl_restriction.owldatahasvalue attribute)": [[20, "owlapy.owl_restriction.OWLDataHasValue.__slots__"]], "__slots__ (owlapy.owl_restriction.owldatamaxcardinality attribute)": [[20, "owlapy.owl_restriction.OWLDataMaxCardinality.__slots__"]], "__slots__ (owlapy.owl_restriction.owldatamincardinality attribute)": [[20, "owlapy.owl_restriction.OWLDataMinCardinality.__slots__"]], "__slots__ (owlapy.owl_restriction.owldatarestriction attribute)": [[20, "owlapy.owl_restriction.OWLDataRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owldatasomevaluesfrom attribute)": [[20, "owlapy.owl_restriction.OWLDataSomeValuesFrom.__slots__"]], "__slots__ (owlapy.owl_restriction.owldatatyperestriction attribute)": [[20, "owlapy.owl_restriction.OWLDatatypeRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlfacetrestriction attribute)": [[20, "owlapy.owl_restriction.OWLFacetRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlhasvaluerestriction attribute)": [[20, "owlapy.owl_restriction.OWLHasValueRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectallvaluesfrom attribute)": [[20, "owlapy.owl_restriction.OWLObjectAllValuesFrom.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectcardinalityrestriction attribute)": [[20, "owlapy.owl_restriction.OWLObjectCardinalityRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectexactcardinality attribute)": [[20, "owlapy.owl_restriction.OWLObjectExactCardinality.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjecthasself attribute)": [[20, "owlapy.owl_restriction.OWLObjectHasSelf.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjecthasvalue attribute)": [[20, "owlapy.owl_restriction.OWLObjectHasValue.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectmaxcardinality attribute)": [[20, "owlapy.owl_restriction.OWLObjectMaxCardinality.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectmincardinality attribute)": [[20, "owlapy.owl_restriction.OWLObjectMinCardinality.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectoneof attribute)": [[20, "owlapy.owl_restriction.OWLObjectOneOf.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectrestriction attribute)": [[20, "owlapy.owl_restriction.OWLObjectRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectsomevaluesfrom attribute)": [[20, "owlapy.owl_restriction.OWLObjectSomeValuesFrom.__slots__"]], "__slots__ (owlapy.owl_restriction.owlquantifieddatarestriction attribute)": [[20, "owlapy.owl_restriction.OWLQuantifiedDataRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlquantifiedobjectrestriction attribute)": [[20, "owlapy.owl_restriction.OWLQuantifiedObjectRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlquantifiedrestriction attribute)": [[20, "owlapy.owl_restriction.OWLQuantifiedRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlrestriction attribute)": [[20, "owlapy.owl_restriction.OWLRestriction.__slots__"]], "as_intersection_of_min_max() (owlapy.owl_restriction.owldataexactcardinality method)": [[20, "owlapy.owl_restriction.OWLDataExactCardinality.as_intersection_of_min_max"]], "as_intersection_of_min_max() (owlapy.owl_restriction.owlobjectexactcardinality method)": [[20, "owlapy.owl_restriction.OWLObjectExactCardinality.as_intersection_of_min_max"]], "as_object_union_of() (owlapy.owl_restriction.owlobjectoneof method)": [[20, "owlapy.owl_restriction.OWLObjectOneOf.as_object_union_of"]], "as_some_values_from() (owlapy.owl_restriction.owldatahasvalue method)": [[20, "owlapy.owl_restriction.OWLDataHasValue.as_some_values_from"]], "as_some_values_from() (owlapy.owl_restriction.owlobjecthasvalue method)": [[20, "owlapy.owl_restriction.OWLObjectHasValue.as_some_values_from"]], "get_cardinality() (owlapy.owl_restriction.owlcardinalityrestriction method)": [[20, "owlapy.owl_restriction.OWLCardinalityRestriction.get_cardinality"]], "get_datatype() (owlapy.owl_restriction.owldatatyperestriction method)": [[20, "owlapy.owl_restriction.OWLDatatypeRestriction.get_datatype"]], "get_facet() (owlapy.owl_restriction.owlfacetrestriction method)": [[20, "owlapy.owl_restriction.OWLFacetRestriction.get_facet"]], "get_facet_restrictions() (owlapy.owl_restriction.owldatatyperestriction method)": [[20, "owlapy.owl_restriction.OWLDatatypeRestriction.get_facet_restrictions"]], "get_facet_value() (owlapy.owl_restriction.owlfacetrestriction method)": [[20, "owlapy.owl_restriction.OWLFacetRestriction.get_facet_value"]], "get_filler() (owlapy.owl_restriction.owlcardinalityrestriction method)": [[20, "owlapy.owl_restriction.OWLCardinalityRestriction.get_filler"]], "get_filler() (owlapy.owl_restriction.owlhasvaluerestriction method)": [[20, "owlapy.owl_restriction.OWLHasValueRestriction.get_filler"]], "get_filler() (owlapy.owl_restriction.owlquantifieddatarestriction method)": [[20, "owlapy.owl_restriction.OWLQuantifiedDataRestriction.get_filler"]], "get_filler() (owlapy.owl_restriction.owlquantifiedobjectrestriction method)": [[20, "owlapy.owl_restriction.OWLQuantifiedObjectRestriction.get_filler"]], "get_property() (owlapy.owl_restriction.owldataallvaluesfrom method)": [[20, "owlapy.owl_restriction.OWLDataAllValuesFrom.get_property"]], "get_property() (owlapy.owl_restriction.owldatacardinalityrestriction method)": [[20, "owlapy.owl_restriction.OWLDataCardinalityRestriction.get_property"]], "get_property() (owlapy.owl_restriction.owldatahasvalue method)": [[20, "owlapy.owl_restriction.OWLDataHasValue.get_property"]], "get_property() (owlapy.owl_restriction.owldatasomevaluesfrom method)": [[20, "owlapy.owl_restriction.OWLDataSomeValuesFrom.get_property"]], "get_property() (owlapy.owl_restriction.owlobjectallvaluesfrom method)": [[20, "owlapy.owl_restriction.OWLObjectAllValuesFrom.get_property"]], "get_property() (owlapy.owl_restriction.owlobjectcardinalityrestriction method)": [[20, "owlapy.owl_restriction.OWLObjectCardinalityRestriction.get_property"]], "get_property() (owlapy.owl_restriction.owlobjecthasself method)": [[20, "owlapy.owl_restriction.OWLObjectHasSelf.get_property"]], "get_property() (owlapy.owl_restriction.owlobjecthasvalue method)": [[20, "owlapy.owl_restriction.OWLObjectHasValue.get_property"]], "get_property() (owlapy.owl_restriction.owlobjectrestriction method)": [[20, "owlapy.owl_restriction.OWLObjectRestriction.get_property"]], "get_property() (owlapy.owl_restriction.owlobjectsomevaluesfrom method)": [[20, "owlapy.owl_restriction.OWLObjectSomeValuesFrom.get_property"]], "get_property() (owlapy.owl_restriction.owlrestriction method)": [[20, "owlapy.owl_restriction.OWLRestriction.get_property"]], "individuals() (owlapy.owl_restriction.owlobjectoneof method)": [[20, "owlapy.owl_restriction.OWLObjectOneOf.individuals"]], "is_data_restriction() (owlapy.owl_restriction.owldatarestriction method)": [[20, "owlapy.owl_restriction.OWLDataRestriction.is_data_restriction"]], "is_data_restriction() (owlapy.owl_restriction.owlrestriction method)": [[20, "owlapy.owl_restriction.OWLRestriction.is_data_restriction"]], "is_object_restriction() (owlapy.owl_restriction.owlobjectrestriction method)": [[20, "owlapy.owl_restriction.OWLObjectRestriction.is_object_restriction"]], "is_object_restriction() (owlapy.owl_restriction.owlrestriction method)": [[20, "owlapy.owl_restriction.OWLRestriction.is_object_restriction"]], "operands() (owlapy.owl_restriction.owldataoneof method)": [[20, "owlapy.owl_restriction.OWLDataOneOf.operands"]], "operands() (owlapy.owl_restriction.owlobjectoneof method)": [[20, "owlapy.owl_restriction.OWLObjectOneOf.operands"]], "owlapy.owl_restriction": [[20, "module-owlapy.owl_restriction"]], "type_index (owlapy.owl_restriction.owldataallvaluesfrom attribute)": [[20, "owlapy.owl_restriction.OWLDataAllValuesFrom.type_index"]], "type_index (owlapy.owl_restriction.owldataexactcardinality attribute)": [[20, "owlapy.owl_restriction.OWLDataExactCardinality.type_index"]], "type_index (owlapy.owl_restriction.owldatahasvalue attribute)": [[20, "owlapy.owl_restriction.OWLDataHasValue.type_index"]], "type_index (owlapy.owl_restriction.owldatamaxcardinality attribute)": [[20, "owlapy.owl_restriction.OWLDataMaxCardinality.type_index"]], "type_index (owlapy.owl_restriction.owldatamincardinality attribute)": [[20, "owlapy.owl_restriction.OWLDataMinCardinality.type_index"]], "type_index (owlapy.owl_restriction.owldataoneof attribute)": [[20, "owlapy.owl_restriction.OWLDataOneOf.type_index"]], "type_index (owlapy.owl_restriction.owldatasomevaluesfrom attribute)": [[20, "owlapy.owl_restriction.OWLDataSomeValuesFrom.type_index"]], "type_index (owlapy.owl_restriction.owldatatyperestriction attribute)": [[20, "owlapy.owl_restriction.OWLDatatypeRestriction.type_index"]], "type_index (owlapy.owl_restriction.owlfacetrestriction attribute)": [[20, "owlapy.owl_restriction.OWLFacetRestriction.type_index"]], "type_index (owlapy.owl_restriction.owlobjectallvaluesfrom attribute)": [[20, "owlapy.owl_restriction.OWLObjectAllValuesFrom.type_index"]], "type_index (owlapy.owl_restriction.owlobjectexactcardinality attribute)": [[20, "owlapy.owl_restriction.OWLObjectExactCardinality.type_index"]], "type_index (owlapy.owl_restriction.owlobjecthasself attribute)": [[20, "owlapy.owl_restriction.OWLObjectHasSelf.type_index"]], "type_index (owlapy.owl_restriction.owlobjecthasvalue attribute)": [[20, "owlapy.owl_restriction.OWLObjectHasValue.type_index"]], "type_index (owlapy.owl_restriction.owlobjectmaxcardinality attribute)": [[20, "owlapy.owl_restriction.OWLObjectMaxCardinality.type_index"]], "type_index (owlapy.owl_restriction.owlobjectmincardinality attribute)": [[20, "owlapy.owl_restriction.OWLObjectMinCardinality.type_index"]], "type_index (owlapy.owl_restriction.owlobjectoneof attribute)": [[20, "owlapy.owl_restriction.OWLObjectOneOf.type_index"]], "type_index (owlapy.owl_restriction.owlobjectsomevaluesfrom attribute)": [[20, "owlapy.owl_restriction.OWLObjectSomeValuesFrom.type_index"]], "values() (owlapy.owl_restriction.owldataoneof method)": [[20, "owlapy.owl_restriction.OWLDataOneOf.values"]], "owlentity (class in owlapy.owlobject)": [[21, "owlapy.owlobject.OWLEntity"]], "owlnamedobject (class in owlapy.owlobject)": [[21, "owlapy.owlobject.OWLNamedObject"]], "owlobject (class in owlapy.owlobject)": [[21, "owlapy.owlobject.OWLObject"]], "owlobjectparser (class in owlapy.owlobject)": [[21, "owlapy.owlobject.OWLObjectParser"]], "owlobjectrenderer (class in owlapy.owlobject)": [[21, "owlapy.owlobject.OWLObjectRenderer"]], "__eq__() (owlapy.owlobject.owlnamedobject method)": [[21, "owlapy.owlobject.OWLNamedObject.__eq__"]], "__eq__() (owlapy.owlobject.owlobject method)": [[21, "owlapy.owlobject.OWLObject.__eq__"]], "__hash__() (owlapy.owlobject.owlnamedobject method)": [[21, "owlapy.owlobject.OWLNamedObject.__hash__"]], "__hash__() (owlapy.owlobject.owlobject method)": [[21, "owlapy.owlobject.OWLObject.__hash__"]], "__lt__() (owlapy.owlobject.owlnamedobject method)": [[21, "owlapy.owlobject.OWLNamedObject.__lt__"]], "__repr__() (owlapy.owlobject.owlnamedobject method)": [[21, "owlapy.owlobject.OWLNamedObject.__repr__"]], "__repr__() (owlapy.owlobject.owlobject method)": [[21, "owlapy.owlobject.OWLObject.__repr__"]], "__slots__ (owlapy.owlobject.owlentity attribute)": [[21, "owlapy.owlobject.OWLEntity.__slots__"]], "__slots__ (owlapy.owlobject.owlnamedobject attribute)": [[21, "owlapy.owlobject.OWLNamedObject.__slots__"]], "__slots__ (owlapy.owlobject.owlobject attribute)": [[21, "owlapy.owlobject.OWLObject.__slots__"]], "is_anonymous() (owlapy.owlobject.owlentity method)": [[21, "owlapy.owlobject.OWLEntity.is_anonymous"]], "is_anonymous() (owlapy.owlobject.owlobject method)": [[21, "owlapy.owlobject.OWLObject.is_anonymous"]], "owlapy.owlobject": [[21, "module-owlapy.owlobject"]], "parse_expression() (owlapy.owlobject.owlobjectparser method)": [[21, "owlapy.owlobject.OWLObjectParser.parse_expression"]], "render() (owlapy.owlobject.owlobjectrenderer method)": [[21, "owlapy.owlobject.OWLObjectRenderer.render"]], "set_short_form_provider() (owlapy.owlobject.owlobjectrenderer method)": [[21, "owlapy.owlobject.OWLObjectRenderer.set_short_form_provider"]], "to_string_id() (owlapy.owlobject.owlentity method)": [[21, "owlapy.owlobject.OWLEntity.to_string_id"]], "dlsyntaxparser (class in owlapy.parser)": [[22, "owlapy.parser.DLSyntaxParser"]], "dl_grammar (in module owlapy.parser)": [[22, "owlapy.parser.DL_GRAMMAR"]], "dlparser (in module owlapy.parser)": [[22, "owlapy.parser.DLparser"]], "manchester_grammar (in module owlapy.parser)": [[22, "owlapy.parser.MANCHESTER_GRAMMAR"]], "manchesterowlsyntaxparser (class in owlapy.parser)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser"]], "manchesterparser (in module owlapy.parser)": [[22, "owlapy.parser.ManchesterParser"]], "dl_to_owl_expression() (in module owlapy.parser)": [[22, "owlapy.parser.dl_to_owl_expression"]], "generic_visit() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.generic_visit"]], "generic_visit() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.generic_visit"]], "manchester_to_owl_expression() (in module owlapy.parser)": [[22, "owlapy.parser.manchester_to_owl_expression"]], "ns (owlapy.parser.dlsyntaxparser attribute)": [[22, "owlapy.parser.DLSyntaxParser.ns"]], "ns (owlapy.parser.manchesterowlsyntaxparser attribute)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.ns"]], "owlapy.parser": [[22, "module-owlapy.parser"]], "parse_expression() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.parse_expression"]], "parse_expression() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.parse_expression"]], "slots (owlapy.parser.dlsyntaxparser attribute)": [[22, "owlapy.parser.DLSyntaxParser.slots"]], "slots (owlapy.parser.manchesterowlsyntaxparser attribute)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.slots"]], "visit_abbreviated_iri() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_abbreviated_iri"]], "visit_abbreviated_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_abbreviated_iri"]], "visit_boolean_literal() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_boolean_literal"]], "visit_boolean_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_boolean_literal"]], "visit_cardinality_res() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_cardinality_res"]], "visit_cardinality_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_cardinality_res"]], "visit_class_expression() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_class_expression"]], "visit_class_expression() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_class_expression"]], "visit_class_iri() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_class_iri"]], "visit_class_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_class_iri"]], "visit_data_cardinality_res() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_data_cardinality_res"]], "visit_data_cardinality_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_cardinality_res"]], "visit_data_intersection() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_data_intersection"]], "visit_data_intersection() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_intersection"]], "visit_data_parentheses() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_data_parentheses"]], "visit_data_parentheses() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_parentheses"]], "visit_data_primary() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_data_primary"]], "visit_data_primary() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_primary"]], "visit_data_property_iri() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_data_property_iri"]], "visit_data_property_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_property_iri"]], "visit_data_some_only_res() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_data_some_only_res"]], "visit_data_some_only_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_some_only_res"]], "visit_data_union() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_data_union"]], "visit_data_union() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_union"]], "visit_data_value_res() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_data_value_res"]], "visit_data_value_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_value_res"]], "visit_datatype() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_datatype"]], "visit_datatype() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_datatype"]], "visit_datatype_iri() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_datatype_iri"]], "visit_datatype_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_datatype_iri"]], "visit_datatype_restriction() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_datatype_restriction"]], "visit_datatype_restriction() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_datatype_restriction"]], "visit_date_literal() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_date_literal"]], "visit_date_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_date_literal"]], "visit_datetime_literal() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_datetime_literal"]], "visit_datetime_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_datetime_literal"]], "visit_decimal_literal() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_decimal_literal"]], "visit_decimal_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_decimal_literal"]], "visit_duration_literal() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_duration_literal"]], "visit_duration_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_duration_literal"]], "visit_facet() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_facet"]], "visit_facet() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_facet"]], "visit_facet_restriction() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_facet_restriction"]], "visit_facet_restriction() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_facet_restriction"]], "visit_facet_restrictions() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_facet_restrictions"]], "visit_facet_restrictions() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_facet_restrictions"]], "visit_float_literal() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_float_literal"]], "visit_float_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_float_literal"]], "visit_full_iri() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_full_iri"]], "visit_full_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_full_iri"]], "visit_has_self() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_has_self"]], "visit_has_self() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_has_self"]], "visit_individual_iri() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_individual_iri"]], "visit_individual_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_individual_iri"]], "visit_individual_list() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_individual_list"]], "visit_individual_list() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_individual_list"]], "visit_integer_literal() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_integer_literal"]], "visit_integer_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_integer_literal"]], "visit_intersection() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_intersection"]], "visit_intersection() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_intersection"]], "visit_iri() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_iri"]], "visit_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_iri"]], "visit_literal() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_literal"]], "visit_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_literal"]], "visit_literal_list() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_literal_list"]], "visit_literal_list() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_literal_list"]], "visit_non_negative_integer() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_non_negative_integer"]], "visit_non_negative_integer() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_non_negative_integer"]], "visit_object_property() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_object_property"]], "visit_object_property() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_object_property"]], "visit_object_property_iri() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_object_property_iri"]], "visit_object_property_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_object_property_iri"]], "visit_parentheses() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_parentheses"]], "visit_parentheses() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_parentheses"]], "visit_primary() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_primary"]], "visit_primary() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_primary"]], "visit_quoted_string() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_quoted_string"]], "visit_quoted_string() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_quoted_string"]], "visit_simple_iri() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_simple_iri"]], "visit_simple_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_simple_iri"]], "visit_some_only_res() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_some_only_res"]], "visit_some_only_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_some_only_res"]], "visit_string_literal_language() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_string_literal_language"]], "visit_string_literal_language() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_string_literal_language"]], "visit_string_literal_no_language() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_string_literal_no_language"]], "visit_string_literal_no_language() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_string_literal_no_language"]], "visit_typed_literal() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_typed_literal"]], "visit_typed_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_typed_literal"]], "visit_union() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_union"]], "visit_union() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_union"]], "visit_value_res() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_value_res"]], "visit_value_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_value_res"]], "owldatarange (class in owlapy.ranges)": [[23, "owlapy.ranges.OWLDataRange"]], "owlpropertyrange (class in owlapy.ranges)": [[23, "owlapy.ranges.OWLPropertyRange"]], "owlapy.ranges": [[23, "module-owlapy.ranges"]], "dlsyntaxobjectrenderer (class in owlapy.render)": [[24, "owlapy.render.DLSyntaxObjectRenderer"]], "dlrenderer (in module owlapy.render)": [[24, "owlapy.render.DLrenderer"]], "manchesterowlsyntaxowlobjectrenderer (class in owlapy.render)": [[24, "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer"]], "manchesterrenderer (in module owlapy.render)": [[24, "owlapy.render.ManchesterRenderer"]], "__slots__ (owlapy.render.dlsyntaxobjectrenderer attribute)": [[24, "owlapy.render.DLSyntaxObjectRenderer.__slots__"]], "__slots__ (owlapy.render.manchesterowlsyntaxowlobjectrenderer attribute)": [[24, "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer.__slots__"]], "owl_expression_to_dl() (in module owlapy.render)": [[24, "owlapy.render.owl_expression_to_dl"]], "owl_expression_to_manchester() (in module owlapy.render)": [[24, "owlapy.render.owl_expression_to_manchester"]], "owlapy.render": [[24, "module-owlapy.render"]], "render() (owlapy.render.dlsyntaxobjectrenderer method)": [[24, "owlapy.render.DLSyntaxObjectRenderer.render"]], "render() (owlapy.render.manchesterowlsyntaxowlobjectrenderer method)": [[24, "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer.render"]], "set_short_form_provider() (owlapy.render.dlsyntaxobjectrenderer method)": [[24, "owlapy.render.DLSyntaxObjectRenderer.set_short_form_provider"]], "set_short_form_provider() (owlapy.render.manchesterowlsyntaxowlobjectrenderer method)": [[24, "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer.set_short_form_provider"]], "owldatatype (class in owlapy.types)": [[25, "owlapy.types.OWLDatatype"]], "__slots__ (owlapy.types.owldatatype attribute)": [[25, "owlapy.types.OWLDatatype.__slots__"]], "get_iri() (owlapy.types.owldatatype method)": [[25, "owlapy.types.OWLDatatype.get_iri"]], "owlapy.types": [[25, "module-owlapy.types"]], "type_index (owlapy.types.owldatatype attribute)": [[25, "owlapy.types.OWLDatatype.type_index"]], "key (owlapy.util.lrucache attribute)": [[26, "owlapy.util.LRUCache.KEY"]], "lrucache (class in owlapy.util)": [[26, "owlapy.util.LRUCache"]], "next (owlapy.util.lrucache attribute)": [[26, "owlapy.util.LRUCache.NEXT"]], "nnf (class in owlapy.util)": [[26, "owlapy.util.NNF"]], "orderedowlobject (class in owlapy.util)": [[26, "owlapy.util.OrderedOWLObject"]], "prev (owlapy.util.lrucache attribute)": [[26, "owlapy.util.LRUCache.PREV"]], "result (owlapy.util.lrucache attribute)": [[26, "owlapy.util.LRUCache.RESULT"]], "toplevelcnf (class in owlapy.util)": [[26, "owlapy.util.TopLevelCNF"]], "topleveldnf (class in owlapy.util)": [[26, "owlapy.util.TopLevelDNF"]], "__contains__() (owlapy.util.lrucache method)": [[26, "owlapy.util.LRUCache.__contains__"]], "__eq__() (owlapy.util.orderedowlobject method)": [[26, "owlapy.util.OrderedOWLObject.__eq__"]], "__getitem__() (owlapy.util.lrucache method)": [[26, "owlapy.util.LRUCache.__getitem__"]], "__lt__() (owlapy.util.orderedowlobject method)": [[26, "owlapy.util.OrderedOWLObject.__lt__"]], "__setitem__() (owlapy.util.lrucache method)": [[26, "owlapy.util.LRUCache.__setitem__"]], "__slots__ (owlapy.util.orderedowlobject attribute)": [[26, "owlapy.util.OrderedOWLObject.__slots__"]], "as_index() (in module owlapy.util)": [[26, "owlapy.util.as_index"]], "cache_clear() (owlapy.util.lrucache method)": [[26, "owlapy.util.LRUCache.cache_clear"]], "cache_info() (owlapy.util.lrucache method)": [[26, "owlapy.util.LRUCache.cache_info"]], "combine_nary_expressions() (in module owlapy.util)": [[26, "owlapy.util.combine_nary_expressions"]], "get_class_nnf() (owlapy.util.nnf method)": [[26, "owlapy.util.NNF.get_class_nnf"]], "get_top_level_cnf() (owlapy.util.toplevelcnf method)": [[26, "owlapy.util.TopLevelCNF.get_top_level_cnf"]], "get_top_level_dnf() (owlapy.util.topleveldnf method)": [[26, "owlapy.util.TopLevelDNF.get_top_level_dnf"]], "iter_count() (in module owlapy.util)": [[26, "owlapy.util.iter_count"]], "o (owlapy.util.orderedowlobject attribute)": [[26, "id0"], [26, "owlapy.util.OrderedOWLObject.o"]], "owlapy.util": [[26, "module-owlapy.util"]], "sentinel (owlapy.util.lrucache attribute)": [[26, "id1"], [26, "owlapy.util.LRUCache.sentinel"]], "boolean (owlapy.vocab.xsdvocabulary attribute)": [[27, "owlapy.vocab.XSDVocabulary.BOOLEAN"]], "date (owlapy.vocab.xsdvocabulary attribute)": [[27, "owlapy.vocab.XSDVocabulary.DATE"]], "date_time (owlapy.vocab.xsdvocabulary attribute)": [[27, "owlapy.vocab.XSDVocabulary.DATE_TIME"]], "date_time_stamp (owlapy.vocab.xsdvocabulary attribute)": [[27, "owlapy.vocab.XSDVocabulary.DATE_TIME_STAMP"]], "decimal (owlapy.vocab.xsdvocabulary attribute)": [[27, "owlapy.vocab.XSDVocabulary.DECIMAL"]], "double (owlapy.vocab.xsdvocabulary attribute)": [[27, "owlapy.vocab.XSDVocabulary.DOUBLE"]], "duration (owlapy.vocab.xsdvocabulary attribute)": [[27, "owlapy.vocab.XSDVocabulary.DURATION"]], "float (owlapy.vocab.xsdvocabulary attribute)": [[27, "owlapy.vocab.XSDVocabulary.FLOAT"]], "fraction_digits (owlapy.vocab.owlfacet attribute)": [[27, "owlapy.vocab.OWLFacet.FRACTION_DIGITS"]], "integer (owlapy.vocab.xsdvocabulary attribute)": [[27, "owlapy.vocab.XSDVocabulary.INTEGER"]], "length (owlapy.vocab.owlfacet attribute)": [[27, "owlapy.vocab.OWLFacet.LENGTH"]], "long (owlapy.vocab.xsdvocabulary attribute)": [[27, "owlapy.vocab.XSDVocabulary.LONG"]], "max_exclusive (owlapy.vocab.owlfacet attribute)": [[27, "owlapy.vocab.OWLFacet.MAX_EXCLUSIVE"]], "max_inclusive (owlapy.vocab.owlfacet attribute)": [[27, "owlapy.vocab.OWLFacet.MAX_INCLUSIVE"]], "max_length (owlapy.vocab.owlfacet attribute)": [[27, "owlapy.vocab.OWLFacet.MAX_LENGTH"]], "min_exclusive (owlapy.vocab.owlfacet attribute)": [[27, "owlapy.vocab.OWLFacet.MIN_EXCLUSIVE"]], "min_inclusive (owlapy.vocab.owlfacet attribute)": [[27, "owlapy.vocab.OWLFacet.MIN_INCLUSIVE"]], "min_length (owlapy.vocab.owlfacet attribute)": [[27, "owlapy.vocab.OWLFacet.MIN_LENGTH"]], "owlfacet (class in owlapy.vocab)": [[27, "owlapy.vocab.OWLFacet"]], "owlrdfvocabulary (class in owlapy.vocab)": [[27, "owlapy.vocab.OWLRDFVocabulary"]], "owl_bottom_data_property (owlapy.vocab.owlrdfvocabulary attribute)": [[27, "owlapy.vocab.OWLRDFVocabulary.OWL_BOTTOM_DATA_PROPERTY"]], "owl_bottom_object_property (owlapy.vocab.owlrdfvocabulary attribute)": [[27, "owlapy.vocab.OWLRDFVocabulary.OWL_BOTTOM_OBJECT_PROPERTY"]], "owl_class (owlapy.vocab.owlrdfvocabulary attribute)": [[27, "owlapy.vocab.OWLRDFVocabulary.OWL_CLASS"]], "owl_named_individual (owlapy.vocab.owlrdfvocabulary attribute)": [[27, "owlapy.vocab.OWLRDFVocabulary.OWL_NAMED_INDIVIDUAL"]], "owl_nothing (owlapy.vocab.owlrdfvocabulary attribute)": [[27, "owlapy.vocab.OWLRDFVocabulary.OWL_NOTHING"]], "owl_thing (owlapy.vocab.owlrdfvocabulary attribute)": [[27, "owlapy.vocab.OWLRDFVocabulary.OWL_THING"]], "owl_top_data_property (owlapy.vocab.owlrdfvocabulary attribute)": [[27, "owlapy.vocab.OWLRDFVocabulary.OWL_TOP_DATA_PROPERTY"]], "owl_top_object_property (owlapy.vocab.owlrdfvocabulary attribute)": [[27, "owlapy.vocab.OWLRDFVocabulary.OWL_TOP_OBJECT_PROPERTY"]], "pattern (owlapy.vocab.owlfacet attribute)": [[27, "owlapy.vocab.OWLFacet.PATTERN"]], "rdfs_literal (owlapy.vocab.owlrdfvocabulary attribute)": [[27, "owlapy.vocab.OWLRDFVocabulary.RDFS_LITERAL"]], "string (owlapy.vocab.xsdvocabulary attribute)": [[27, "owlapy.vocab.XSDVocabulary.STRING"]], "total_digits (owlapy.vocab.owlfacet attribute)": [[27, "owlapy.vocab.OWLFacet.TOTAL_DIGITS"]], "xsdvocabulary (class in owlapy.vocab)": [[27, "owlapy.vocab.XSDVocabulary"]], "from_str() (owlapy.vocab.owlfacet static method)": [[27, "owlapy.vocab.OWLFacet.from_str"]], "operator (owlapy.vocab.owlfacet property)": [[27, "owlapy.vocab.OWLFacet.operator"]], "owlapy.vocab": [[27, "module-owlapy.vocab"]], "symbolic_form (owlapy.vocab.owlfacet property)": [[27, "owlapy.vocab.OWLFacet.symbolic_form"]]}})
\ No newline at end of file
+Search.setIndex({"docnames": ["autoapi/owlapy/_utils/index", "autoapi/owlapy/class_expression/class_expression/index", "autoapi/owlapy/class_expression/index", "autoapi/owlapy/class_expression/nary_boolean_expression/index", "autoapi/owlapy/class_expression/owl_class/index", "autoapi/owlapy/data_ranges/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_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/class_expression/class_expression/index.rst", "autoapi/owlapy/class_expression/index.rst", "autoapi/owlapy/class_expression/nary_boolean_expression/index.rst", "autoapi/owlapy/class_expression/owl_class/index.rst", "autoapi/owlapy/data_ranges/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_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.class_expression.class_expression
", "owlapy.class_expression
", "owlapy.class_expression.nary_boolean_expression
", "owlapy.class_expression.owl_class
", "owlapy.data_ranges
", "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_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, 10], "arg": [0, 10], "sourc": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27], "an": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 13, 15, 16, 18, 19, 20, 21, 22, 26], "import": [0, 10, 16], "class": 0, "current": [0, 10], "set": [0, 10, 13, 16, 18, 19], "__module__": [0, 10], "attribut": 0, "thi": [0, 1, 2, 4, 5, 6, 8, 9, 10, 16, 17, 18, 19, 20, 22, 25, 26], "i": [0, 1, 2, 4, 5, 6, 8, 10, 15, 16, 18, 19, 20, 21, 22, 26], "us": [0, 6, 10, 13, 16, 19, 20, 22, 26], "document": [0, 10], "purpos": [0, 10], "hide": [0, 10], "intern": [0, 10], "packag": [0, 28], "sphinx": [0, 10], "paramet": [0, 5, 9, 10, 13, 16, 20, 21, 22, 24, 26], "list": [0, 10, 13, 16, 22], "owlclassexpress": [1, 2, 3, 4, 10, 13, 16, 20, 22, 26], "base": [1, 2, 3, 4, 5, 6, 8, 9, 10, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27], "rang": [1, 2, 5, 7, 9, 10, 20, 25], "owlpropertyrang": [1, 2, 5, 10, 23], "owl": [1, 2, 3, 4, 5, 8, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28], "2": [1, 2, 3, 4, 5, 10, 16, 17, 18, 19, 20, 21, 23, 25, 26], "express": [1, 2, 3, 4, 9, 10, 13, 16, 19, 20, 21, 22, 26], "http": [1, 2, 5, 8, 10, 13, 18, 22], "www": [1, 2, 5, 8, 10, 13, 18, 22], "w3": [1, 2, 5, 8, 10, 13, 18, 22], "org": [1, 2, 5, 8, 10, 13, 18, 22], "tr": [1, 2, 10, 13, 22], "owl2": [1, 2, 10, 13, 22], "syntax": [1, 2, 5, 8, 10, 13, 22, 24], "__slots__": [1, 2, 3, 4, 5, 8, 9, 10, 12, 13, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26], "abstract": [1, 2, 5, 9, 10, 13, 16, 18, 19, 20, 21, 22, 26], "is_owl_th": [1, 2, 4, 10], "bool": [1, 2, 4, 5, 8, 10, 13, 15, 16, 18, 19, 20, 21, 26, 27], "determin": [1, 2, 4, 5, 8, 10, 19, 20], "built": [1, 2, 4, 10], "thing": [1, 2, 4, 5, 8, 10, 19], "method": [1, 2, 4, 10, 20, 21, 22], "doe": [1, 2, 4, 10], "equival": [1, 2, 3, 4, 5, 9, 10, 16, 20], "return": [1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26], "type": [1, 2, 4, 5, 6, 7, 9, 10, 13, 16, 18, 19, 20, 26], "true": [1, 2, 4, 5, 8, 10, 13, 15, 18, 19, 20], "is_owl_noth": [1, 2, 4, 10], "noth": [1, 2, 4, 5, 8, 10], "get_object_complement_of": [1, 2, 4, 10], "owlobjectcomplementof": [1, 2, 4, 10], "get": [1, 2, 3, 4, 5, 8, 9, 10, 16, 17, 18, 19, 20, 25], "object": [1, 2, 4, 5, 6, 9, 10, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 28], "complement": [1, 2, 4, 10], "A": [1, 2, 4, 5, 8, 9, 10, 12, 15, 16, 18, 19, 20, 26], "get_nnf": [1, 2, 4, 10], "negat": [1, 2, 4, 10, 26], "normal": [1, 2, 4, 10, 26], "form": [1, 2, 4, 5, 8, 10, 19, 20, 21, 24, 26], "repres": [1, 2, 3, 4, 5, 8, 10, 16, 17, 18, 19, 20, 21, 22, 23, 25], "nnf": [1, 2, 4, 10, 26], "owlanonymousclassexpress": [1, 2, 10, 20], "which": [1, 2, 5, 10, 15, 16, 18, 19, 21, 22], "name": [1, 2, 4, 5, 8, 10, 13, 17, 19, 21, 25, 26, 27], "owlbooleanclassexpress": [1, 2, 3, 10], "anonym": [1, 2, 10, 15, 17], "boolean": [1, 2, 5, 10, 18, 27], "op": [1, 2, 10], "meta_class": [1, 2, 3, 5, 7, 10, 16, 20, 21, 25], "hasoperand": [1, 2, 3, 5, 9, 10, 16, 20], "objectcomplementof": [1, 2, 10], "specif": [1, 2, 3, 5, 10, 16, 17, 18, 19, 20, 21, 23, 25], "_operand": [1, 2, 3, 5, 10], "type_index": [1, 2, 3, 4, 5, 6, 8, 10, 17, 18, 19, 20, 25, 26], "final": [1, 2, 3, 4, 5, 8, 10, 12, 17, 18, 19, 20, 25, 27], "3003": [1, 2, 10], "get_operand": [1, 2, 10], "The": [1, 2, 3, 4, 5, 8, 9, 10, 13, 16, 17, 18, 19, 20, 21, 22, 25, 26], "wrap": [1, 2, 5, 10], "operand": [1, 2, 3, 5, 9, 10, 16, 20, 26], "iter": [1, 2, 3, 5, 9, 10, 13, 16, 20, 26], "e": [1, 2, 3, 5, 9, 10, 13, 16, 19, 20, 21, 26], "g": [1, 2, 3, 5, 9, 10, 16, 19, 20, 26], "individu": [1, 2, 3, 5, 9, 10, 13, 15, 16, 17, 20], "samea": [1, 2, 3, 5, 9, 10, 16, 20], "axiom": [1, 2, 3, 5, 9, 10, 16, 20], "__repr__": [1, 2, 3, 5, 8, 10, 12, 16, 19, 20, 21], "repr": [1, 2, 3, 5, 8, 10, 12, 16, 19, 20, 21], "self": [1, 2, 3, 5, 6, 8, 10, 12, 16, 19, 20, 21, 26], "__eq__": [1, 2, 3, 5, 6, 8, 10, 12, 16, 19, 20, 21, 26], "other": [1, 2, 3, 5, 6, 8, 10, 12, 16, 19, 20, 21, 26], "valu": [1, 2, 3, 5, 6, 8, 9, 10, 12, 13, 15, 16, 18, 19, 20, 21, 26], "__hash__": [1, 2, 3, 5, 8, 10, 12, 16, 19, 20, 21], "hash": [1, 2, 3, 5, 8, 10, 12, 16, 19, 20, 21], "nary_boolean_express": [2, 7], "owl_class": [2, 7, 10, 27], "owlclass": [2, 4, 10, 16, 22], "iri": [2, 4, 5, 7, 9, 10, 15, 16, 17, 19, 21, 22, 25], "str": [2, 4, 5, 8, 10, 12, 13, 17, 18, 19, 21, 22, 24, 27], "owlobject": [2, 4, 5, 7, 10, 15, 16, 17, 19, 20, 22, 23, 24, 25, 26], "owlent": [2, 4, 5, 10, 13, 16, 17, 19, 21, 24, 25], "properti": [2, 4, 5, 8, 10, 12, 13, 16, 17, 19, 20, 21, 23, 27], "remind": [2, 4, 5, 8, 10], "_iri": [2, 4, 10, 16, 17, 19, 25], "_is_noth": [2, 4, 10], "_is_th": [2, 4, 10], "1001": [2, 4, 10], "get_iri": [2, 4, 9, 10, 16, 17, 19, 25], "owlnarybooleanclassexpress": [2, 3, 10], "owlobjectunionof": [2, 3, 10, 26], "objectunionof": [2, 3, 10], "3002": [2, 3, 10], "owlobjectintersectionof": [2, 3, 10, 20], "3001": [2, 3, 10], "owlrdfvocabulari": [2, 10, 27], "namespac": [2, 5, 7, 8, 10, 22, 27], "remaind": [2, 5, 8, 10, 27], "_vocabulari": [2, 10, 27], "enum": [2, 10, 27], "enumer": [2, 10, 20, 27], "rdf": [2, 5, 8, 10, 12, 27], "vocabulari": [2, 5, 8, 10, 27], "owl_th": [2, 10, 27], "owl_noth": [2, 10, 27], "owl_named_individu": [2, 10, 27], "owl_top_object_properti": [2, 10, 27], "owl_bottom_object_properti": [2, 10, 27], "owl_top_data_properti": [2, 10, 27], "owl_bottom_data_properti": [2, 10, 27], "rdfs_liter": [2, 10, 27], "owlth": [2, 10], "owlnoth": [2, 10], "interfac": [5, 6, 9, 10, 15, 16, 19, 20, 21], "is_anonym": [5, 10, 21], "owlnamedobject": [5, 10, 21], "entiti": [5, 10, 13, 16, 21], "to_string_id": [5, 10, 21], "gener": [5, 9, 10, 13, 16, 20, 26], "_t": [5, 9, 10, 20], "have": [5, 9, 10], "collect": [5, 9, 10], "can": [5, 10, 15, 16, 19, 23, 26], "owldatarang": [5, 10, 16, 20, 22, 23, 25, 26], "datarang": [5, 10, 16, 23], "owlliter": [5, 10, 15, 16, 18, 20, 22], "owl_annot": [5, 7, 8, 10, 16, 18], "owlannotationvalu": [5, 8, 10, 15, 16, 18], "liter": [5, 10, 15, 18, 20], "4008": [5, 10, 18], "get_liter": [5, 10, 18], "lexic": [5, 10, 18], "note": [5, 10, 18, 19], "languag": [5, 10, 18], "tag": [5, 10, 18], "includ": [5, 10, 16, 18], "is_boolean": [5, 10, 18], "whether": [5, 10, 16, 18, 26], "parse_boolean": [5, 10, 18], "pars": [5, 10, 18, 21, 22], "should": [5, 8, 10, 18, 26], "space": [5, 10, 18], "datatyp": [5, 10, 11, 16, 18, 20, 25], "2001": [5, 8, 10, 18], "xmlschema": [5, 8, 10, 18], "is_doubl": [5, 10, 18], "doubl": [5, 10, 18, 27], "parse_doubl": [5, 10, 18], "float": [5, 10, 18, 27], "is_integ": [5, 10, 18], "integ": [5, 9, 10, 18, 20, 27], "parse_integ": [5, 10, 18], "int": [5, 6, 9, 10, 13, 18, 20, 22, 26], "is_str": [5, 10, 18], "string": [5, 8, 10, 18, 21, 22, 24, 27], "parse_str": [5, 10, 18], "is_dat": [5, 10, 18], "date": [5, 10, 18, 27], "parse_d": [5, 10, 18], "datetim": [5, 10, 18, 27], "is_datetim": [5, 10, 18], "parse_datetim": [5, 10, 18], "is_dur": [5, 10, 18], "durat": [5, 10, 18, 27], "parse_dur": [5, 10, 18], "panda": [5, 10, 18], "timedelta": [5, 10, 18], "is_liter": [5, 10, 15, 18], "annot": [5, 10, 15, 16, 18], "as_liter": [5, 10, 15, 18], "none": [5, 10, 13, 15, 16, 18, 21, 22, 24, 26], "otherwis": [5, 8, 10, 15, 18], "to_python": [5, 10, 18], "get_datatyp": [5, 10, 16, 18, 20], "owldatatyp": [5, 10, 16, 18, 20, 22, 25], "owlannotationsubject": [5, 8, 10, 15, 16], "consist": [5, 8, 10], "specifi": [5, 8, 10], "correspond": [5, 8, 10, 19], "_namespac": [5, 8, 10], "_remaind": [5, 8, 10], "__weakref__": [5, 8, 10], "0": [5, 7, 8, 10, 26], "static": [5, 8, 10, 27], "creat": [5, 8, 10, 11], "is_noth": [5, 8, 10], "equal": [5, 8, 10], "2002": [5, 8, 10], "07": [5, 8, 10], "fals": [5, 8, 10, 13, 24, 26], "is_th": [5, 8, 10], "is_reserved_vocabulari": [5, 8, 10], "reserv": [5, 8, 10], "start": [5, 8, 10], "1999": [5, 8, 10], "02": [5, 8, 10], "22": [5, 8, 10], "n": [5, 8, 10, 12, 22], "2000": [5, 8, 10], "01": [5, 8, 10], "schema": [5, 8, 10], "as_iri": [5, 8, 10, 15], "mone": [5, 8, 10, 15], "as_str": [5, 8, 10], "cd": [5, 8, 10], "deprec": [5, 8, 10], "get_short_form": [5, 8, 10], "short": [5, 8, 10, 21, 24], "get_namespac": [5, 8, 10], "get_remaind": [5, 8, 10], "coincid": [5, 8, 10], "ncname": [5, 8, 10], "usual": [5, 8, 10], "owldatacomplementof": 5, "datacomplementof": 5, "4002": 5, "get_data_rang": 5, "data": [5, 9, 10, 16, 19, 20, 25], "owlnarydatarang": 5, "owldataunionof": 5, "dataunionof": 5, "4005": 5, "owldataintersectionof": 5, "dataintersectionof": 5, "4004": 5, "hasindex": [6, 10, 26], "protocol": [6, 10], "index": [6, 10], "group": [6, 10], "when": [6, 10], "sort": [6, 10, 16, 26], "classvar": [6, 10], "class_express": [7, 10, 13, 16, 20], "data_rang": 7, "model": [7, 13, 22, 24, 26], "provid": [7, 10, 21, 24], "owl2sparql": 7, "convert": [7, 14, 26], "ha": [7, 10, 21, 26], "owl_axiom": [7, 10], "owl_individu": [7, 10, 16, 20], "owl_liter": [7, 10, 16, 20], "owl_properti": [7, 10, 16, 20], "owl_restrict": [7, 11, 22], "parser": 7, "render": [7, 13, 21], "util": 7, "vocab": [7, 20, 22], "__version__": 7, "1": [7, 10, 13, 20, 26], "3": [7, 26], "hasiri": [9, 10, 21, 25], "simpl": [9, 10], "access": [9, 10], "hasfil": [9, 10, 20], "filler": [9, 10, 20], "get_fil": [9, 10, 20], "restrict": [9, 10, 11, 19, 20], "In": [9, 10, 20], "case": [9, 10, 20, 22], "constant": [9, 10, 20, 26], "For": [9, 10, 19, 20], "quantifi": [9, 10, 20], "hascardin": [9, 10, 20], "cardin": [9, 10, 20], "get_cardin": [9, 10, 20], "non": [9, 10, 20], "neg": [9, 10, 13, 20], "xsdvocabulari": [10, 27], "xsd": [10, 12, 27], "decim": [10, 27], "long": [10, 27], "date_tim": [10, 27], "date_time_stamp": [10, 27], "datetimestamp": [10, 27], "owlfacet": [10, 20, 22, 27], "symbolic_form": [10, 27], "oper": [10, 27], "callabl": [10, 24, 27], "_x": [10, 27], "facet": [10, 20, 27], "min_inclus": [10, 27], "mininclus": [10, 27], "min_exclus": [10, 27], "minexclus": [10, 27], "max_inclus": [10, 27], "maxinclus": [10, 27], "max_exclus": [10, 27], "maxexclus": [10, 27], "length": [10, 27], "min_length": [10, 27], "minlength": [10, 27], "max_length": [10, 27], "maxlength": [10, 27], "pattern": [10, 27], "total_digit": [10, 27], "totaldigit": [10, 27], "fraction_digit": [10, 27], "fractiondigit": [10, 27], "from_str": [10, 27], "modul": 10, "owlannotationobject": [10, 15], "marker": [10, 15, 19], "as_anonymous_individu": [10, 15], "subject": [10, 13, 15, 16], "either": [10, 15, 16, 19], "uri": [10, 15], "owlobjectpropertyexpress": [10, 16, 19, 20, 22], "owlpropertyexpress": [10, 16, 19, 20], "high": [10, 19], "level": [10, 16, 19, 26], "describ": [10, 19], "differ": [10, 19, 24], "get_inverse_properti": [10, 19], "obtain": [10, 19, 20], "invers": [10, 19], "necessarili": [10, 19], "simplest": [10, 19], "get_named_properti": [10, 19], "owlobjectproperti": [10, 19, 22], "p": [10, 19, 20], "inv": [10, 19], "is_object_property_express": [10, 19], "owlproperti": [10, 16, 19], "aren": [10, 19], "t": [10, 16, 19], "By": [10, 19], "definit": [10, 19], "ar": [10, 13, 16, 19, 20], "possibli": [10, 19], "is_data_property_express": [10, 19], "is_owl_top_object_properti": [10, 19], "topobjectproperti": [10, 19], "is_owl_top_data_properti": [10, 19], "topdataproperti": [10, 19], "owldatapropertyexpress": [10, 16, 19, 20], "owldataproperti": [10, 19, 22], "1004": [10, 19], "1002": [10, 19], "owlobjectinverseof": [10, 19], "owlrestrict": [10, 20], "get_properti": [10, 16, 20], "being": [10, 20], "is_data_restrict": [10, 20], "is_object_restrict": [10, 20], "owlobjectallvaluesfrom": [10, 20], "owlquantifiedobjectrestrict": [10, 20, 22], "objectallvaluesfrom": [10, 20], "_properti": [10, 16, 20], "_filler": [10, 20], "3006": [10, 20], "owlobjectsomevaluesfrom": [10, 20], "objectsomevaluesfrom": [10, 20], "3005": [10, 20], "owlquantifiedrestrict": [10, 20], "owlobjectrestrict": [10, 20], "owlhasvaluerestrict": [10, 20], "owldatarestrict": [10, 20], "owlcardinalityrestrict": [10, 20], "_f": [10, 20], "min": [10, 11, 20], "max": [10, 11, 20], "owlobjectmincardin": [10, 20], "owlobjectcardinalityrestrict": [10, 20, 22], "objectmincardin": [10, 20], "_cardin": [10, 20], "3008": [10, 20], "owldataallvaluesfrom": [10, 20], "owlquantifieddatarestrict": [10, 20, 22], "dataallvaluesfrom": [10, 20], "3013": [10, 20], "owlobjecthasself": [10, 20, 22], "objecthasself": [10, 20], "3011": [10, 20], "owlobjectmaxcardin": [10, 20], "objectmaxcardin": [10, 20], "3010": [10, 20], "owlobjectexactcardin": [10, 20], "objectexactcardin": [10, 20], "3009": [10, 20], "as_intersection_of_min_max": [10, 20], "conjunct": [10, 20, 26], "semant": [10, 20], "structur": [10, 20], "simpler": [10, 20], "r": [10, 20], "c": [10, 20, 26], "owldataexactcardin": [10, 20], "owldatacardinalityrestrict": [10, 20, 22], "dataexactcardin": [10, 20], "3016": [10, 20], "d": [10, 20], "owldatamincardin": [10, 20], "datamincardin": [10, 20], "3015": [10, 20], "owldatamaxcardin": [10, 20], "datamaxcardin": [10, 20], "3017": [10, 20], "owldatasomevaluesfrom": [10, 20], "datasomevaluesfrom": [10, 20], "3012": [10, 20], "owldatahasvalu": [10, 20, 22], "datahasvalu": [10, 20], "3014": [10, 20], "as_some_values_from": [10, 20], "conveni": [10, 20], "existenti": [10, 20], "nomin": [10, 20], "simp": [10, 20], "hasvalu": [10, 20], "some": [10, 19, 20], "owldataoneof": [10, 20, 22], "dataoneof": [10, 20], "4003": [10, 20], "oneof": [10, 20], "code": [10, 20], "owlnamedindividu": [10, 13, 17, 22], "owlindividu": [10, 16, 17, 20], "1005": [10, 17], "owlequivalentclassesaxiom": [10, 16], "owlannot": [10, 16], "owlnaryclassaxiom": [10, 16], "equivalentclass": [10, 16], "contains_named_equivalent_class": [10, 16], "contains_owl_noth": [10, 16], "contains_owl_th": [10, 16], "named_class": [10, 16], "owlclassaxiom": [10, 16], "owllogicalaxiom": [10, 16], "owldatapropertydomainaxiom": [10, 16], "property_": [10, 16], "domain": [10, 16], "owlpropertydomainaxiom": [10, 16], "datapropertydomain": [10, 16], "owlaxiom": [10, 16], "ontologi": [10, 16, 21], "contain": [10, 16, 26], "These": [10, 16, 20], "declar": [10, 16], "logic": [10, 16, 22], "_annot": [10, 16], "is_annot": [10, 16], "is_logical_axiom": [10, 16], "is_annotation_axiom": [10, 16], "owldatapropertyrangeaxiom": [10, 16], "range_": [10, 16], "owlpropertyrangeaxiom": [10, 16], "datapropertyrang": [10, 16], "owlobjectpropertydomainaxiom": [10, 16], "objectpropertydomain": [10, 16], "owlobjectpropertyrangeaxiom": [10, 16], "objectpropertyrang": [10, 16], "4001": [10, 25], "owlontologyid": 10, "ontology_iri": 10, "version_iri": 10, "identifi": 10, "sinc": 10, "do": 10, "thei": 10, "option": 10, "also": [10, 16], "version": 10, "instanc": [10, 13, 20, 26], "bundl": 10, "inform": 10, "togeth": 10, "If": [10, 13], "doesn": [10, 16], "we": [10, 22], "sai": 10, "_ontology_iri": 10, "_version_iri": 10, "get_ontology_iri": 10, "get_version_iri": 10, "get_default_document_iri": 10, "default": [10, 22], "represent": [10, 28], "id": 10, "els": 10, "see": 10, "owlimportsdeclar": 10, "import_iri": 10, "statement": 10, "point": 10, "might": 10, "its": [10, 12, 16, 21], "mandat": 10, "exampl": [10, 13, 19, 21], "resolv": 10, "deploi": 10, "url": 10, "owlontologi": 10, "empti": 10, "mai": 10, "need": 10, "cannot": 10, "modifi": 10, "directli": 10, "chang": 10, "must": 10, "appli": 10, "via": 10, "owlontologymanag": 10, "classes_in_signatur": 10, "signatur": 10, "data_properties_in_signatur": 10, "object_properties_in_signatur": 10, "individuals_in_signatur": 10, "equivalent_classes_axiom": 10, "all": [10, 16, 22, 26], "retriev": 10, "general_class_axiom": 10, "subclass": [10, 22], "complex": 10, "sub": [10, 16], "disjointclass": [10, 16], "onli": [10, 13, 16], "data_property_domain_axiom": 10, "where": 10, "match": 10, "search": 10, "data_property_range_axiom": 10, "object_property_domain_axiom": 10, "object_property_range_axiom": 10, "get_owl_ontology_manag": 10, "_m": 10, "manag": 10, "get_ontology_id": 10, "belong": 10, "check": 10, "owlontologychang": 10, "get_ontologi": 10, "wa": 10, "applic": 10, "addimport": 10, "import_declar": 10, "ad": 10, "_ont": 10, "_declar": 10, "get_import_declar": 10, "pertain": 10, "It": [10, 16], "main": 10, "load": 10, "create_ontologi": 10, "new": 10, "newli": 10, "alreadi": 10, "exist": 10, "load_ontologi": 10, "assum": 10, "map": [10, 13], "expect": 10, "although": 10, "api": 10, "toler": 10, "situat": 10, "apply_chang": 10, "just": 10, "one": [10, 19], "through": 10, "implement": [10, 22], "call": 10, "rais": 10, "changeappli": 10, "unsuccessfulli": 10, "successfulli": 10, "add_axiom": 10, "add": 10, "singl": 10, "remove_axiom": 10, "remov": 10, "from": [10, 13, 26], "save_ontologi": 10, "document_iri": 10, "save": 10, "how": 10, "owlreason": 10, "reason": 10, "over": 10, "closur": 10, "particular": [10, 20], "root": [10, 13], "data_property_domain": 10, "pe": 10, "direct": 10, "indirect": 10, "respect": 10, "whose": 10, "let": 10, "equivalent_class": 10, "result": [10, 13, 22, 26], "super_class": [10, 16], "top": [10, 16, 26], "object_property_domain": 10, "object_property_rang": 10, "objectinverseof": [10, 19], "ce": [10, 13, 26], "only_nam": 10, "entail": 10, "unsatisfi": 10, "bottom": 10, "node": [10, 22], "disjoint_class": 10, "disjoint": 10, "strictsubclassof": 10, "different_individu": 10, "ind": 10, "x": [10, 13], "differentindividu": [10, 16], "same_individu": 10, "same": [10, 26], "sameindividu": [10, 16], "equivalent_object_properti": 10, "simplifi": [10, 20], "equivalentobjectproperti": [10, 16], "bottomdataproperti": 10, "equivalent_data_properti": 10, "dp": 10, "equivalentdataproperti": [10, 16], "data_property_valu": 10, "so": [10, 22], "taken": 10, "account": 10, "each": 10, "l": 10, "datapropertyassert": [10, 16], "object_property_valu": 10, "j": 10, "objectpropertyassert": [10, 16], "flush": 10, "ani": 10, "store": 10, "buffer": 10, "caus": 10, "take": 10, "consider": 10, "directclassassert": 10, "classassert": [10, 16], "sub_class": [10, 16], "strict": 10, "potenti": 10, "descend": 10, "directsubclassof": 10, "disjoint_object_properti": 10, "objectpropertycomplementof": 10, "strictsubobjectpropertyof": 10, "disjoint_data_properti": 10, "datapropertycomplementof": 10, "strictsubdatapropertyof": 10, "sub_data_properti": 10, "subproperti": 10, "directsubdatapropertyof": 10, "super_data_properti": 10, "stream": [10, 16], "super": [10, 16], "ancestor": 10, "sub_object_properti": 10, "directsubobjectpropertyof": 10, "bottomobjectproperti": 10, "super_object_properti": 10, "get_root_ontologi": 10, "": [10, 22], "is_isol": 10, "isol": 10, "is_using_triplestor": 10, "triplestor": 10, "owltopobjectproperti": [10, 18], "owlbottomobjectproperti": [10, 18], "owltopdataproperti": [10, 18], "owlbottomdataproperti": [10, 18], "doubleowldatatyp": [10, 18], "integerowldatatyp": [10, 18], "booleanowldatatyp": [10, 18], "stringowldatatyp": [10, 18], "dateowldatatyp": [10, 18], "datetimeowldatatyp": [10, 18], "durationowldatatyp": [10, 18], "topowldatatyp": [10, 18], "numeric_datatyp": [10, 18], "time_datatyp": [10, 18], "constructor": 11, "restriction_liter": 11, "owldatatypemaxexclusiverestrict": 11, "max_": 11, "owldatatyperestrict": [11, 20, 22], "exclus": 11, "owldatatypeminexclusiverestrict": 11, "min_": 11, "owldatatypemaxinclusiverestrict": 11, "inclus": 11, "owldatatypemininclusiverestrict": 11, "owldatatypeminmaxexclusiverestrict": 11, "owldatatypeminmaxinclusiverestrict": 11, "prefix": 12, "_prefix": 12, "_n": 12, "format": 13, "peek": 13, "last": 13, "element": [13, 26], "arrai": 13, "arr": 13, "variablesmap": 13, "helper": 13, "sparql": [13, 14], "convers": 13, "class_cnt": 13, "prop_cnt": 13, "ind_cnt": 13, "dict": 13, "get_vari": 13, "new_individual_vari": 13, "new_property_vari": 13, "__contains__": [13, 26], "item": [13, 26], "__getitem__": [13, 26], "owl2sparqlconvert": 13, "modal_depth": 13, "current_vari": 13, "variabl": 13, "parent": 13, "parent_var": 13, "variable_ent": 13, "cnt": 13, "grouping_var": 13, "having_condit": 13, "root_vari": 13, "named_individu": 13, "queri": 13, "namedindividu": 13, "stack_vari": 13, "var": 13, "stack_par": 13, "process": 13, "new_count_var": 13, "append_tripl": 13, "predic": 13, "object_": [13, 16], "append": 13, "frag": 13, "tripl": 13, "as_queri": 13, "count": [13, 26], "project": 13, "transform": [13, 26], "posit": 13, "problem": 13, "owl_expression_to_sparql": 13, "unclear": 13, "affect": 16, "mean": 16, "exclud": 16, "owlpropertyaxiom": 16, "owlobjectpropertyaxiom": 16, "owldatapropertyaxiom": 16, "owlindividualaxiom": 16, "owldeclarationaxiom": 16, "_entiti": 16, "get_ent": 16, "owldatatypedefinitionaxiom": 16, "datatypedefinit": 16, "_datatyp": 16, "_datarang": 16, "get_datarang": 16, "owlhaskeyaxiom": 16, "property_express": 16, "haskei": 16, "_class_express": 16, "_property_express": 16, "get_class_express": 16, "get_property_express": 16, "owlnaryaxiom": 16, "_c": 16, "two": 16, "more": [16, 20], "could": 16, "multipl": 16, "pairwis": 16, "as_pairwise_axiom": 16, "appear": 16, "itself": 16, "unchang": 16, "owldisjointclassesaxiom": 16, "owlnaryindividualaxiom": 16, "_individu": 16, "owldifferentindividualsaxiom": 16, "owlsameindividualaxiom": 16, "owlnarypropertyaxiom": 16, "_p": 16, "owlequivalentobjectpropertiesaxiom": 16, "owldisjointobjectpropertiesaxiom": 16, "disjointobjectproperti": 16, "owlinverseobjectpropertiesaxiom": 16, "first": 16, "second": 16, "inverseobjectproperti": 16, "_first": 16, "_second": 16, "get_first_properti": 16, "get_second_properti": 16, "owlequivalentdatapropertiesaxiom": 16, "owldisjointdatapropertiesaxiom": 16, "disjointdataproperti": 16, "owlsubclassofaxiom": 16, "subclassof": 16, "_sub_class": 16, "_super_class": 16, "get_sub_class": 16, "get_super_class": 16, "owldisjointunionaxiom": 16, "cls_": 16, "disjointunion": 16, "_cl": 16, "get_owl_class": 16, "get_owl_equivalent_classes_axiom": 16, "get_owl_disjoint_classes_axiom": 16, "owlclassassertionaxiom": 16, "get_individu": 16, "owlannotationproperti": 16, "annotationproperti": 16, "variou": 16, "bind": 16, "_valu": [16, 20], "act": 16, "along": 16, "get_valu": 16, "depend": [16, 26], "upon": 16, "owlanonymousindividu": 16, "owlannotationaxiom": 16, "owlannotationassertionaxiom": 16, "annotationassert": 16, "_subject": 16, "get_subject": 16, "owlsubannotationpropertyofaxiom": 16, "sub_properti": 16, "super_properti": 16, "subannotationpropertyof": 16, "_sub_properti": 16, "_super_properti": 16, "get_sub_properti": 16, "get_super_properti": 16, "owlannotationpropertydomainaxiom": 16, "annotationpropertydomain": 16, "_domain": 16, "get_domain": 16, "owlannotationpropertyrangeaxiom": 16, "annotationpropertyrang": 16, "_rang": 16, "get_rang": 16, "owlsubpropertyaxiom": 16, "owlsubobjectpropertyofaxiom": 16, "subobjectpropertyof": 16, "owlsubdatapropertyofaxiom": 16, "subdatapropertyof": 16, "owlpropertyassertionaxiom": 16, "propertyassert": 16, "_object": 16, "get_object": 16, "owlobjectpropertyassertionaxiom": 16, "owlnegativeobjectpropertyassertionaxiom": 16, "negativeobjectpropertyassert": 16, "owldatapropertyassertionaxiom": 16, "owlnegativedatapropertyassertionaxiom": 16, "negativedatapropertyassert": 16, "owlunarypropertyaxiom": 16, "unari": 16, "owlobjectpropertycharacteristicaxiom": 16, "function": 16, "owlfunctionalobjectpropertyaxiom": 16, "functionalobjectproperti": 16, "owlasymmetricobjectpropertyaxiom": 16, "asymmetricobjectproperti": 16, "owlinversefunctionalobjectpropertyaxiom": 16, "inversefunctionalobjectproperti": 16, "owlirreflexiveobjectpropertyaxiom": 16, "irreflexiveobjectproperti": 16, "owlreflexiveobjectpropertyaxiom": 16, "reflexiveobjectproperti": 16, "owlsymmetricobjectpropertyaxiom": 16, "symmetricobjectproperti": 16, "owltransitiveobjectpropertyaxiom": 16, "transitiveobjectproperti": 16, "owldatapropertycharacteristicaxiom": 16, "owlfunctionaldatapropertyaxiom": 16, "functionaldataproperti": 16, "_r": 16, "refer": 19, "without": 19, "actual": 19, "consid": 19, "haspart": 19, "ispartof": 19, "inverseof": 19, "car": 19, "part": 19, "least": 19, "_inverse_properti": 19, "1003": 19, "get_invers": 19, "owlobjectoneof": [20, 22], "objectoneof": 20, "3004": 20, "exact": 20, "extens": 20, "as_object_union_of": 20, "union": 20, "singleton": 20, "standard": 20, "dl": [20, 24], "a0": 20, "unionof": 20, "owlobjecthasvalu": [20, 22], "objecthasvalu": 20, "_v": [20, 26], "3007": 20, "type_": 20, "facet_restrict": 20, "owlfacetrestrict": [20, 22], "datatyperestrict": 20, "_type": 20, "_facet_restrict": 20, "4006": 20, "get_facet_restrict": 20, "sequenc": 20, "_facet": 20, "_liter": 20, "4007": 20, "get_facet": 20, "get_facet_valu": 20, "owlobjectrender": [21, 24], "set_short_form_provid": [21, 24], "short_form_provid": [21, 24], "configur": [21, 24], "shorten": [21, 24, 26], "dure": [21, 24], "o": [21, 24, 26], "rendit": [21, 24], "owlobjectpars": [21, 22], "parse_express": [21, 22], "expression_str": [21, 22], "etc": 21, "anyth": 21, "__lt__": [21, 26], "manchester_grammar": 22, "manchesterowlsyntaxpars": 22, "grammar": 22, "parsimoni": 22, "nodevisitor": 22, "manchest": [22, 24], "follow": [22, 26], "slot": 22, "visit_union": 22, "children": 22, "visit_intersect": 22, "visit_primari": 22, "visit_some_only_r": 22, "visit_cardinality_r": 22, "visit_value_r": 22, "visit_has_self": 22, "visit_object_properti": 22, "visit_class_express": 22, "visit_individual_list": 22, "visit_data_primari": 22, "visit_data_some_only_r": 22, "visit_data_cardinality_r": 22, "visit_data_value_r": 22, "visit_data_union": 22, "visit_data_intersect": 22, "visit_literal_list": 22, "visit_data_parenthes": 22, "visit_datatype_restrict": 22, "visit_facet_restrict": 22, "visit_liter": 22, "visit_typed_liter": 22, "visit_string_literal_languag": 22, "visit_string_literal_no_languag": 22, "visit_quoted_str": 22, "visit_float_liter": 22, "visit_decimal_liter": 22, "visit_integer_liter": 22, "visit_boolean_liter": 22, "visit_datetime_liter": 22, "visit_duration_liter": 22, "visit_date_liter": 22, "visit_non_negative_integ": 22, "visit_datatype_iri": 22, "visit_datatyp": 22, "visit_facet": 22, "visit_class_iri": 22, "visit_individual_iri": 22, "visit_object_property_iri": 22, "visit_data_property_iri": 22, "visit_iri": 22, "visit_full_iri": 22, "visit_abbreviated_iri": 22, "visit_simple_iri": 22, "visit_parenthes": 22, "generic_visit": 22, "visitor": 22, "re": 22, "visit": 22, "visited_children": 22, "m": 22, "sure": 22, "make": 22, "sens": 22, "across": 22, "even": 22, "most": 22, "leav": 22, "now": 22, "dl_grammar": 22, "dlsyntaxpars": 22, "descript": 22, "dlparser": 22, "manchesterpars": 22, "dl_to_owl_express": 22, "dl_express": 22, "manchester_to_owl_express": 22, "manchester_express": 22, "dlsyntaxobjectrender": 24, "_simple_short_form_provid": 24, "_sfp": 24, "manchesterowlsyntaxowlobjectrender": 24, "no_render_th": 24, "_no_render_th": 24, "dlrender": 24, "manchesterrender": 24, "owl_expression_to_dl": 24, "owl_expression_to_manchest": 24, "orderedowlobject": 26, "_hasindex": 26, "holder": 26, "python": [26, 28], "order": 26, "impl": 26, "recurs": 26, "compon": 26, "_chain": 26, "get_class_nnf": 26, "toplevelcnf": 26, "get_top_level_cnf": 26, "topleveldnf": 26, "disjunct": 26, "get_top_level_dnf": 26, "combine_nary_express": 26, "combin": 26, "nest": 26, "nari": 26, "b": 26, "iter_count": 26, "number": 26, "as_index": 26, "cast": 26, "lrucach": 26, "maxsiz": 26, "_k": 26, "share": 26, "lru": 26, "cach": 26, "adapt": 26, "functool": 26, "lru_cach": 26, "sentinel": 26, "uniqu": 26, "signal": 26, "miss": 26, "prev": 26, "link": 26, "field": 26, "next": 26, "kei": 26, "__setitem__": 26, "cache_info": 26, "report": 26, "statist": 26, "cache_clear": 26, "clear": 26, "subpackag": 28, "submodul": 28, "placehold": 29}, "objects": {"": [[7, 0, 0, "-", "owlapy"]], "owlapy": [[7, 1, 1, "", "__version__"], [0, 0, 0, "-", "_utils"], [2, 0, 0, "-", "class_expression"], [5, 0, 0, "-", "data_ranges"], [6, 0, 0, "-", "has"], [8, 0, 0, "-", "iri"], [9, 0, 0, "-", "meta_classes"], [10, 0, 0, "-", "model"], [12, 0, 0, "-", "namespaces"], [14, 0, 0, "-", "owl2sparql"], [15, 0, 0, "-", "owl_annotation"], [16, 0, 0, "-", "owl_axiom"], [17, 0, 0, "-", "owl_individual"], [18, 0, 0, "-", "owl_literal"], [19, 0, 0, "-", "owl_property"], [20, 0, 0, "-", "owl_restriction"], [21, 0, 0, "-", "owlobject"], [22, 0, 0, "-", "parser"], [23, 0, 0, "-", "ranges"], [24, 0, 0, "-", "render"], [25, 0, 0, "-", "types"], [26, 0, 0, "-", "util"], [27, 0, 0, "-", "vocab"]], "owlapy._utils": [[0, 2, 1, "", "MOVE"]], "owlapy.class_expression": [[2, 3, 1, "", "OWLAnonymousClassExpression"], [2, 3, 1, "", "OWLBooleanClassExpression"], [2, 3, 1, "", "OWLClass"], [2, 3, 1, "", "OWLClassExpression"], [2, 3, 1, "", "OWLNaryBooleanClassExpression"], [2, 1, 1, "", "OWLNothing"], [2, 3, 1, "", "OWLObjectComplementOf"], [2, 3, 1, "", "OWLObjectIntersectionOf"], [2, 3, 1, "", "OWLObjectUnionOf"], [2, 3, 1, "", "OWLRDFVocabulary"], [2, 1, 1, "", "OWLThing"], [1, 0, 0, "-", "class_expression"], [3, 0, 0, "-", "nary_boolean_expression"], [4, 0, 0, "-", "owl_class"]], "owlapy.class_expression.OWLAnonymousClassExpression": [[2, 4, 1, "", "get_nnf"], [2, 4, 1, "", "get_object_complement_of"], [2, 4, 1, "", "is_owl_nothing"], [2, 4, 1, "", "is_owl_thing"]], "owlapy.class_expression.OWLBooleanClassExpression": [[2, 5, 1, "", "__slots__"]], "owlapy.class_expression.OWLClass": [[2, 5, 1, "", "__slots__"], [2, 4, 1, "", "get_iri"], [2, 4, 1, "", "get_nnf"], [2, 4, 1, "", "get_object_complement_of"], [2, 4, 1, "", "is_owl_nothing"], [2, 4, 1, "", "is_owl_thing"], [2, 6, 1, "", "reminder"], [2, 6, 1, "", "str"], [2, 5, 1, "", "type_index"]], "owlapy.class_expression.OWLClassExpression": [[2, 5, 1, "", "__slots__"], [2, 4, 1, "", "get_nnf"], [2, 4, 1, "", "get_object_complement_of"], [2, 4, 1, "", "is_owl_nothing"], [2, 4, 1, "", "is_owl_thing"]], "owlapy.class_expression.OWLNaryBooleanClassExpression": [[2, 4, 1, "", "__eq__"], [2, 4, 1, "", "__hash__"], [2, 4, 1, "", "__repr__"], [2, 5, 1, "", "__slots__"], [2, 4, 1, "", "operands"]], "owlapy.class_expression.OWLObjectComplementOf": [[2, 4, 1, "", "__eq__"], [2, 4, 1, "", "__hash__"], [2, 4, 1, "", "__repr__"], [2, 5, 1, "", "__slots__"], [2, 4, 1, "", "get_operand"], [2, 4, 1, "", "operands"], [2, 5, 1, "", "type_index"]], "owlapy.class_expression.OWLObjectIntersectionOf": [[2, 5, 1, "", "__slots__"], [2, 5, 1, "", "type_index"]], "owlapy.class_expression.OWLObjectUnionOf": [[2, 5, 1, "", "__slots__"], [2, 5, 1, "", "type_index"]], "owlapy.class_expression.OWLRDFVocabulary": [[2, 5, 1, "", "OWL_BOTTOM_DATA_PROPERTY"], [2, 5, 1, "", "OWL_BOTTOM_OBJECT_PROPERTY"], [2, 5, 1, "", "OWL_CLASS"], [2, 5, 1, "", "OWL_NAMED_INDIVIDUAL"], [2, 5, 1, "", "OWL_NOTHING"], [2, 5, 1, "", "OWL_THING"], [2, 5, 1, "", "OWL_TOP_DATA_PROPERTY"], [2, 5, 1, "", "OWL_TOP_OBJECT_PROPERTY"], [2, 5, 1, "", "RDFS_LITERAL"]], "owlapy.class_expression.class_expression": [[1, 3, 1, "", "OWLAnonymousClassExpression"], [1, 3, 1, "", "OWLBooleanClassExpression"], [1, 3, 1, "", "OWLClassExpression"], [1, 3, 1, "", "OWLObjectComplementOf"]], "owlapy.class_expression.class_expression.OWLAnonymousClassExpression": [[1, 4, 1, "", "get_nnf"], [1, 4, 1, "", "get_object_complement_of"], [1, 4, 1, "", "is_owl_nothing"], [1, 4, 1, "", "is_owl_thing"]], "owlapy.class_expression.class_expression.OWLBooleanClassExpression": [[1, 5, 1, "", "__slots__"]], "owlapy.class_expression.class_expression.OWLClassExpression": [[1, 5, 1, "", "__slots__"], [1, 4, 1, "", "get_nnf"], [1, 4, 1, "", "get_object_complement_of"], [1, 4, 1, "", "is_owl_nothing"], [1, 4, 1, "", "is_owl_thing"]], "owlapy.class_expression.class_expression.OWLObjectComplementOf": [[1, 4, 1, "", "__eq__"], [1, 4, 1, "", "__hash__"], [1, 4, 1, "", "__repr__"], [1, 5, 1, "", "__slots__"], [1, 4, 1, "", "get_operand"], [1, 4, 1, "", "operands"], [1, 5, 1, "", "type_index"]], "owlapy.class_expression.nary_boolean_expression": [[3, 3, 1, "", "OWLNaryBooleanClassExpression"], [3, 3, 1, "", "OWLObjectIntersectionOf"], [3, 3, 1, "", "OWLObjectUnionOf"]], "owlapy.class_expression.nary_boolean_expression.OWLNaryBooleanClassExpression": [[3, 4, 1, "", "__eq__"], [3, 4, 1, "", "__hash__"], [3, 4, 1, "", "__repr__"], [3, 5, 1, "", "__slots__"], [3, 4, 1, "", "operands"]], "owlapy.class_expression.nary_boolean_expression.OWLObjectIntersectionOf": [[3, 5, 1, "", "__slots__"], [3, 5, 1, "", "type_index"]], "owlapy.class_expression.nary_boolean_expression.OWLObjectUnionOf": [[3, 5, 1, "", "__slots__"], [3, 5, 1, "", "type_index"]], "owlapy.class_expression.owl_class": [[4, 3, 1, "", "OWLClass"]], "owlapy.class_expression.owl_class.OWLClass": [[4, 5, 1, "", "__slots__"], [4, 4, 1, "", "get_iri"], [4, 4, 1, "", "get_nnf"], [4, 4, 1, "", "get_object_complement_of"], [4, 4, 1, "", "is_owl_nothing"], [4, 4, 1, "", "is_owl_thing"], [4, 6, 1, "", "reminder"], [4, 6, 1, "", "str"], [4, 5, 1, "", "type_index"]], "owlapy.data_ranges": [[5, 3, 1, "", "HasOperands"], [5, 3, 1, "", "IRI"], [5, 3, 1, "", "OWLDataComplementOf"], [5, 3, 1, "", "OWLDataIntersectionOf"], [5, 3, 1, "", "OWLDataRange"], [5, 3, 1, "", "OWLDataUnionOf"], [5, 3, 1, "", "OWLEntity"], [5, 3, 1, "", "OWLLiteral"], [5, 3, 1, "", "OWLNaryDataRange"], [5, 3, 1, "", "OWLObject"], [5, 3, 1, "", "OWLPropertyRange"]], "owlapy.data_ranges.HasOperands": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "operands"]], "owlapy.data_ranges.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.data_ranges.OWLDataComplementOf": [[5, 4, 1, "", "__eq__"], [5, 4, 1, "", "__hash__"], [5, 4, 1, "", "__repr__"], [5, 4, 1, "", "get_data_range"], [5, 5, 1, "", "type_index"]], "owlapy.data_ranges.OWLDataIntersectionOf": [[5, 5, 1, "", "__slots__"], [5, 5, 1, "", "type_index"]], "owlapy.data_ranges.OWLDataUnionOf": [[5, 5, 1, "", "__slots__"], [5, 5, 1, "", "type_index"]], "owlapy.data_ranges.OWLEntity": [[5, 5, 1, "", "__slots__"], [5, 4, 1, "", "is_anonymous"], [5, 4, 1, "", "to_string_id"]], "owlapy.data_ranges.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.data_ranges.OWLNaryDataRange": [[5, 4, 1, "", "__eq__"], [5, 4, 1, "", "__hash__"], [5, 4, 1, "", "__repr__"], [5, 5, 1, "", "__slots__"], [5, 4, 1, "", "operands"]], "owlapy.data_ranges.OWLObject": [[5, 4, 1, "", "__eq__"], [5, 4, 1, "", "__hash__"], [5, 4, 1, "", "__repr__"], [5, 5, 1, "", "__slots__"], [5, 4, 1, "", "is_anonymous"]], "owlapy.has": [[6, 3, 1, "", "HasIndex"]], "owlapy.has.HasIndex": [[6, 4, 1, "", "__eq__"], [6, 5, 1, "", "type_index"]], "owlapy.iri": [[8, 3, 1, "", "IRI"]], "owlapy.iri.IRI": [[8, 4, 1, "", "__eq__"], [8, 4, 1, "", "__hash__"], [8, 4, 1, "", "__repr__"], [8, 5, 1, "", "__slots__"], [8, 4, 1, "", "as_iri"], [8, 4, 1, "", "as_str"], [8, 4, 1, "", "create"], [8, 4, 1, "", "get_namespace"], [8, 4, 1, "", "get_remainder"], [8, 4, 1, "", "get_short_form"], [8, 4, 1, "", "is_nothing"], [8, 4, 1, "", "is_reserved_vocabulary"], [8, 4, 1, "", "is_thing"], [8, 6, 1, "", "reminder"], [8, 6, 1, "", "str"], [8, 5, 1, "", "type_index"]], "owlapy.meta_classes": [[9, 3, 1, "", "HasCardinality"], [9, 3, 1, "", "HasFiller"], [9, 3, 1, "", "HasIRI"], [9, 3, 1, "", "HasOperands"]], "owlapy.meta_classes.HasCardinality": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_cardinality"]], "owlapy.meta_classes.HasFiller": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_filler"]], "owlapy.meta_classes.HasIRI": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "get_iri"]], "owlapy.meta_classes.HasOperands": [[9, 5, 1, "", "__slots__"], [9, 4, 1, "", "operands"]], "owlapy.model": [[10, 3, 1, "", "AddImport"], [10, 1, 1, "", "BooleanOWLDatatype"], [10, 1, 1, "", "DateOWLDatatype"], [10, 1, 1, "", "DateTimeOWLDatatype"], [10, 1, 1, "", "DoubleOWLDatatype"], [10, 1, 1, "", "DurationOWLDatatype"], [10, 3, 1, "", "HasCardinality"], [10, 3, 1, "", "HasFiller"], [10, 3, 1, "", "HasIRI"], [10, 3, 1, "", "HasIndex"], [10, 3, 1, "", "HasOperands"], [10, 3, 1, "", "IRI"], [10, 1, 1, "", "IntegerOWLDatatype"], [10, 1, 1, "", "Literals"], [10, 2, 1, "", "MOVE"], [10, 1, 1, "", "NUMERIC_DATATYPES"], [10, 3, 1, "", "OWLAnnotationObject"], [10, 3, 1, "", "OWLAnnotationSubject"], [10, 3, 1, "", "OWLAnnotationValue"], [10, 3, 1, "", "OWLAxiom"], [10, 1, 1, "", "OWLBottomDataProperty"], [10, 1, 1, "", "OWLBottomObjectProperty"], [10, 3, 1, "", "OWLCardinalityRestriction"], [10, 3, 1, "", "OWLClass"], [10, 3, 1, "", "OWLClassAxiom"], [10, 3, 1, "", "OWLClassExpression"], [10, 3, 1, "", "OWLDataAllValuesFrom"], [10, 3, 1, "", "OWLDataCardinalityRestriction"], [10, 3, 1, "", "OWLDataExactCardinality"], [10, 3, 1, "", "OWLDataHasValue"], [10, 3, 1, "", "OWLDataMaxCardinality"], [10, 3, 1, "", "OWLDataMinCardinality"], [10, 3, 1, "", "OWLDataOneOf"], [10, 3, 1, "", "OWLDataProperty"], [10, 3, 1, "", "OWLDataPropertyDomainAxiom"], [10, 3, 1, "", "OWLDataPropertyExpression"], [10, 3, 1, "", "OWLDataPropertyRangeAxiom"], [10, 3, 1, "", "OWLDataRange"], [10, 3, 1, "", "OWLDataRestriction"], [10, 3, 1, "", "OWLDataSomeValuesFrom"], [10, 3, 1, "", "OWLDatatype"], [10, 3, 1, "", "OWLEntity"], [10, 3, 1, "", "OWLEquivalentClassesAxiom"], [10, 3, 1, "", "OWLFacet"], [10, 3, 1, "", "OWLHasValueRestriction"], [10, 3, 1, "", "OWLImportsDeclaration"], [10, 3, 1, "", "OWLIndividual"], [10, 3, 1, "", "OWLLiteral"], [10, 3, 1, "", "OWLNamedIndividual"], [10, 3, 1, "", "OWLNaryBooleanClassExpression"], [10, 1, 1, "", "OWLNothing"], [10, 3, 1, "", "OWLObject"], [10, 3, 1, "", "OWLObjectAllValuesFrom"], [10, 3, 1, "", "OWLObjectCardinalityRestriction"], [10, 3, 1, "", "OWLObjectComplementOf"], [10, 3, 1, "", "OWLObjectExactCardinality"], [10, 3, 1, "", "OWLObjectHasSelf"], [10, 3, 1, "", "OWLObjectIntersectionOf"], [10, 3, 1, "", "OWLObjectMaxCardinality"], [10, 3, 1, "", "OWLObjectMinCardinality"], [10, 3, 1, "", "OWLObjectProperty"], [10, 3, 1, "", "OWLObjectPropertyDomainAxiom"], [10, 3, 1, "", "OWLObjectPropertyExpression"], [10, 3, 1, "", "OWLObjectPropertyRangeAxiom"], [10, 3, 1, "", "OWLObjectRestriction"], [10, 3, 1, "", "OWLObjectSomeValuesFrom"], [10, 3, 1, "", "OWLObjectUnionOf"], [10, 3, 1, "", "OWLOntology"], [10, 3, 1, "", "OWLOntologyChange"], [10, 3, 1, "", "OWLOntologyID"], [10, 3, 1, "", "OWLOntologyManager"], [10, 3, 1, "", "OWLProperty"], [10, 3, 1, "", "OWLPropertyExpression"], [10, 3, 1, "", "OWLPropertyRange"], [10, 3, 1, "", "OWLQuantifiedDataRestriction"], [10, 3, 1, "", "OWLQuantifiedObjectRestriction"], [10, 3, 1, "", "OWLQuantifiedRestriction"], [10, 3, 1, "", "OWLRDFVocabulary"], [10, 3, 1, "", "OWLReasoner"], [10, 3, 1, "", "OWLRestriction"], [10, 1, 1, "", "OWLThing"], [10, 1, 1, "", "OWLTopDataProperty"], [10, 1, 1, "", "OWLTopObjectProperty"], [10, 1, 1, "", "StringOWLDatatype"], [10, 1, 1, "", "TIME_DATATYPES"], [10, 1, 1, "", "TopOWLDatatype"], [10, 3, 1, "", "XSDVocabulary"], [11, 0, 0, "-", "providers"]], "owlapy.model.AddImport": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "get_import_declaration"]], "owlapy.model.HasCardinality": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "get_cardinality"]], "owlapy.model.HasFiller": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "get_filler"]], "owlapy.model.HasIRI": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "get_iri"]], "owlapy.model.HasIndex": [[10, 4, 1, "", "__eq__"], [10, 5, 1, "", "type_index"]], "owlapy.model.HasOperands": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "operands"]], "owlapy.model.IRI": [[10, 4, 1, "", "__eq__"], [10, 4, 1, "", "__hash__"], [10, 4, 1, "", "__repr__"], [10, 5, 1, "", "__slots__"], [10, 4, 1, "", "as_iri"], [10, 4, 1, "", "as_str"], [10, 4, 1, "", "create"], [10, 4, 1, "", "get_namespace"], [10, 4, 1, "", "get_remainder"], [10, 4, 1, "", "get_short_form"], [10, 4, 1, "", "is_nothing"], [10, 4, 1, "", "is_reserved_vocabulary"], [10, 4, 1, "", "is_thing"], [10, 6, 1, "", "reminder"], [10, 6, 1, "", "str"], [10, 5, 1, "", "type_index"]], "owlapy.model.OWLAnnotationObject": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "as_anonymous_individual"], [10, 4, 1, "", "as_iri"]], "owlapy.model.OWLAnnotationSubject": [[10, 5, 1, "", "__slots__"]], "owlapy.model.OWLAnnotationValue": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "as_literal"], [10, 4, 1, "", "is_literal"]], "owlapy.model.OWLAxiom": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "annotations"], [10, 4, 1, "", "is_annotated"], [10, 4, 1, "", "is_annotation_axiom"], [10, 4, 1, "", "is_logical_axiom"]], "owlapy.model.OWLCardinalityRestriction": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "get_cardinality"], [10, 4, 1, "", "get_filler"]], "owlapy.model.OWLClass": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "get_iri"], [10, 4, 1, "", "get_nnf"], [10, 4, 1, "", "get_object_complement_of"], [10, 4, 1, "", "is_owl_nothing"], [10, 4, 1, "", "is_owl_thing"], [10, 6, 1, "", "reminder"], [10, 6, 1, "", "str"], [10, 5, 1, "", "type_index"]], "owlapy.model.OWLClassAxiom": [[10, 5, 1, "", "__slots__"]], "owlapy.model.OWLClassExpression": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "get_nnf"], [10, 4, 1, "", "get_object_complement_of"], [10, 4, 1, "", "is_owl_nothing"], [10, 4, 1, "", "is_owl_thing"]], "owlapy.model.OWLDataAllValuesFrom": [[10, 4, 1, "", "__eq__"], [10, 4, 1, "", "__hash__"], [10, 4, 1, "", "__repr__"], [10, 5, 1, "", "__slots__"], [10, 4, 1, "", "get_property"], [10, 5, 1, "", "type_index"]], "owlapy.model.OWLDataCardinalityRestriction": [[10, 4, 1, "", "__eq__"], [10, 4, 1, "", "__hash__"], [10, 4, 1, "", "__repr__"], [10, 5, 1, "", "__slots__"], [10, 4, 1, "", "get_property"]], "owlapy.model.OWLDataExactCardinality": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "as_intersection_of_min_max"], [10, 5, 1, "", "type_index"]], "owlapy.model.OWLDataHasValue": [[10, 4, 1, "", "__eq__"], [10, 4, 1, "", "__hash__"], [10, 4, 1, "", "__repr__"], [10, 5, 1, "", "__slots__"], [10, 4, 1, "", "as_some_values_from"], [10, 4, 1, "", "get_property"], [10, 5, 1, "", "type_index"]], "owlapy.model.OWLDataMaxCardinality": [[10, 5, 1, "", "__slots__"], [10, 5, 1, "", "type_index"]], "owlapy.model.OWLDataMinCardinality": [[10, 5, 1, "", "__slots__"], [10, 5, 1, "", "type_index"]], "owlapy.model.OWLDataOneOf": [[10, 4, 1, "", "__eq__"], [10, 4, 1, "", "__hash__"], [10, 4, 1, "", "__repr__"], [10, 4, 1, "", "operands"], [10, 5, 1, "", "type_index"], [10, 4, 1, "", "values"]], "owlapy.model.OWLDataProperty": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "get_iri"], [10, 4, 1, "", "is_owl_top_data_property"], [10, 5, 1, "", "type_index"]], "owlapy.model.OWLDataPropertyDomainAxiom": [[10, 5, 1, "", "__slots__"]], "owlapy.model.OWLDataPropertyExpression": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "is_data_property_expression"]], "owlapy.model.OWLDataPropertyRangeAxiom": [[10, 5, 1, "", "__slots__"]], "owlapy.model.OWLDataRestriction": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "is_data_restriction"]], "owlapy.model.OWLDataSomeValuesFrom": [[10, 4, 1, "", "__eq__"], [10, 4, 1, "", "__hash__"], [10, 4, 1, "", "__repr__"], [10, 5, 1, "", "__slots__"], [10, 4, 1, "", "get_property"], [10, 5, 1, "", "type_index"]], "owlapy.model.OWLDatatype": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "get_iri"], [10, 5, 1, "", "type_index"]], "owlapy.model.OWLEntity": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "is_anonymous"], [10, 4, 1, "", "to_string_id"]], "owlapy.model.OWLEquivalentClassesAxiom": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "contains_named_equivalent_class"], [10, 4, 1, "", "contains_owl_nothing"], [10, 4, 1, "", "contains_owl_thing"], [10, 4, 1, "", "named_classes"]], "owlapy.model.OWLFacet": [[10, 5, 1, "", "FRACTION_DIGITS"], [10, 5, 1, "", "LENGTH"], [10, 5, 1, "", "MAX_EXCLUSIVE"], [10, 5, 1, "", "MAX_INCLUSIVE"], [10, 5, 1, "", "MAX_LENGTH"], [10, 5, 1, "", "MIN_EXCLUSIVE"], [10, 5, 1, "", "MIN_INCLUSIVE"], [10, 5, 1, "", "MIN_LENGTH"], [10, 5, 1, "", "PATTERN"], [10, 5, 1, "", "TOTAL_DIGITS"], [10, 4, 1, "", "from_str"], [10, 6, 1, "", "operator"], [10, 6, 1, "", "symbolic_form"]], "owlapy.model.OWLHasValueRestriction": [[10, 4, 1, "", "__eq__"], [10, 4, 1, "", "__hash__"], [10, 5, 1, "", "__slots__"], [10, 4, 1, "", "get_filler"]], "owlapy.model.OWLImportsDeclaration": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "get_iri"]], "owlapy.model.OWLIndividual": [[10, 5, 1, "", "__slots__"]], "owlapy.model.OWLLiteral": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "as_literal"], [10, 4, 1, "", "get_datatype"], [10, 4, 1, "", "get_literal"], [10, 4, 1, "", "is_boolean"], [10, 4, 1, "", "is_date"], [10, 4, 1, "", "is_datetime"], [10, 4, 1, "", "is_double"], [10, 4, 1, "", "is_duration"], [10, 4, 1, "", "is_integer"], [10, 4, 1, "", "is_literal"], [10, 4, 1, "", "is_string"], [10, 4, 1, "", "parse_boolean"], [10, 4, 1, "", "parse_date"], [10, 4, 1, "", "parse_datetime"], [10, 4, 1, "", "parse_double"], [10, 4, 1, "", "parse_duration"], [10, 4, 1, "", "parse_integer"], [10, 4, 1, "", "parse_string"], [10, 4, 1, "", "to_python"], [10, 5, 1, "", "type_index"]], "owlapy.model.OWLNamedIndividual": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "get_iri"], [10, 6, 1, "", "iri"], [10, 6, 1, "", "str"], [10, 5, 1, "", "type_index"]], "owlapy.model.OWLNaryBooleanClassExpression": [[10, 4, 1, "", "__eq__"], [10, 4, 1, "", "__hash__"], [10, 4, 1, "", "__repr__"], [10, 5, 1, "", "__slots__"], [10, 4, 1, "", "operands"]], "owlapy.model.OWLObject": [[10, 4, 1, "", "__eq__"], [10, 4, 1, "", "__hash__"], [10, 4, 1, "", "__repr__"], [10, 5, 1, "", "__slots__"], [10, 4, 1, "", "is_anonymous"]], "owlapy.model.OWLObjectAllValuesFrom": [[10, 4, 1, "", "__eq__"], [10, 4, 1, "", "__hash__"], [10, 4, 1, "", "__repr__"], [10, 5, 1, "", "__slots__"], [10, 4, 1, "", "get_property"], [10, 5, 1, "", "type_index"]], "owlapy.model.OWLObjectCardinalityRestriction": [[10, 4, 1, "", "__eq__"], [10, 4, 1, "", "__hash__"], [10, 4, 1, "", "__repr__"], [10, 5, 1, "", "__slots__"], [10, 4, 1, "", "get_property"]], "owlapy.model.OWLObjectComplementOf": [[10, 4, 1, "", "__eq__"], [10, 4, 1, "", "__hash__"], [10, 4, 1, "", "__repr__"], [10, 5, 1, "", "__slots__"], [10, 4, 1, "", "get_operand"], [10, 4, 1, "", "operands"], [10, 5, 1, "", "type_index"]], "owlapy.model.OWLObjectExactCardinality": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "as_intersection_of_min_max"], [10, 5, 1, "", "type_index"]], "owlapy.model.OWLObjectHasSelf": [[10, 4, 1, "", "__eq__"], [10, 4, 1, "", "__hash__"], [10, 4, 1, "", "__repr__"], [10, 5, 1, "", "__slots__"], [10, 4, 1, "", "get_property"], [10, 5, 1, "", "type_index"]], "owlapy.model.OWLObjectIntersectionOf": [[10, 5, 1, "", "__slots__"], [10, 5, 1, "", "type_index"]], "owlapy.model.OWLObjectMaxCardinality": [[10, 5, 1, "", "__slots__"], [10, 5, 1, "", "type_index"]], "owlapy.model.OWLObjectMinCardinality": [[10, 5, 1, "", "__slots__"], [10, 5, 1, "", "type_index"]], "owlapy.model.OWLObjectProperty": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "get_inverse_property"], [10, 4, 1, "", "get_iri"], [10, 4, 1, "", "get_named_property"], [10, 6, 1, "", "iri"], [10, 4, 1, "", "is_owl_top_object_property"], [10, 6, 1, "", "str"], [10, 5, 1, "", "type_index"]], "owlapy.model.OWLObjectPropertyDomainAxiom": [[10, 5, 1, "", "__slots__"]], "owlapy.model.OWLObjectPropertyExpression": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "get_inverse_property"], [10, 4, 1, "", "get_named_property"], [10, 4, 1, "", "is_object_property_expression"]], "owlapy.model.OWLObjectPropertyRangeAxiom": [[10, 5, 1, "", "__slots__"]], "owlapy.model.OWLObjectRestriction": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "get_property"], [10, 4, 1, "", "is_object_restriction"]], "owlapy.model.OWLObjectSomeValuesFrom": [[10, 4, 1, "", "__eq__"], [10, 4, 1, "", "__hash__"], [10, 4, 1, "", "__repr__"], [10, 5, 1, "", "__slots__"], [10, 4, 1, "", "get_property"], [10, 5, 1, "", "type_index"]], "owlapy.model.OWLObjectUnionOf": [[10, 5, 1, "", "__slots__"], [10, 5, 1, "", "type_index"]], "owlapy.model.OWLOntology": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "classes_in_signature"], [10, 4, 1, "", "data_properties_in_signature"], [10, 4, 1, "", "data_property_domain_axioms"], [10, 4, 1, "", "data_property_range_axioms"], [10, 4, 1, "", "equivalent_classes_axioms"], [10, 4, 1, "", "general_class_axioms"], [10, 4, 1, "", "get_ontology_id"], [10, 4, 1, "", "get_owl_ontology_manager"], [10, 4, 1, "", "individuals_in_signature"], [10, 4, 1, "", "is_anonymous"], [10, 4, 1, "", "object_properties_in_signature"], [10, 4, 1, "", "object_property_domain_axioms"], [10, 4, 1, "", "object_property_range_axioms"], [10, 5, 1, "", "type_index"]], "owlapy.model.OWLOntologyChange": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "get_ontology"]], "owlapy.model.OWLOntologyID": [[10, 4, 1, "", "__eq__"], [10, 4, 1, "", "__repr__"], [10, 5, 1, "", "__slots__"], [10, 4, 1, "", "get_default_document_iri"], [10, 4, 1, "", "get_ontology_iri"], [10, 4, 1, "", "get_version_iri"], [10, 4, 1, "", "is_anonymous"]], "owlapy.model.OWLOntologyManager": [[10, 4, 1, "", "add_axiom"], [10, 4, 1, "", "apply_change"], [10, 4, 1, "", "create_ontology"], [10, 4, 1, "", "load_ontology"], [10, 4, 1, "", "remove_axiom"], [10, 4, 1, "", "save_ontology"]], "owlapy.model.OWLProperty": [[10, 5, 1, "", "__slots__"]], "owlapy.model.OWLPropertyExpression": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "is_data_property_expression"], [10, 4, 1, "", "is_object_property_expression"], [10, 4, 1, "", "is_owl_top_data_property"], [10, 4, 1, "", "is_owl_top_object_property"]], "owlapy.model.OWLQuantifiedDataRestriction": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "get_filler"]], "owlapy.model.OWLQuantifiedObjectRestriction": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "get_filler"]], "owlapy.model.OWLQuantifiedRestriction": [[10, 5, 1, "", "__slots__"]], "owlapy.model.OWLRDFVocabulary": [[10, 5, 1, "", "OWL_BOTTOM_DATA_PROPERTY"], [10, 5, 1, "", "OWL_BOTTOM_OBJECT_PROPERTY"], [10, 5, 1, "", "OWL_CLASS"], [10, 5, 1, "", "OWL_NAMED_INDIVIDUAL"], [10, 5, 1, "", "OWL_NOTHING"], [10, 5, 1, "", "OWL_THING"], [10, 5, 1, "", "OWL_TOP_DATA_PROPERTY"], [10, 5, 1, "", "OWL_TOP_OBJECT_PROPERTY"], [10, 5, 1, "", "RDFS_LITERAL"]], "owlapy.model.OWLReasoner": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "data_property_domains"], [10, 4, 1, "", "data_property_values"], [10, 4, 1, "", "different_individuals"], [10, 4, 1, "", "disjoint_classes"], [10, 4, 1, "", "disjoint_data_properties"], [10, 4, 1, "", "disjoint_object_properties"], [10, 4, 1, "", "equivalent_classes"], [10, 4, 1, "", "equivalent_data_properties"], [10, 4, 1, "", "equivalent_object_properties"], [10, 4, 1, "", "flush"], [10, 4, 1, "", "get_root_ontology"], [10, 4, 1, "", "instances"], [10, 4, 1, "", "is_isolated"], [10, 4, 1, "", "is_using_triplestore"], [10, 4, 1, "", "object_property_domains"], [10, 4, 1, "", "object_property_ranges"], [10, 4, 1, "", "object_property_values"], [10, 4, 1, "", "same_individuals"], [10, 4, 1, "", "sub_classes"], [10, 4, 1, "", "sub_data_properties"], [10, 4, 1, "", "sub_object_properties"], [10, 4, 1, "", "super_classes"], [10, 4, 1, "", "super_data_properties"], [10, 4, 1, "", "super_object_properties"], [10, 4, 1, "", "types"]], "owlapy.model.OWLRestriction": [[10, 5, 1, "", "__slots__"], [10, 4, 1, "", "get_property"], [10, 4, 1, "", "is_data_restriction"], [10, 4, 1, "", "is_object_restriction"]], "owlapy.model.XSDVocabulary": [[10, 5, 1, "", "BOOLEAN"], [10, 5, 1, "", "DATE"], [10, 5, 1, "", "DATE_TIME"], [10, 5, 1, "", "DATE_TIME_STAMP"], [10, 5, 1, "", "DECIMAL"], [10, 5, 1, "", "DOUBLE"], [10, 5, 1, "", "DURATION"], [10, 5, 1, "", "FLOAT"], [10, 5, 1, "", "INTEGER"], [10, 5, 1, "", "LONG"], [10, 5, 1, "", "STRING"]], "owlapy.model.providers": [[11, 2, 1, "", "OWLDatatypeMaxExclusiveRestriction"], [11, 2, 1, "", "OWLDatatypeMaxInclusiveRestriction"], [11, 2, 1, "", "OWLDatatypeMinExclusiveRestriction"], [11, 2, 1, "", "OWLDatatypeMinInclusiveRestriction"], [11, 2, 1, "", "OWLDatatypeMinMaxExclusiveRestriction"], [11, 2, 1, "", "OWLDatatypeMinMaxInclusiveRestriction"], [11, 1, 1, "", "Restriction_Literals"]], "owlapy.namespaces": [[12, 3, 1, "", "Namespaces"], [12, 1, 1, "", "OWL"], [12, 1, 1, "", "RDF"], [12, 1, 1, "", "RDFS"], [12, 1, 1, "", "XSD"]], "owlapy.namespaces.Namespaces": [[12, 4, 1, "", "__eq__"], [12, 4, 1, "", "__hash__"], [12, 4, 1, "", "__repr__"], [12, 5, 1, "", "__slots__"], [12, 6, 1, "", "ns"], [12, 6, 1, "", "prefix"]], "owlapy.owl2sparql": [[13, 0, 0, "-", "converter"]], "owlapy.owl2sparql.converter": [[13, 3, 1, "", "Owl2SparqlConverter"], [13, 3, 1, "", "VariablesMapping"], [13, 1, 1, "", "converter"], [13, 2, 1, "", "owl_expression_to_sparql"], [13, 2, 1, "", "peek"]], "owlapy.owl2sparql.converter.Owl2SparqlConverter": [[13, 5, 1, "", "__slots__"], [13, 4, 1, "", "append"], [13, 4, 1, "", "append_triple"], [13, 4, 1, "", "as_query"], [13, 5, 1, "", "ce"], [13, 5, 1, "", "cnt"], [13, 4, 1, "", "convert"], [13, 6, 1, "", "current_variable"], [13, 5, 1, "", "grouping_vars"], [13, 5, 1, "", "having_conditions"], [13, 5, 1, "", "mapping"], [13, 6, 1, "", "modal_depth"], [13, 4, 1, "", "new_count_var"], [13, 5, 1, "", "parent"], [13, 5, 1, "", "parent_var"], [13, 4, 1, "", "process"], [13, 5, 1, "", "properties"], [13, 4, 1, "", "render"], [13, 5, 1, "", "sparql"], [13, 4, 1, "", "stack_parent"], [13, 4, 1, "", "stack_variable"], [13, 4, 1, "", "triple"], [13, 5, 1, "", "variable_entities"], [13, 5, 1, "", "variables"]], "owlapy.owl2sparql.converter.VariablesMapping": [[13, 4, 1, "", "__contains__"], [13, 4, 1, "", "__getitem__"], [13, 5, 1, "", "__slots__"], [13, 4, 1, "", "get_variable"], [13, 4, 1, "", "new_individual_variable"], [13, 4, 1, "", "new_property_variable"]], "owlapy.owl_annotation": [[15, 3, 1, "", "OWLAnnotationObject"], [15, 3, 1, "", "OWLAnnotationSubject"], [15, 3, 1, "", "OWLAnnotationValue"]], "owlapy.owl_annotation.OWLAnnotationObject": [[15, 5, 1, "", "__slots__"], [15, 4, 1, "", "as_anonymous_individual"], [15, 4, 1, "", "as_iri"]], "owlapy.owl_annotation.OWLAnnotationSubject": [[15, 5, 1, "", "__slots__"]], "owlapy.owl_annotation.OWLAnnotationValue": [[15, 5, 1, "", "__slots__"], [15, 4, 1, "", "as_literal"], [15, 4, 1, "", "is_literal"]], "owlapy.owl_axiom": [[16, 3, 1, "", "OWLAnnotation"], [16, 3, 1, "", "OWLAnnotationAssertionAxiom"], [16, 3, 1, "", "OWLAnnotationAxiom"], [16, 3, 1, "", "OWLAnnotationProperty"], [16, 3, 1, "", "OWLAnnotationPropertyDomainAxiom"], [16, 3, 1, "", "OWLAnnotationPropertyRangeAxiom"], [16, 3, 1, "", "OWLAsymmetricObjectPropertyAxiom"], [16, 3, 1, "", "OWLAxiom"], [16, 3, 1, "", "OWLClassAssertionAxiom"], [16, 3, 1, "", "OWLClassAxiom"], [16, 3, 1, "", "OWLDataPropertyAssertionAxiom"], [16, 3, 1, "", "OWLDataPropertyAxiom"], [16, 3, 1, "", "OWLDataPropertyCharacteristicAxiom"], [16, 3, 1, "", "OWLDataPropertyDomainAxiom"], [16, 3, 1, "", "OWLDataPropertyRangeAxiom"], [16, 3, 1, "", "OWLDatatypeDefinitionAxiom"], [16, 3, 1, "", "OWLDeclarationAxiom"], [16, 3, 1, "", "OWLDifferentIndividualsAxiom"], [16, 3, 1, "", "OWLDisjointClassesAxiom"], [16, 3, 1, "", "OWLDisjointDataPropertiesAxiom"], [16, 3, 1, "", "OWLDisjointObjectPropertiesAxiom"], [16, 3, 1, "", "OWLDisjointUnionAxiom"], [16, 3, 1, "", "OWLEquivalentClassesAxiom"], [16, 3, 1, "", "OWLEquivalentDataPropertiesAxiom"], [16, 3, 1, "", "OWLEquivalentObjectPropertiesAxiom"], [16, 3, 1, "", "OWLFunctionalDataPropertyAxiom"], [16, 3, 1, "", "OWLFunctionalObjectPropertyAxiom"], [16, 3, 1, "", "OWLHasKeyAxiom"], [16, 3, 1, "", "OWLIndividualAxiom"], [16, 3, 1, "", "OWLInverseFunctionalObjectPropertyAxiom"], [16, 3, 1, "", "OWLInverseObjectPropertiesAxiom"], [16, 3, 1, "", "OWLIrreflexiveObjectPropertyAxiom"], [16, 3, 1, "", "OWLLogicalAxiom"], [16, 3, 1, "", "OWLNaryAxiom"], [16, 3, 1, "", "OWLNaryClassAxiom"], [16, 3, 1, "", "OWLNaryIndividualAxiom"], [16, 3, 1, "", "OWLNaryPropertyAxiom"], [16, 3, 1, "", "OWLNegativeDataPropertyAssertionAxiom"], [16, 3, 1, "", "OWLNegativeObjectPropertyAssertionAxiom"], [16, 3, 1, "", "OWLObjectPropertyAssertionAxiom"], [16, 3, 1, "", "OWLObjectPropertyAxiom"], [16, 3, 1, "", "OWLObjectPropertyCharacteristicAxiom"], [16, 3, 1, "", "OWLObjectPropertyDomainAxiom"], [16, 3, 1, "", "OWLObjectPropertyRangeAxiom"], [16, 3, 1, "", "OWLPropertyAssertionAxiom"], [16, 3, 1, "", "OWLPropertyAxiom"], [16, 3, 1, "", "OWLPropertyDomainAxiom"], [16, 3, 1, "", "OWLPropertyRangeAxiom"], [16, 3, 1, "", "OWLReflexiveObjectPropertyAxiom"], [16, 3, 1, "", "OWLSameIndividualAxiom"], [16, 3, 1, "", "OWLSubAnnotationPropertyOfAxiom"], [16, 3, 1, "", "OWLSubClassOfAxiom"], [16, 3, 1, "", "OWLSubDataPropertyOfAxiom"], [16, 3, 1, "", "OWLSubObjectPropertyOfAxiom"], [16, 3, 1, "", "OWLSubPropertyAxiom"], [16, 3, 1, "", "OWLSymmetricObjectPropertyAxiom"], [16, 3, 1, "", "OWLTransitiveObjectPropertyAxiom"], [16, 3, 1, "", "OWLUnaryPropertyAxiom"]], "owlapy.owl_axiom.OWLAnnotation": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_property"], [16, 4, 1, "", "get_value"]], "owlapy.owl_axiom.OWLAnnotationAssertionAxiom": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_property"], [16, 4, 1, "", "get_subject"], [16, 4, 1, "", "get_value"]], "owlapy.owl_axiom.OWLAnnotationAxiom": [[16, 5, 1, "", "__slots__"], [16, 4, 1, "", "is_annotation_axiom"]], "owlapy.owl_axiom.OWLAnnotationProperty": [[16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_iri"]], "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_domain"], [16, 4, 1, "", "get_property"]], "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_property"], [16, 4, 1, "", "get_range"]], "owlapy.owl_axiom.OWLAsymmetricObjectPropertyAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLAxiom": [[16, 5, 1, "", "__slots__"], [16, 4, 1, "", "annotations"], [16, 4, 1, "", "is_annotated"], [16, 4, 1, "", "is_annotation_axiom"], [16, 4, 1, "", "is_logical_axiom"]], "owlapy.owl_axiom.OWLClassAssertionAxiom": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_class_expression"], [16, 4, 1, "", "get_individual"]], "owlapy.owl_axiom.OWLClassAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyAssertionAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyDomainAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDataPropertyRangeAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_datarange"], [16, 4, 1, "", "get_datatype"]], "owlapy.owl_axiom.OWLDeclarationAxiom": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_entity"]], "owlapy.owl_axiom.OWLDifferentIndividualsAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDisjointClassesAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDisjointDataPropertiesAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDisjointObjectPropertiesAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLDisjointUnionAxiom": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_class_expressions"], [16, 4, 1, "", "get_owl_class"], [16, 4, 1, "", "get_owl_disjoint_classes_axiom"], [16, 4, 1, "", "get_owl_equivalent_classes_axiom"]], "owlapy.owl_axiom.OWLEquivalentClassesAxiom": [[16, 5, 1, "", "__slots__"], [16, 4, 1, "", "contains_named_equivalent_class"], [16, 4, 1, "", "contains_owl_nothing"], [16, 4, 1, "", "contains_owl_thing"], [16, 4, 1, "", "named_classes"]], "owlapy.owl_axiom.OWLEquivalentDataPropertiesAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLEquivalentObjectPropertiesAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLFunctionalDataPropertyAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLFunctionalObjectPropertyAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLHasKeyAxiom": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_class_expression"], [16, 4, 1, "", "get_property_expressions"], [16, 4, 1, "", "operands"]], "owlapy.owl_axiom.OWLIndividualAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLInverseFunctionalObjectPropertyAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom": [[16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_first_property"], [16, 4, 1, "", "get_second_property"]], "owlapy.owl_axiom.OWLIrreflexiveObjectPropertyAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLLogicalAxiom": [[16, 5, 1, "", "__slots__"], [16, 4, 1, "", "is_logical_axiom"]], "owlapy.owl_axiom.OWLNaryAxiom": [[16, 5, 1, "", "__slots__"], [16, 4, 1, "", "as_pairwise_axioms"]], "owlapy.owl_axiom.OWLNaryClassAxiom": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "as_pairwise_axioms"], [16, 4, 1, "", "class_expressions"]], "owlapy.owl_axiom.OWLNaryIndividualAxiom": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "as_pairwise_axioms"], [16, 4, 1, "", "individuals"]], "owlapy.owl_axiom.OWLNaryPropertyAxiom": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "as_pairwise_axioms"], [16, 4, 1, "", "properties"]], "owlapy.owl_axiom.OWLNegativeDataPropertyAssertionAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLNegativeObjectPropertyAssertionAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyAssertionAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyDomainAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLObjectPropertyRangeAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLPropertyAssertionAxiom": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_object"], [16, 4, 1, "", "get_property"], [16, 4, 1, "", "get_subject"]], "owlapy.owl_axiom.OWLPropertyAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLPropertyDomainAxiom": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_domain"]], "owlapy.owl_axiom.OWLPropertyRangeAxiom": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_range"]], "owlapy.owl_axiom.OWLReflexiveObjectPropertyAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLSameIndividualAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_sub_property"], [16, 4, 1, "", "get_super_property"]], "owlapy.owl_axiom.OWLSubClassOfAxiom": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_sub_class"], [16, 4, 1, "", "get_super_class"]], "owlapy.owl_axiom.OWLSubDataPropertyOfAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLSubObjectPropertyOfAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLSubPropertyAxiom": [[16, 4, 1, "", "__eq__"], [16, 4, 1, "", "__hash__"], [16, 4, 1, "", "__repr__"], [16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_sub_property"], [16, 4, 1, "", "get_super_property"]], "owlapy.owl_axiom.OWLSymmetricObjectPropertyAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLTransitiveObjectPropertyAxiom": [[16, 5, 1, "", "__slots__"]], "owlapy.owl_axiom.OWLUnaryPropertyAxiom": [[16, 5, 1, "", "__slots__"], [16, 4, 1, "", "get_property"]], "owlapy.owl_individual": [[17, 3, 1, "", "OWLIndividual"], [17, 3, 1, "", "OWLNamedIndividual"]], "owlapy.owl_individual.OWLIndividual": [[17, 5, 1, "", "__slots__"]], "owlapy.owl_individual.OWLNamedIndividual": [[17, 5, 1, "", "__slots__"], [17, 4, 1, "", "get_iri"], [17, 6, 1, "", "iri"], [17, 6, 1, "", "str"], [17, 5, 1, "", "type_index"]], "owlapy.owl_literal": [[18, 1, 1, "", "BooleanOWLDatatype"], [18, 1, 1, "", "DateOWLDatatype"], [18, 1, 1, "", "DateTimeOWLDatatype"], [18, 1, 1, "", "DoubleOWLDatatype"], [18, 1, 1, "", "DurationOWLDatatype"], [18, 1, 1, "", "IntegerOWLDatatype"], [18, 1, 1, "", "Literals"], [18, 1, 1, "", "NUMERIC_DATATYPES"], [18, 1, 1, "", "OWLBottomDataProperty"], [18, 1, 1, "", "OWLBottomObjectProperty"], [18, 3, 1, "", "OWLLiteral"], [18, 1, 1, "", "OWLTopDataProperty"], [18, 1, 1, "", "OWLTopObjectProperty"], [18, 1, 1, "", "StringOWLDatatype"], [18, 1, 1, "", "TIME_DATATYPES"], [18, 1, 1, "", "TopOWLDatatype"]], "owlapy.owl_literal.OWLLiteral": [[18, 5, 1, "", "__slots__"], [18, 4, 1, "", "as_literal"], [18, 4, 1, "", "get_datatype"], [18, 4, 1, "", "get_literal"], [18, 4, 1, "", "is_boolean"], [18, 4, 1, "", "is_date"], [18, 4, 1, "", "is_datetime"], [18, 4, 1, "", "is_double"], [18, 4, 1, "", "is_duration"], [18, 4, 1, "", "is_integer"], [18, 4, 1, "", "is_literal"], [18, 4, 1, "", "is_string"], [18, 4, 1, "", "parse_boolean"], [18, 4, 1, "", "parse_date"], [18, 4, 1, "", "parse_datetime"], [18, 4, 1, "", "parse_double"], [18, 4, 1, "", "parse_duration"], [18, 4, 1, "", "parse_integer"], [18, 4, 1, "", "parse_string"], [18, 4, 1, "", "to_python"], [18, 5, 1, "", "type_index"]], "owlapy.owl_property": [[19, 3, 1, "", "OWLDataProperty"], [19, 3, 1, "", "OWLDataPropertyExpression"], [19, 3, 1, "", "OWLObjectInverseOf"], [19, 3, 1, "", "OWLObjectProperty"], [19, 3, 1, "", "OWLObjectPropertyExpression"], [19, 3, 1, "", "OWLProperty"], [19, 3, 1, "", "OWLPropertyExpression"]], "owlapy.owl_property.OWLDataProperty": [[19, 5, 1, "", "__slots__"], [19, 4, 1, "", "get_iri"], [19, 4, 1, "", "is_owl_top_data_property"], [19, 5, 1, "", "type_index"]], "owlapy.owl_property.OWLDataPropertyExpression": [[19, 5, 1, "", "__slots__"], [19, 4, 1, "", "is_data_property_expression"]], "owlapy.owl_property.OWLObjectInverseOf": [[19, 4, 1, "", "__eq__"], [19, 4, 1, "", "__hash__"], [19, 4, 1, "", "__repr__"], [19, 5, 1, "", "__slots__"], [19, 4, 1, "", "get_inverse"], [19, 4, 1, "", "get_inverse_property"], [19, 4, 1, "", "get_named_property"], [19, 5, 1, "", "type_index"]], "owlapy.owl_property.OWLObjectProperty": [[19, 5, 1, "", "__slots__"], [19, 4, 1, "", "get_inverse_property"], [19, 4, 1, "", "get_iri"], [19, 4, 1, "", "get_named_property"], [19, 6, 1, "", "iri"], [19, 4, 1, "", "is_owl_top_object_property"], [19, 6, 1, "", "str"], [19, 5, 1, "", "type_index"]], "owlapy.owl_property.OWLObjectPropertyExpression": [[19, 5, 1, "", "__slots__"], [19, 4, 1, "", "get_inverse_property"], [19, 4, 1, "", "get_named_property"], [19, 4, 1, "", "is_object_property_expression"]], "owlapy.owl_property.OWLProperty": [[19, 5, 1, "", "__slots__"]], "owlapy.owl_property.OWLPropertyExpression": [[19, 5, 1, "", "__slots__"], [19, 4, 1, "", "is_data_property_expression"], [19, 4, 1, "", "is_object_property_expression"], [19, 4, 1, "", "is_owl_top_data_property"], [19, 4, 1, "", "is_owl_top_object_property"]], "owlapy.owl_restriction": [[20, 1, 1, "", "Literals"], [20, 3, 1, "", "OWLCardinalityRestriction"], [20, 3, 1, "", "OWLDataAllValuesFrom"], [20, 3, 1, "", "OWLDataCardinalityRestriction"], [20, 3, 1, "", "OWLDataExactCardinality"], [20, 3, 1, "", "OWLDataHasValue"], [20, 3, 1, "", "OWLDataMaxCardinality"], [20, 3, 1, "", "OWLDataMinCardinality"], [20, 3, 1, "", "OWLDataOneOf"], [20, 3, 1, "", "OWLDataRestriction"], [20, 3, 1, "", "OWLDataSomeValuesFrom"], [20, 3, 1, "", "OWLDatatypeRestriction"], [20, 3, 1, "", "OWLFacetRestriction"], [20, 3, 1, "", "OWLHasValueRestriction"], [20, 3, 1, "", "OWLObjectAllValuesFrom"], [20, 3, 1, "", "OWLObjectCardinalityRestriction"], [20, 3, 1, "", "OWLObjectExactCardinality"], [20, 3, 1, "", "OWLObjectHasSelf"], [20, 3, 1, "", "OWLObjectHasValue"], [20, 3, 1, "", "OWLObjectMaxCardinality"], [20, 3, 1, "", "OWLObjectMinCardinality"], [20, 3, 1, "", "OWLObjectOneOf"], [20, 3, 1, "", "OWLObjectRestriction"], [20, 3, 1, "", "OWLObjectSomeValuesFrom"], [20, 3, 1, "", "OWLQuantifiedDataRestriction"], [20, 3, 1, "", "OWLQuantifiedObjectRestriction"], [20, 3, 1, "", "OWLQuantifiedRestriction"], [20, 3, 1, "", "OWLRestriction"]], "owlapy.owl_restriction.OWLCardinalityRestriction": [[20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_cardinality"], [20, 4, 1, "", "get_filler"]], "owlapy.owl_restriction.OWLDataAllValuesFrom": [[20, 4, 1, "", "__eq__"], [20, 4, 1, "", "__hash__"], [20, 4, 1, "", "__repr__"], [20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_property"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLDataCardinalityRestriction": [[20, 4, 1, "", "__eq__"], [20, 4, 1, "", "__hash__"], [20, 4, 1, "", "__repr__"], [20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_property"]], "owlapy.owl_restriction.OWLDataExactCardinality": [[20, 5, 1, "", "__slots__"], [20, 4, 1, "", "as_intersection_of_min_max"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLDataHasValue": [[20, 4, 1, "", "__eq__"], [20, 4, 1, "", "__hash__"], [20, 4, 1, "", "__repr__"], [20, 5, 1, "", "__slots__"], [20, 4, 1, "", "as_some_values_from"], [20, 4, 1, "", "get_property"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLDataMaxCardinality": [[20, 5, 1, "", "__slots__"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLDataMinCardinality": [[20, 5, 1, "", "__slots__"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLDataOneOf": [[20, 4, 1, "", "__eq__"], [20, 4, 1, "", "__hash__"], [20, 4, 1, "", "__repr__"], [20, 4, 1, "", "operands"], [20, 5, 1, "", "type_index"], [20, 4, 1, "", "values"]], "owlapy.owl_restriction.OWLDataRestriction": [[20, 5, 1, "", "__slots__"], [20, 4, 1, "", "is_data_restriction"]], "owlapy.owl_restriction.OWLDataSomeValuesFrom": [[20, 4, 1, "", "__eq__"], [20, 4, 1, "", "__hash__"], [20, 4, 1, "", "__repr__"], [20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_property"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLDatatypeRestriction": [[20, 4, 1, "", "__eq__"], [20, 4, 1, "", "__hash__"], [20, 4, 1, "", "__repr__"], [20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_datatype"], [20, 4, 1, "", "get_facet_restrictions"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLFacetRestriction": [[20, 4, 1, "", "__eq__"], [20, 4, 1, "", "__hash__"], [20, 4, 1, "", "__repr__"], [20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_facet"], [20, 4, 1, "", "get_facet_value"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLHasValueRestriction": [[20, 4, 1, "", "__eq__"], [20, 4, 1, "", "__hash__"], [20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_filler"]], "owlapy.owl_restriction.OWLObjectAllValuesFrom": [[20, 4, 1, "", "__eq__"], [20, 4, 1, "", "__hash__"], [20, 4, 1, "", "__repr__"], [20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_property"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLObjectCardinalityRestriction": [[20, 4, 1, "", "__eq__"], [20, 4, 1, "", "__hash__"], [20, 4, 1, "", "__repr__"], [20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_property"]], "owlapy.owl_restriction.OWLObjectExactCardinality": [[20, 5, 1, "", "__slots__"], [20, 4, 1, "", "as_intersection_of_min_max"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLObjectHasSelf": [[20, 4, 1, "", "__eq__"], [20, 4, 1, "", "__hash__"], [20, 4, 1, "", "__repr__"], [20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_property"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLObjectHasValue": [[20, 4, 1, "", "__repr__"], [20, 5, 1, "", "__slots__"], [20, 4, 1, "", "as_some_values_from"], [20, 4, 1, "", "get_property"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLObjectMaxCardinality": [[20, 5, 1, "", "__slots__"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLObjectMinCardinality": [[20, 5, 1, "", "__slots__"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLObjectOneOf": [[20, 4, 1, "", "__eq__"], [20, 4, 1, "", "__hash__"], [20, 4, 1, "", "__repr__"], [20, 5, 1, "", "__slots__"], [20, 4, 1, "", "as_object_union_of"], [20, 4, 1, "", "individuals"], [20, 4, 1, "", "operands"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLObjectRestriction": [[20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_property"], [20, 4, 1, "", "is_object_restriction"]], "owlapy.owl_restriction.OWLObjectSomeValuesFrom": [[20, 4, 1, "", "__eq__"], [20, 4, 1, "", "__hash__"], [20, 4, 1, "", "__repr__"], [20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_property"], [20, 5, 1, "", "type_index"]], "owlapy.owl_restriction.OWLQuantifiedDataRestriction": [[20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_filler"]], "owlapy.owl_restriction.OWLQuantifiedObjectRestriction": [[20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_filler"]], "owlapy.owl_restriction.OWLQuantifiedRestriction": [[20, 5, 1, "", "__slots__"]], "owlapy.owl_restriction.OWLRestriction": [[20, 5, 1, "", "__slots__"], [20, 4, 1, "", "get_property"], [20, 4, 1, "", "is_data_restriction"], [20, 4, 1, "", "is_object_restriction"]], "owlapy.owlobject": [[21, 3, 1, "", "OWLEntity"], [21, 3, 1, "", "OWLNamedObject"], [21, 3, 1, "", "OWLObject"], [21, 3, 1, "", "OWLObjectParser"], [21, 3, 1, "", "OWLObjectRenderer"]], "owlapy.owlobject.OWLEntity": [[21, 5, 1, "", "__slots__"], [21, 4, 1, "", "is_anonymous"], [21, 4, 1, "", "to_string_id"]], "owlapy.owlobject.OWLNamedObject": [[21, 4, 1, "", "__eq__"], [21, 4, 1, "", "__hash__"], [21, 4, 1, "", "__lt__"], [21, 4, 1, "", "__repr__"], [21, 5, 1, "", "__slots__"]], "owlapy.owlobject.OWLObject": [[21, 4, 1, "", "__eq__"], [21, 4, 1, "", "__hash__"], [21, 4, 1, "", "__repr__"], [21, 5, 1, "", "__slots__"], [21, 4, 1, "", "is_anonymous"]], "owlapy.owlobject.OWLObjectParser": [[21, 4, 1, "", "parse_expression"]], "owlapy.owlobject.OWLObjectRenderer": [[21, 4, 1, "", "render"], [21, 4, 1, "", "set_short_form_provider"]], "owlapy.parser": [[22, 3, 1, "", "DLSyntaxParser"], [22, 1, 1, "", "DL_GRAMMAR"], [22, 1, 1, "", "DLparser"], [22, 1, 1, "", "MANCHESTER_GRAMMAR"], [22, 3, 1, "", "ManchesterOWLSyntaxParser"], [22, 1, 1, "", "ManchesterParser"], [22, 2, 1, "", "dl_to_owl_expression"], [22, 2, 1, "", "manchester_to_owl_expression"]], "owlapy.parser.DLSyntaxParser": [[22, 4, 1, "", "generic_visit"], [22, 5, 1, "", "ns"], [22, 4, 1, "", "parse_expression"], [22, 5, 1, "", "slots"], [22, 4, 1, "", "visit_abbreviated_iri"], [22, 4, 1, "", "visit_boolean_literal"], [22, 4, 1, "", "visit_cardinality_res"], [22, 4, 1, "", "visit_class_expression"], [22, 4, 1, "", "visit_class_iri"], [22, 4, 1, "", "visit_data_cardinality_res"], [22, 4, 1, "", "visit_data_intersection"], [22, 4, 1, "", "visit_data_parentheses"], [22, 4, 1, "", "visit_data_primary"], [22, 4, 1, "", "visit_data_property_iri"], [22, 4, 1, "", "visit_data_some_only_res"], [22, 4, 1, "", "visit_data_union"], [22, 4, 1, "", "visit_data_value_res"], [22, 4, 1, "", "visit_datatype"], [22, 4, 1, "", "visit_datatype_iri"], [22, 4, 1, "", "visit_datatype_restriction"], [22, 4, 1, "", "visit_date_literal"], [22, 4, 1, "", "visit_datetime_literal"], [22, 4, 1, "", "visit_decimal_literal"], [22, 4, 1, "", "visit_duration_literal"], [22, 4, 1, "", "visit_facet"], [22, 4, 1, "", "visit_facet_restriction"], [22, 4, 1, "", "visit_facet_restrictions"], [22, 4, 1, "", "visit_float_literal"], [22, 4, 1, "", "visit_full_iri"], [22, 4, 1, "", "visit_has_self"], [22, 4, 1, "", "visit_individual_iri"], [22, 4, 1, "", "visit_individual_list"], [22, 4, 1, "", "visit_integer_literal"], [22, 4, 1, "", "visit_intersection"], [22, 4, 1, "", "visit_iri"], [22, 4, 1, "", "visit_literal"], [22, 4, 1, "", "visit_literal_list"], [22, 4, 1, "", "visit_non_negative_integer"], [22, 4, 1, "", "visit_object_property"], [22, 4, 1, "", "visit_object_property_iri"], [22, 4, 1, "", "visit_parentheses"], [22, 4, 1, "", "visit_primary"], [22, 4, 1, "", "visit_quoted_string"], [22, 4, 1, "", "visit_simple_iri"], [22, 4, 1, "", "visit_some_only_res"], [22, 4, 1, "", "visit_string_literal_language"], [22, 4, 1, "", "visit_string_literal_no_language"], [22, 4, 1, "", "visit_typed_literal"], [22, 4, 1, "", "visit_union"], [22, 4, 1, "", "visit_value_res"]], "owlapy.parser.ManchesterOWLSyntaxParser": [[22, 4, 1, "", "generic_visit"], [22, 5, 1, "", "ns"], [22, 4, 1, "", "parse_expression"], [22, 5, 1, "", "slots"], [22, 4, 1, "", "visit_abbreviated_iri"], [22, 4, 1, "", "visit_boolean_literal"], [22, 4, 1, "", "visit_cardinality_res"], [22, 4, 1, "", "visit_class_expression"], [22, 4, 1, "", "visit_class_iri"], [22, 4, 1, "", "visit_data_cardinality_res"], [22, 4, 1, "", "visit_data_intersection"], [22, 4, 1, "", "visit_data_parentheses"], [22, 4, 1, "", "visit_data_primary"], [22, 4, 1, "", "visit_data_property_iri"], [22, 4, 1, "", "visit_data_some_only_res"], [22, 4, 1, "", "visit_data_union"], [22, 4, 1, "", "visit_data_value_res"], [22, 4, 1, "", "visit_datatype"], [22, 4, 1, "", "visit_datatype_iri"], [22, 4, 1, "", "visit_datatype_restriction"], [22, 4, 1, "", "visit_date_literal"], [22, 4, 1, "", "visit_datetime_literal"], [22, 4, 1, "", "visit_decimal_literal"], [22, 4, 1, "", "visit_duration_literal"], [22, 4, 1, "", "visit_facet"], [22, 4, 1, "", "visit_facet_restriction"], [22, 4, 1, "", "visit_facet_restrictions"], [22, 4, 1, "", "visit_float_literal"], [22, 4, 1, "", "visit_full_iri"], [22, 4, 1, "", "visit_has_self"], [22, 4, 1, "", "visit_individual_iri"], [22, 4, 1, "", "visit_individual_list"], [22, 4, 1, "", "visit_integer_literal"], [22, 4, 1, "", "visit_intersection"], [22, 4, 1, "", "visit_iri"], [22, 4, 1, "", "visit_literal"], [22, 4, 1, "", "visit_literal_list"], [22, 4, 1, "", "visit_non_negative_integer"], [22, 4, 1, "", "visit_object_property"], [22, 4, 1, "", "visit_object_property_iri"], [22, 4, 1, "", "visit_parentheses"], [22, 4, 1, "", "visit_primary"], [22, 4, 1, "", "visit_quoted_string"], [22, 4, 1, "", "visit_simple_iri"], [22, 4, 1, "", "visit_some_only_res"], [22, 4, 1, "", "visit_string_literal_language"], [22, 4, 1, "", "visit_string_literal_no_language"], [22, 4, 1, "", "visit_typed_literal"], [22, 4, 1, "", "visit_union"], [22, 4, 1, "", "visit_value_res"]], "owlapy.ranges": [[23, 3, 1, "", "OWLDataRange"], [23, 3, 1, "", "OWLPropertyRange"]], "owlapy.render": [[24, 3, 1, "", "DLSyntaxObjectRenderer"], [24, 1, 1, "", "DLrenderer"], [24, 3, 1, "", "ManchesterOWLSyntaxOWLObjectRenderer"], [24, 1, 1, "", "ManchesterRenderer"], [24, 2, 1, "", "owl_expression_to_dl"], [24, 2, 1, "", "owl_expression_to_manchester"]], "owlapy.render.DLSyntaxObjectRenderer": [[24, 5, 1, "", "__slots__"], [24, 4, 1, "", "render"], [24, 4, 1, "", "set_short_form_provider"]], "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer": [[24, 5, 1, "", "__slots__"], [24, 4, 1, "", "render"], [24, 4, 1, "", "set_short_form_provider"]], "owlapy.types": [[25, 3, 1, "", "OWLDatatype"]], "owlapy.types.OWLDatatype": [[25, 5, 1, "", "__slots__"], [25, 4, 1, "", "get_iri"], [25, 5, 1, "", "type_index"]], "owlapy.util": [[26, 3, 1, "", "LRUCache"], [26, 3, 1, "", "NNF"], [26, 3, 1, "", "OrderedOWLObject"], [26, 3, 1, "", "TopLevelCNF"], [26, 3, 1, "", "TopLevelDNF"], [26, 2, 1, "", "as_index"], [26, 2, 1, "", "combine_nary_expressions"], [26, 2, 1, "", "iter_count"]], "owlapy.util.LRUCache": [[26, 5, 1, "", "KEY"], [26, 5, 1, "", "NEXT"], [26, 5, 1, "", "PREV"], [26, 5, 1, "", "RESULT"], [26, 4, 1, "", "__contains__"], [26, 4, 1, "", "__getitem__"], [26, 4, 1, "", "__setitem__"], [26, 4, 1, "", "cache_clear"], [26, 4, 1, "", "cache_info"], [26, 5, 1, "id1", "sentinel"]], "owlapy.util.NNF": [[26, 4, 1, "", "get_class_nnf"]], "owlapy.util.OrderedOWLObject": [[26, 4, 1, "", "__eq__"], [26, 4, 1, "", "__lt__"], [26, 5, 1, "", "__slots__"], [26, 5, 1, "id0", "o"]], "owlapy.util.TopLevelCNF": [[26, 4, 1, "", "get_top_level_cnf"]], "owlapy.util.TopLevelDNF": [[26, 4, 1, "", "get_top_level_dnf"]], "owlapy.vocab": [[27, 3, 1, "", "OWLFacet"], [27, 3, 1, "", "OWLRDFVocabulary"], [27, 3, 1, "", "XSDVocabulary"]], "owlapy.vocab.OWLFacet": [[27, 5, 1, "", "FRACTION_DIGITS"], [27, 5, 1, "", "LENGTH"], [27, 5, 1, "", "MAX_EXCLUSIVE"], [27, 5, 1, "", "MAX_INCLUSIVE"], [27, 5, 1, "", "MAX_LENGTH"], [27, 5, 1, "", "MIN_EXCLUSIVE"], [27, 5, 1, "", "MIN_INCLUSIVE"], [27, 5, 1, "", "MIN_LENGTH"], [27, 5, 1, "", "PATTERN"], [27, 5, 1, "", "TOTAL_DIGITS"], [27, 4, 1, "", "from_str"], [27, 6, 1, "", "operator"], [27, 6, 1, "", "symbolic_form"]], "owlapy.vocab.OWLRDFVocabulary": [[27, 5, 1, "", "OWL_BOTTOM_DATA_PROPERTY"], [27, 5, 1, "", "OWL_BOTTOM_OBJECT_PROPERTY"], [27, 5, 1, "", "OWL_CLASS"], [27, 5, 1, "", "OWL_NAMED_INDIVIDUAL"], [27, 5, 1, "", "OWL_NOTHING"], [27, 5, 1, "", "OWL_THING"], [27, 5, 1, "", "OWL_TOP_DATA_PROPERTY"], [27, 5, 1, "", "OWL_TOP_OBJECT_PROPERTY"], [27, 5, 1, "", "RDFS_LITERAL"]], "owlapy.vocab.XSDVocabulary": [[27, 5, 1, "", "BOOLEAN"], [27, 5, 1, "", "DATE"], [27, 5, 1, "", "DATE_TIME"], [27, 5, 1, "", "DATE_TIME_STAMP"], [27, 5, 1, "", "DECIMAL"], [27, 5, 1, "", "DOUBLE"], [27, 5, 1, "", "DURATION"], [27, 5, 1, "", "FLOAT"], [27, 5, 1, "", "INTEGER"], [27, 5, 1, "", "LONG"], [27, 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, 26, 27, 28, 29], "_util": 0, "modul": [0, 1, 3, 4, 6, 8, 9, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27], "content": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28], "function": [0, 10, 11, 13, 22, 24, 26], "class_express": [1, 2, 3, 4], "class": [1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27], "submodul": [2, 7, 10, 14], "packag": [2, 5, 7, 10], "attribut": [2, 10, 11, 12, 13, 18, 20, 22, 24], "nary_boolean_express": 3, "owl_class": 4, "data_rang": 5, "ha": 6, "subpackag": 7, "iri": 8, "meta_class": 9, "model": [10, 11], "provid": 11, "namespac": 12, "owl2sparql": [13, 14], "convert": 13, "owl_annot": 15, "owl_axiom": 16, "owl_individu": 17, "owl_liter": 18, "owl_properti": 19, "owl_restrict": 20, "owlobject": 21, "parser": 22, "rang": 23, "render": 24, "type": 25, "util": 26, "vocab": 27, "welcom": 28}, "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"], [8, "module-contents"], [9, "module-contents"], [11, "module-contents"], [12, "module-contents"], [13, "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"], [24, "module-contents"], [25, "module-contents"], [26, "module-contents"], [27, "module-contents"]], "Functions": [[0, "functions"], [10, "functions"], [11, "functions"], [13, "functions"], [22, "functions"], [24, "functions"], [26, "functions"]], "owlapy.class_expression.class_expression": [[1, "module-owlapy.class_expression.class_expression"]], "Classes": [[1, "classes"], [2, "classes"], [3, "classes"], [4, "classes"], [5, "classes"], [6, "classes"], [8, "classes"], [9, "classes"], [10, "classes"], [12, "classes"], [13, "classes"], [15, "classes"], [16, "classes"], [17, "classes"], [18, "classes"], [19, "classes"], [20, "classes"], [21, "classes"], [22, "classes"], [23, "classes"], [24, "classes"], [25, "classes"], [26, "classes"], [27, "classes"]], "owlapy.class_expression": [[2, "module-owlapy.class_expression"]], "Submodules": [[2, "submodules"], [7, "submodules"], [10, "submodules"], [14, "submodules"]], "Package Contents": [[2, "package-contents"], [5, "package-contents"], [7, "package-contents"], [10, "package-contents"]], "Attributes": [[2, "attributes"], [10, "attributes"], [11, "attributes"], [12, "attributes"], [13, "attributes"], [18, "attributes"], [20, "attributes"], [22, "attributes"], [24, "attributes"]], "owlapy.class_expression.nary_boolean_expression": [[3, "module-owlapy.class_expression.nary_boolean_expression"]], "owlapy.class_expression.owl_class": [[4, "module-owlapy.class_expression.owl_class"]], "owlapy.data_ranges": [[5, "module-owlapy.data_ranges"]], "owlapy.has": [[6, "module-owlapy.has"]], "owlapy": [[7, "module-owlapy"]], "Subpackages": [[7, "subpackages"]], "owlapy.iri": [[8, "module-owlapy.iri"]], "owlapy.meta_classes": [[9, "module-owlapy.meta_classes"]], "owlapy.model": [[10, "module-owlapy.model"]], "owlapy.model.providers": [[11, "module-owlapy.model.providers"]], "owlapy.namespaces": [[12, "module-owlapy.namespaces"]], "owlapy.owl2sparql.converter": [[13, "module-owlapy.owl2sparql.converter"]], "owlapy.owl2sparql": [[14, "module-owlapy.owl2sparql"]], "owlapy.owl_annotation": [[15, "module-owlapy.owl_annotation"]], "owlapy.owl_axiom": [[16, "module-owlapy.owl_axiom"]], "owlapy.owl_individual": [[17, "module-owlapy.owl_individual"]], "owlapy.owl_literal": [[18, "module-owlapy.owl_literal"]], "owlapy.owl_property": [[19, "module-owlapy.owl_property"]], "owlapy.owl_restriction": [[20, "module-owlapy.owl_restriction"]], "owlapy.owlobject": [[21, "module-owlapy.owlobject"]], "owlapy.parser": [[22, "module-owlapy.parser"]], "owlapy.ranges": [[23, "module-owlapy.ranges"]], "owlapy.render": [[24, "module-owlapy.render"]], "owlapy.types": [[25, "module-owlapy.types"]], "owlapy.util": [[26, "module-owlapy.util"]], "owlapy.vocab": [[27, "module-owlapy.vocab"]], "Welcome to OWLAPY!": [[28, "welcome-to-owlapy"]], "Contents:": [[28, null]], "OWLAPY": [[29, "owlapy"]]}, "indexentries": {"move() (in module owlapy._utils)": [[0, "owlapy._utils.MOVE"]], "module": [[0, "module-owlapy._utils"], [1, "module-owlapy.class_expression.class_expression"], [2, "module-owlapy.class_expression"], [3, "module-owlapy.class_expression.nary_boolean_expression"], [4, "module-owlapy.class_expression.owl_class"], [5, "module-owlapy.data_ranges"], [6, "module-owlapy.has"], [7, "module-owlapy"], [8, "module-owlapy.iri"], [9, "module-owlapy.meta_classes"], [10, "module-owlapy.model"], [11, "module-owlapy.model.providers"], [12, "module-owlapy.namespaces"], [13, "module-owlapy.owl2sparql.converter"], [14, "module-owlapy.owl2sparql"], [15, "module-owlapy.owl_annotation"], [16, "module-owlapy.owl_axiom"], [17, "module-owlapy.owl_individual"], [18, "module-owlapy.owl_literal"], [19, "module-owlapy.owl_property"], [20, "module-owlapy.owl_restriction"], [21, "module-owlapy.owlobject"], [22, "module-owlapy.parser"], [23, "module-owlapy.ranges"], [24, "module-owlapy.render"], [25, "module-owlapy.types"], [26, "module-owlapy.util"], [27, "module-owlapy.vocab"]], "owlapy._utils": [[0, "module-owlapy._utils"]], "owlanonymousclassexpression (class in owlapy.class_expression.class_expression)": [[1, "owlapy.class_expression.class_expression.OWLAnonymousClassExpression"]], "owlbooleanclassexpression (class in owlapy.class_expression.class_expression)": [[1, "owlapy.class_expression.class_expression.OWLBooleanClassExpression"]], "owlclassexpression (class in owlapy.class_expression.class_expression)": [[1, "owlapy.class_expression.class_expression.OWLClassExpression"]], "owlobjectcomplementof (class in owlapy.class_expression.class_expression)": [[1, "owlapy.class_expression.class_expression.OWLObjectComplementOf"]], "__eq__() (owlapy.class_expression.class_expression.owlobjectcomplementof method)": [[1, "owlapy.class_expression.class_expression.OWLObjectComplementOf.__eq__"]], "__hash__() (owlapy.class_expression.class_expression.owlobjectcomplementof method)": [[1, "owlapy.class_expression.class_expression.OWLObjectComplementOf.__hash__"]], "__repr__() (owlapy.class_expression.class_expression.owlobjectcomplementof method)": [[1, "owlapy.class_expression.class_expression.OWLObjectComplementOf.__repr__"]], "__slots__ (owlapy.class_expression.class_expression.owlbooleanclassexpression attribute)": [[1, "owlapy.class_expression.class_expression.OWLBooleanClassExpression.__slots__"]], "__slots__ (owlapy.class_expression.class_expression.owlclassexpression attribute)": [[1, "owlapy.class_expression.class_expression.OWLClassExpression.__slots__"]], "__slots__ (owlapy.class_expression.class_expression.owlobjectcomplementof attribute)": [[1, "owlapy.class_expression.class_expression.OWLObjectComplementOf.__slots__"]], "get_nnf() (owlapy.class_expression.class_expression.owlanonymousclassexpression method)": [[1, "owlapy.class_expression.class_expression.OWLAnonymousClassExpression.get_nnf"]], "get_nnf() (owlapy.class_expression.class_expression.owlclassexpression method)": [[1, "owlapy.class_expression.class_expression.OWLClassExpression.get_nnf"]], "get_object_complement_of() (owlapy.class_expression.class_expression.owlanonymousclassexpression method)": [[1, "owlapy.class_expression.class_expression.OWLAnonymousClassExpression.get_object_complement_of"]], "get_object_complement_of() (owlapy.class_expression.class_expression.owlclassexpression method)": [[1, "owlapy.class_expression.class_expression.OWLClassExpression.get_object_complement_of"]], "get_operand() (owlapy.class_expression.class_expression.owlobjectcomplementof method)": [[1, "owlapy.class_expression.class_expression.OWLObjectComplementOf.get_operand"]], "is_owl_nothing() (owlapy.class_expression.class_expression.owlanonymousclassexpression method)": [[1, "owlapy.class_expression.class_expression.OWLAnonymousClassExpression.is_owl_nothing"]], "is_owl_nothing() (owlapy.class_expression.class_expression.owlclassexpression method)": [[1, "owlapy.class_expression.class_expression.OWLClassExpression.is_owl_nothing"]], "is_owl_thing() (owlapy.class_expression.class_expression.owlanonymousclassexpression method)": [[1, "owlapy.class_expression.class_expression.OWLAnonymousClassExpression.is_owl_thing"]], "is_owl_thing() (owlapy.class_expression.class_expression.owlclassexpression method)": [[1, "owlapy.class_expression.class_expression.OWLClassExpression.is_owl_thing"]], "operands() (owlapy.class_expression.class_expression.owlobjectcomplementof method)": [[1, "owlapy.class_expression.class_expression.OWLObjectComplementOf.operands"]], "owlapy.class_expression.class_expression": [[1, "module-owlapy.class_expression.class_expression"]], "type_index (owlapy.class_expression.class_expression.owlobjectcomplementof attribute)": [[1, "owlapy.class_expression.class_expression.OWLObjectComplementOf.type_index"]], "owlanonymousclassexpression (class in owlapy.class_expression)": [[2, "owlapy.class_expression.OWLAnonymousClassExpression"]], "owlbooleanclassexpression (class in owlapy.class_expression)": [[2, "owlapy.class_expression.OWLBooleanClassExpression"]], "owlclass (class in owlapy.class_expression)": [[2, "owlapy.class_expression.OWLClass"]], "owlclassexpression (class in owlapy.class_expression)": [[2, "owlapy.class_expression.OWLClassExpression"]], "owlnarybooleanclassexpression (class in owlapy.class_expression)": [[2, "owlapy.class_expression.OWLNaryBooleanClassExpression"]], "owlnothing (in module owlapy.class_expression)": [[2, "owlapy.class_expression.OWLNothing"]], "owlobjectcomplementof (class in owlapy.class_expression)": [[2, "owlapy.class_expression.OWLObjectComplementOf"]], "owlobjectintersectionof (class in owlapy.class_expression)": [[2, "owlapy.class_expression.OWLObjectIntersectionOf"]], "owlobjectunionof (class in owlapy.class_expression)": [[2, "owlapy.class_expression.OWLObjectUnionOf"]], "owlrdfvocabulary (class in owlapy.class_expression)": [[2, "owlapy.class_expression.OWLRDFVocabulary"]], "owlthing (in module owlapy.class_expression)": [[2, "owlapy.class_expression.OWLThing"]], "owl_bottom_data_property (owlapy.class_expression.owlrdfvocabulary attribute)": [[2, "owlapy.class_expression.OWLRDFVocabulary.OWL_BOTTOM_DATA_PROPERTY"]], "owl_bottom_object_property (owlapy.class_expression.owlrdfvocabulary attribute)": [[2, "owlapy.class_expression.OWLRDFVocabulary.OWL_BOTTOM_OBJECT_PROPERTY"]], "owl_class (owlapy.class_expression.owlrdfvocabulary attribute)": [[2, "owlapy.class_expression.OWLRDFVocabulary.OWL_CLASS"]], "owl_named_individual (owlapy.class_expression.owlrdfvocabulary attribute)": [[2, "owlapy.class_expression.OWLRDFVocabulary.OWL_NAMED_INDIVIDUAL"]], "owl_nothing (owlapy.class_expression.owlrdfvocabulary attribute)": [[2, "owlapy.class_expression.OWLRDFVocabulary.OWL_NOTHING"]], "owl_thing (owlapy.class_expression.owlrdfvocabulary attribute)": [[2, "owlapy.class_expression.OWLRDFVocabulary.OWL_THING"]], "owl_top_data_property (owlapy.class_expression.owlrdfvocabulary attribute)": [[2, "owlapy.class_expression.OWLRDFVocabulary.OWL_TOP_DATA_PROPERTY"]], "owl_top_object_property (owlapy.class_expression.owlrdfvocabulary attribute)": [[2, "owlapy.class_expression.OWLRDFVocabulary.OWL_TOP_OBJECT_PROPERTY"]], "rdfs_literal (owlapy.class_expression.owlrdfvocabulary attribute)": [[2, "owlapy.class_expression.OWLRDFVocabulary.RDFS_LITERAL"]], "__eq__() (owlapy.class_expression.owlnarybooleanclassexpression method)": [[2, "owlapy.class_expression.OWLNaryBooleanClassExpression.__eq__"]], "__eq__() (owlapy.class_expression.owlobjectcomplementof method)": [[2, "owlapy.class_expression.OWLObjectComplementOf.__eq__"]], "__hash__() (owlapy.class_expression.owlnarybooleanclassexpression method)": [[2, "owlapy.class_expression.OWLNaryBooleanClassExpression.__hash__"]], "__hash__() (owlapy.class_expression.owlobjectcomplementof method)": [[2, "owlapy.class_expression.OWLObjectComplementOf.__hash__"]], "__repr__() (owlapy.class_expression.owlnarybooleanclassexpression method)": [[2, "owlapy.class_expression.OWLNaryBooleanClassExpression.__repr__"]], "__repr__() (owlapy.class_expression.owlobjectcomplementof method)": [[2, "owlapy.class_expression.OWLObjectComplementOf.__repr__"]], "__slots__ (owlapy.class_expression.owlbooleanclassexpression attribute)": [[2, "owlapy.class_expression.OWLBooleanClassExpression.__slots__"]], "__slots__ (owlapy.class_expression.owlclass attribute)": [[2, "owlapy.class_expression.OWLClass.__slots__"]], "__slots__ (owlapy.class_expression.owlclassexpression attribute)": [[2, "owlapy.class_expression.OWLClassExpression.__slots__"]], "__slots__ (owlapy.class_expression.owlnarybooleanclassexpression attribute)": [[2, "owlapy.class_expression.OWLNaryBooleanClassExpression.__slots__"]], "__slots__ (owlapy.class_expression.owlobjectcomplementof attribute)": [[2, "owlapy.class_expression.OWLObjectComplementOf.__slots__"]], "__slots__ (owlapy.class_expression.owlobjectintersectionof attribute)": [[2, "owlapy.class_expression.OWLObjectIntersectionOf.__slots__"]], "__slots__ (owlapy.class_expression.owlobjectunionof attribute)": [[2, "owlapy.class_expression.OWLObjectUnionOf.__slots__"]], "get_iri() (owlapy.class_expression.owlclass method)": [[2, "owlapy.class_expression.OWLClass.get_iri"]], "get_nnf() (owlapy.class_expression.owlanonymousclassexpression method)": [[2, "owlapy.class_expression.OWLAnonymousClassExpression.get_nnf"]], "get_nnf() (owlapy.class_expression.owlclass method)": [[2, "owlapy.class_expression.OWLClass.get_nnf"]], "get_nnf() (owlapy.class_expression.owlclassexpression method)": [[2, "owlapy.class_expression.OWLClassExpression.get_nnf"]], "get_object_complement_of() (owlapy.class_expression.owlanonymousclassexpression method)": [[2, "owlapy.class_expression.OWLAnonymousClassExpression.get_object_complement_of"]], "get_object_complement_of() (owlapy.class_expression.owlclass method)": [[2, "owlapy.class_expression.OWLClass.get_object_complement_of"]], "get_object_complement_of() (owlapy.class_expression.owlclassexpression method)": [[2, "owlapy.class_expression.OWLClassExpression.get_object_complement_of"]], "get_operand() (owlapy.class_expression.owlobjectcomplementof method)": [[2, "owlapy.class_expression.OWLObjectComplementOf.get_operand"]], "is_owl_nothing() (owlapy.class_expression.owlanonymousclassexpression method)": [[2, "owlapy.class_expression.OWLAnonymousClassExpression.is_owl_nothing"]], "is_owl_nothing() (owlapy.class_expression.owlclass method)": [[2, "owlapy.class_expression.OWLClass.is_owl_nothing"]], "is_owl_nothing() (owlapy.class_expression.owlclassexpression method)": [[2, "owlapy.class_expression.OWLClassExpression.is_owl_nothing"]], "is_owl_thing() (owlapy.class_expression.owlanonymousclassexpression method)": [[2, "owlapy.class_expression.OWLAnonymousClassExpression.is_owl_thing"]], "is_owl_thing() (owlapy.class_expression.owlclass method)": [[2, "owlapy.class_expression.OWLClass.is_owl_thing"]], "is_owl_thing() (owlapy.class_expression.owlclassexpression method)": [[2, "owlapy.class_expression.OWLClassExpression.is_owl_thing"]], "operands() (owlapy.class_expression.owlnarybooleanclassexpression method)": [[2, "owlapy.class_expression.OWLNaryBooleanClassExpression.operands"]], "operands() (owlapy.class_expression.owlobjectcomplementof method)": [[2, "owlapy.class_expression.OWLObjectComplementOf.operands"]], "owlapy.class_expression": [[2, "module-owlapy.class_expression"]], "reminder (owlapy.class_expression.owlclass property)": [[2, "owlapy.class_expression.OWLClass.reminder"]], "str (owlapy.class_expression.owlclass property)": [[2, "owlapy.class_expression.OWLClass.str"]], "type_index (owlapy.class_expression.owlclass attribute)": [[2, "owlapy.class_expression.OWLClass.type_index"]], "type_index (owlapy.class_expression.owlobjectcomplementof attribute)": [[2, "owlapy.class_expression.OWLObjectComplementOf.type_index"]], "type_index (owlapy.class_expression.owlobjectintersectionof attribute)": [[2, "owlapy.class_expression.OWLObjectIntersectionOf.type_index"]], "type_index (owlapy.class_expression.owlobjectunionof attribute)": [[2, "owlapy.class_expression.OWLObjectUnionOf.type_index"]], "owlnarybooleanclassexpression (class in owlapy.class_expression.nary_boolean_expression)": [[3, "owlapy.class_expression.nary_boolean_expression.OWLNaryBooleanClassExpression"]], "owlobjectintersectionof (class in owlapy.class_expression.nary_boolean_expression)": [[3, "owlapy.class_expression.nary_boolean_expression.OWLObjectIntersectionOf"]], "owlobjectunionof (class in owlapy.class_expression.nary_boolean_expression)": [[3, "owlapy.class_expression.nary_boolean_expression.OWLObjectUnionOf"]], "__eq__() (owlapy.class_expression.nary_boolean_expression.owlnarybooleanclassexpression method)": [[3, "owlapy.class_expression.nary_boolean_expression.OWLNaryBooleanClassExpression.__eq__"]], "__hash__() (owlapy.class_expression.nary_boolean_expression.owlnarybooleanclassexpression method)": [[3, "owlapy.class_expression.nary_boolean_expression.OWLNaryBooleanClassExpression.__hash__"]], "__repr__() (owlapy.class_expression.nary_boolean_expression.owlnarybooleanclassexpression method)": [[3, "owlapy.class_expression.nary_boolean_expression.OWLNaryBooleanClassExpression.__repr__"]], "__slots__ (owlapy.class_expression.nary_boolean_expression.owlnarybooleanclassexpression attribute)": [[3, "owlapy.class_expression.nary_boolean_expression.OWLNaryBooleanClassExpression.__slots__"]], "__slots__ (owlapy.class_expression.nary_boolean_expression.owlobjectintersectionof attribute)": [[3, "owlapy.class_expression.nary_boolean_expression.OWLObjectIntersectionOf.__slots__"]], "__slots__ (owlapy.class_expression.nary_boolean_expression.owlobjectunionof attribute)": [[3, "owlapy.class_expression.nary_boolean_expression.OWLObjectUnionOf.__slots__"]], "operands() (owlapy.class_expression.nary_boolean_expression.owlnarybooleanclassexpression method)": [[3, "owlapy.class_expression.nary_boolean_expression.OWLNaryBooleanClassExpression.operands"]], "owlapy.class_expression.nary_boolean_expression": [[3, "module-owlapy.class_expression.nary_boolean_expression"]], "type_index (owlapy.class_expression.nary_boolean_expression.owlobjectintersectionof attribute)": [[3, "owlapy.class_expression.nary_boolean_expression.OWLObjectIntersectionOf.type_index"]], "type_index (owlapy.class_expression.nary_boolean_expression.owlobjectunionof attribute)": [[3, "owlapy.class_expression.nary_boolean_expression.OWLObjectUnionOf.type_index"]], "owlclass (class in owlapy.class_expression.owl_class)": [[4, "owlapy.class_expression.owl_class.OWLClass"]], "__slots__ (owlapy.class_expression.owl_class.owlclass attribute)": [[4, "owlapy.class_expression.owl_class.OWLClass.__slots__"]], "get_iri() (owlapy.class_expression.owl_class.owlclass method)": [[4, "owlapy.class_expression.owl_class.OWLClass.get_iri"]], "get_nnf() (owlapy.class_expression.owl_class.owlclass method)": [[4, "owlapy.class_expression.owl_class.OWLClass.get_nnf"]], "get_object_complement_of() (owlapy.class_expression.owl_class.owlclass method)": [[4, "owlapy.class_expression.owl_class.OWLClass.get_object_complement_of"]], "is_owl_nothing() (owlapy.class_expression.owl_class.owlclass method)": [[4, "owlapy.class_expression.owl_class.OWLClass.is_owl_nothing"]], "is_owl_thing() (owlapy.class_expression.owl_class.owlclass method)": [[4, "owlapy.class_expression.owl_class.OWLClass.is_owl_thing"]], "owlapy.class_expression.owl_class": [[4, "module-owlapy.class_expression.owl_class"]], "reminder (owlapy.class_expression.owl_class.owlclass property)": [[4, "owlapy.class_expression.owl_class.OWLClass.reminder"]], "str (owlapy.class_expression.owl_class.owlclass property)": [[4, "owlapy.class_expression.owl_class.OWLClass.str"]], "type_index (owlapy.class_expression.owl_class.owlclass attribute)": [[4, "owlapy.class_expression.owl_class.OWLClass.type_index"]], "hasoperands (class in owlapy.data_ranges)": [[5, "owlapy.data_ranges.HasOperands"]], "iri (class in owlapy.data_ranges)": [[5, "owlapy.data_ranges.IRI"]], "owldatacomplementof (class in owlapy.data_ranges)": [[5, "owlapy.data_ranges.OWLDataComplementOf"]], "owldataintersectionof (class in owlapy.data_ranges)": [[5, "owlapy.data_ranges.OWLDataIntersectionOf"]], "owldatarange (class in owlapy.data_ranges)": [[5, "owlapy.data_ranges.OWLDataRange"]], "owldataunionof (class in owlapy.data_ranges)": [[5, "owlapy.data_ranges.OWLDataUnionOf"]], "owlentity (class in owlapy.data_ranges)": [[5, "owlapy.data_ranges.OWLEntity"]], "owlliteral (class in owlapy.data_ranges)": [[5, "owlapy.data_ranges.OWLLiteral"]], "owlnarydatarange (class in owlapy.data_ranges)": [[5, "owlapy.data_ranges.OWLNaryDataRange"]], "owlobject (class in owlapy.data_ranges)": [[5, "owlapy.data_ranges.OWLObject"]], "owlpropertyrange (class in owlapy.data_ranges)": [[5, "owlapy.data_ranges.OWLPropertyRange"]], "__eq__() (owlapy.data_ranges.iri method)": [[5, "owlapy.data_ranges.IRI.__eq__"]], "__eq__() (owlapy.data_ranges.owldatacomplementof method)": [[5, "owlapy.data_ranges.OWLDataComplementOf.__eq__"]], "__eq__() (owlapy.data_ranges.owlnarydatarange method)": [[5, "owlapy.data_ranges.OWLNaryDataRange.__eq__"]], "__eq__() (owlapy.data_ranges.owlobject method)": [[5, "owlapy.data_ranges.OWLObject.__eq__"]], "__hash__() (owlapy.data_ranges.iri method)": [[5, "owlapy.data_ranges.IRI.__hash__"]], "__hash__() (owlapy.data_ranges.owldatacomplementof method)": [[5, "owlapy.data_ranges.OWLDataComplementOf.__hash__"]], "__hash__() (owlapy.data_ranges.owlnarydatarange method)": [[5, "owlapy.data_ranges.OWLNaryDataRange.__hash__"]], "__hash__() (owlapy.data_ranges.owlobject method)": [[5, "owlapy.data_ranges.OWLObject.__hash__"]], "__repr__() (owlapy.data_ranges.iri method)": [[5, "owlapy.data_ranges.IRI.__repr__"]], "__repr__() (owlapy.data_ranges.owldatacomplementof method)": [[5, "owlapy.data_ranges.OWLDataComplementOf.__repr__"]], "__repr__() (owlapy.data_ranges.owlnarydatarange method)": [[5, "owlapy.data_ranges.OWLNaryDataRange.__repr__"]], "__repr__() (owlapy.data_ranges.owlobject method)": [[5, "owlapy.data_ranges.OWLObject.__repr__"]], "__slots__ (owlapy.data_ranges.hasoperands attribute)": [[5, "owlapy.data_ranges.HasOperands.__slots__"]], "__slots__ (owlapy.data_ranges.iri attribute)": [[5, "owlapy.data_ranges.IRI.__slots__"]], "__slots__ (owlapy.data_ranges.owldataintersectionof attribute)": [[5, "owlapy.data_ranges.OWLDataIntersectionOf.__slots__"]], "__slots__ (owlapy.data_ranges.owldataunionof attribute)": [[5, "owlapy.data_ranges.OWLDataUnionOf.__slots__"]], "__slots__ (owlapy.data_ranges.owlentity attribute)": [[5, "owlapy.data_ranges.OWLEntity.__slots__"]], "__slots__ (owlapy.data_ranges.owlliteral attribute)": [[5, "owlapy.data_ranges.OWLLiteral.__slots__"]], "__slots__ (owlapy.data_ranges.owlnarydatarange attribute)": [[5, "owlapy.data_ranges.OWLNaryDataRange.__slots__"]], "__slots__ (owlapy.data_ranges.owlobject attribute)": [[5, "owlapy.data_ranges.OWLObject.__slots__"]], "as_iri() (owlapy.data_ranges.iri method)": [[5, "owlapy.data_ranges.IRI.as_iri"]], "as_literal() (owlapy.data_ranges.owlliteral method)": [[5, "owlapy.data_ranges.OWLLiteral.as_literal"]], "as_str() (owlapy.data_ranges.iri method)": [[5, "owlapy.data_ranges.IRI.as_str"]], "create() (owlapy.data_ranges.iri static method)": [[5, "owlapy.data_ranges.IRI.create"]], "get_data_range() (owlapy.data_ranges.owldatacomplementof method)": [[5, "owlapy.data_ranges.OWLDataComplementOf.get_data_range"]], "get_datatype() (owlapy.data_ranges.owlliteral method)": [[5, "owlapy.data_ranges.OWLLiteral.get_datatype"]], "get_literal() (owlapy.data_ranges.owlliteral method)": [[5, "owlapy.data_ranges.OWLLiteral.get_literal"]], "get_namespace() (owlapy.data_ranges.iri method)": [[5, "owlapy.data_ranges.IRI.get_namespace"]], "get_remainder() (owlapy.data_ranges.iri method)": [[5, "owlapy.data_ranges.IRI.get_remainder"]], "get_short_form() (owlapy.data_ranges.iri method)": [[5, "owlapy.data_ranges.IRI.get_short_form"]], "is_anonymous() (owlapy.data_ranges.owlentity method)": [[5, "owlapy.data_ranges.OWLEntity.is_anonymous"]], "is_anonymous() (owlapy.data_ranges.owlobject method)": [[5, "owlapy.data_ranges.OWLObject.is_anonymous"]], "is_boolean() (owlapy.data_ranges.owlliteral method)": [[5, "owlapy.data_ranges.OWLLiteral.is_boolean"]], "is_date() (owlapy.data_ranges.owlliteral method)": [[5, "owlapy.data_ranges.OWLLiteral.is_date"]], "is_datetime() (owlapy.data_ranges.owlliteral method)": [[5, "owlapy.data_ranges.OWLLiteral.is_datetime"]], "is_double() (owlapy.data_ranges.owlliteral method)": [[5, "owlapy.data_ranges.OWLLiteral.is_double"]], "is_duration() (owlapy.data_ranges.owlliteral method)": [[5, "owlapy.data_ranges.OWLLiteral.is_duration"]], "is_integer() (owlapy.data_ranges.owlliteral method)": [[5, "owlapy.data_ranges.OWLLiteral.is_integer"]], "is_literal() (owlapy.data_ranges.owlliteral method)": [[5, "owlapy.data_ranges.OWLLiteral.is_literal"]], "is_nothing() (owlapy.data_ranges.iri method)": [[5, "owlapy.data_ranges.IRI.is_nothing"]], "is_reserved_vocabulary() (owlapy.data_ranges.iri method)": [[5, "owlapy.data_ranges.IRI.is_reserved_vocabulary"]], "is_string() (owlapy.data_ranges.owlliteral method)": [[5, "owlapy.data_ranges.OWLLiteral.is_string"]], "is_thing() (owlapy.data_ranges.iri method)": [[5, "owlapy.data_ranges.IRI.is_thing"]], "operands() (owlapy.data_ranges.hasoperands method)": [[5, "owlapy.data_ranges.HasOperands.operands"]], "operands() (owlapy.data_ranges.owlnarydatarange method)": [[5, "owlapy.data_ranges.OWLNaryDataRange.operands"]], "owlapy.data_ranges": [[5, "module-owlapy.data_ranges"]], "parse_boolean() (owlapy.data_ranges.owlliteral method)": [[5, "owlapy.data_ranges.OWLLiteral.parse_boolean"]], "parse_date() (owlapy.data_ranges.owlliteral method)": [[5, "owlapy.data_ranges.OWLLiteral.parse_date"]], "parse_datetime() (owlapy.data_ranges.owlliteral method)": [[5, "owlapy.data_ranges.OWLLiteral.parse_datetime"]], "parse_double() (owlapy.data_ranges.owlliteral method)": [[5, "owlapy.data_ranges.OWLLiteral.parse_double"]], "parse_duration() (owlapy.data_ranges.owlliteral method)": [[5, "owlapy.data_ranges.OWLLiteral.parse_duration"]], "parse_integer() (owlapy.data_ranges.owlliteral method)": [[5, "owlapy.data_ranges.OWLLiteral.parse_integer"]], "parse_string() (owlapy.data_ranges.owlliteral method)": [[5, "owlapy.data_ranges.OWLLiteral.parse_string"]], "reminder (owlapy.data_ranges.iri property)": [[5, "owlapy.data_ranges.IRI.reminder"]], "str (owlapy.data_ranges.iri property)": [[5, "owlapy.data_ranges.IRI.str"]], "to_python() (owlapy.data_ranges.owlliteral method)": [[5, "owlapy.data_ranges.OWLLiteral.to_python"]], "to_string_id() (owlapy.data_ranges.owlentity method)": [[5, "owlapy.data_ranges.OWLEntity.to_string_id"]], "type_index (owlapy.data_ranges.iri attribute)": [[5, "owlapy.data_ranges.IRI.type_index"]], "type_index (owlapy.data_ranges.owldatacomplementof attribute)": [[5, "owlapy.data_ranges.OWLDataComplementOf.type_index"]], "type_index (owlapy.data_ranges.owldataintersectionof attribute)": [[5, "owlapy.data_ranges.OWLDataIntersectionOf.type_index"]], "type_index (owlapy.data_ranges.owldataunionof attribute)": [[5, "owlapy.data_ranges.OWLDataUnionOf.type_index"]], "type_index (owlapy.data_ranges.owlliteral attribute)": [[5, "owlapy.data_ranges.OWLLiteral.type_index"]], "hasindex (class in owlapy.has)": [[6, "owlapy.has.HasIndex"]], "__eq__() (owlapy.has.hasindex method)": [[6, "owlapy.has.HasIndex.__eq__"]], "owlapy.has": [[6, "module-owlapy.has"]], "type_index (owlapy.has.hasindex attribute)": [[6, "owlapy.has.HasIndex.type_index"]], "__version__ (in module owlapy)": [[7, "owlapy.__version__"]], "owlapy": [[7, "module-owlapy"]], "iri (class in owlapy.iri)": [[8, "owlapy.iri.IRI"]], "__eq__() (owlapy.iri.iri method)": [[8, "owlapy.iri.IRI.__eq__"]], "__hash__() (owlapy.iri.iri method)": [[8, "owlapy.iri.IRI.__hash__"]], "__repr__() (owlapy.iri.iri method)": [[8, "owlapy.iri.IRI.__repr__"]], "__slots__ (owlapy.iri.iri attribute)": [[8, "owlapy.iri.IRI.__slots__"]], "as_iri() (owlapy.iri.iri method)": [[8, "owlapy.iri.IRI.as_iri"]], "as_str() (owlapy.iri.iri method)": [[8, "owlapy.iri.IRI.as_str"]], "create() (owlapy.iri.iri static method)": [[8, "owlapy.iri.IRI.create"]], "get_namespace() (owlapy.iri.iri method)": [[8, "owlapy.iri.IRI.get_namespace"]], "get_remainder() (owlapy.iri.iri method)": [[8, "owlapy.iri.IRI.get_remainder"]], "get_short_form() (owlapy.iri.iri method)": [[8, "owlapy.iri.IRI.get_short_form"]], "is_nothing() (owlapy.iri.iri method)": [[8, "owlapy.iri.IRI.is_nothing"]], "is_reserved_vocabulary() (owlapy.iri.iri method)": [[8, "owlapy.iri.IRI.is_reserved_vocabulary"]], "is_thing() (owlapy.iri.iri method)": [[8, "owlapy.iri.IRI.is_thing"]], "owlapy.iri": [[8, "module-owlapy.iri"]], "reminder (owlapy.iri.iri property)": [[8, "owlapy.iri.IRI.reminder"]], "str (owlapy.iri.iri property)": [[8, "owlapy.iri.IRI.str"]], "type_index (owlapy.iri.iri attribute)": [[8, "owlapy.iri.IRI.type_index"]], "hascardinality (class in owlapy.meta_classes)": [[9, "owlapy.meta_classes.HasCardinality"]], "hasfiller (class in owlapy.meta_classes)": [[9, "owlapy.meta_classes.HasFiller"]], "hasiri (class in owlapy.meta_classes)": [[9, "owlapy.meta_classes.HasIRI"]], "hasoperands (class in owlapy.meta_classes)": [[9, "owlapy.meta_classes.HasOperands"]], "__slots__ (owlapy.meta_classes.hascardinality attribute)": [[9, "owlapy.meta_classes.HasCardinality.__slots__"]], "__slots__ (owlapy.meta_classes.hasfiller attribute)": [[9, "owlapy.meta_classes.HasFiller.__slots__"]], "__slots__ (owlapy.meta_classes.hasiri attribute)": [[9, "owlapy.meta_classes.HasIRI.__slots__"]], "__slots__ (owlapy.meta_classes.hasoperands attribute)": [[9, "owlapy.meta_classes.HasOperands.__slots__"]], "get_cardinality() (owlapy.meta_classes.hascardinality method)": [[9, "owlapy.meta_classes.HasCardinality.get_cardinality"]], "get_filler() (owlapy.meta_classes.hasfiller method)": [[9, "owlapy.meta_classes.HasFiller.get_filler"]], "get_iri() (owlapy.meta_classes.hasiri method)": [[9, "owlapy.meta_classes.HasIRI.get_iri"]], "operands() (owlapy.meta_classes.hasoperands method)": [[9, "owlapy.meta_classes.HasOperands.operands"]], "owlapy.meta_classes": [[9, "module-owlapy.meta_classes"]], "addimport (class in owlapy.model)": [[10, "owlapy.model.AddImport"]], "boolean (owlapy.model.xsdvocabulary attribute)": [[10, "owlapy.model.XSDVocabulary.BOOLEAN"]], "booleanowldatatype (in module owlapy.model)": [[10, "owlapy.model.BooleanOWLDatatype"]], "date (owlapy.model.xsdvocabulary attribute)": [[10, "owlapy.model.XSDVocabulary.DATE"]], "date_time (owlapy.model.xsdvocabulary attribute)": [[10, "owlapy.model.XSDVocabulary.DATE_TIME"]], "date_time_stamp (owlapy.model.xsdvocabulary attribute)": [[10, "owlapy.model.XSDVocabulary.DATE_TIME_STAMP"]], "decimal (owlapy.model.xsdvocabulary attribute)": [[10, "owlapy.model.XSDVocabulary.DECIMAL"]], "double (owlapy.model.xsdvocabulary attribute)": [[10, "owlapy.model.XSDVocabulary.DOUBLE"]], "duration (owlapy.model.xsdvocabulary attribute)": [[10, "owlapy.model.XSDVocabulary.DURATION"]], "dateowldatatype (in module owlapy.model)": [[10, "owlapy.model.DateOWLDatatype"]], "datetimeowldatatype (in module owlapy.model)": [[10, "owlapy.model.DateTimeOWLDatatype"]], "doubleowldatatype (in module owlapy.model)": [[10, "owlapy.model.DoubleOWLDatatype"]], "durationowldatatype (in module owlapy.model)": [[10, "owlapy.model.DurationOWLDatatype"]], "float (owlapy.model.xsdvocabulary attribute)": [[10, "owlapy.model.XSDVocabulary.FLOAT"]], "fraction_digits (owlapy.model.owlfacet attribute)": [[10, "owlapy.model.OWLFacet.FRACTION_DIGITS"]], "hascardinality (class in owlapy.model)": [[10, "owlapy.model.HasCardinality"]], "hasfiller (class in owlapy.model)": [[10, "owlapy.model.HasFiller"]], "hasiri (class in owlapy.model)": [[10, "owlapy.model.HasIRI"]], "hasindex (class in owlapy.model)": [[10, "owlapy.model.HasIndex"]], "hasoperands (class in owlapy.model)": [[10, "owlapy.model.HasOperands"]], "integer (owlapy.model.xsdvocabulary attribute)": [[10, "owlapy.model.XSDVocabulary.INTEGER"]], "iri (class in owlapy.model)": [[10, "owlapy.model.IRI"]], "integerowldatatype (in module owlapy.model)": [[10, "owlapy.model.IntegerOWLDatatype"]], "length (owlapy.model.owlfacet attribute)": [[10, "owlapy.model.OWLFacet.LENGTH"]], "long (owlapy.model.xsdvocabulary attribute)": [[10, "owlapy.model.XSDVocabulary.LONG"]], "literals (in module owlapy.model)": [[10, "owlapy.model.Literals"]], "max_exclusive (owlapy.model.owlfacet attribute)": [[10, "owlapy.model.OWLFacet.MAX_EXCLUSIVE"]], "max_inclusive (owlapy.model.owlfacet attribute)": [[10, "owlapy.model.OWLFacet.MAX_INCLUSIVE"]], "max_length (owlapy.model.owlfacet attribute)": [[10, "owlapy.model.OWLFacet.MAX_LENGTH"]], "min_exclusive (owlapy.model.owlfacet attribute)": [[10, "owlapy.model.OWLFacet.MIN_EXCLUSIVE"]], "min_inclusive (owlapy.model.owlfacet attribute)": [[10, "owlapy.model.OWLFacet.MIN_INCLUSIVE"]], "min_length (owlapy.model.owlfacet attribute)": [[10, "owlapy.model.OWLFacet.MIN_LENGTH"]], "move() (in module owlapy.model)": [[10, "owlapy.model.MOVE"]], "numeric_datatypes (in module owlapy.model)": [[10, "owlapy.model.NUMERIC_DATATYPES"]], "owlannotationobject (class in owlapy.model)": [[10, "owlapy.model.OWLAnnotationObject"]], "owlannotationsubject (class in owlapy.model)": [[10, "owlapy.model.OWLAnnotationSubject"]], "owlannotationvalue (class in owlapy.model)": [[10, "owlapy.model.OWLAnnotationValue"]], "owlaxiom (class in owlapy.model)": [[10, "owlapy.model.OWLAxiom"]], "owlbottomdataproperty (in module owlapy.model)": [[10, "owlapy.model.OWLBottomDataProperty"]], "owlbottomobjectproperty (in module owlapy.model)": [[10, "owlapy.model.OWLBottomObjectProperty"]], "owlcardinalityrestriction (class in owlapy.model)": [[10, "owlapy.model.OWLCardinalityRestriction"]], "owlclass (class in owlapy.model)": [[10, "owlapy.model.OWLClass"]], "owlclassaxiom (class in owlapy.model)": [[10, "owlapy.model.OWLClassAxiom"]], "owlclassexpression (class in owlapy.model)": [[10, "owlapy.model.OWLClassExpression"]], "owldataallvaluesfrom (class in owlapy.model)": [[10, "owlapy.model.OWLDataAllValuesFrom"]], "owldatacardinalityrestriction (class in owlapy.model)": [[10, "owlapy.model.OWLDataCardinalityRestriction"]], "owldataexactcardinality (class in owlapy.model)": [[10, "owlapy.model.OWLDataExactCardinality"]], "owldatahasvalue (class in owlapy.model)": [[10, "owlapy.model.OWLDataHasValue"]], "owldatamaxcardinality (class in owlapy.model)": [[10, "owlapy.model.OWLDataMaxCardinality"]], "owldatamincardinality (class in owlapy.model)": [[10, "owlapy.model.OWLDataMinCardinality"]], "owldataoneof (class in owlapy.model)": [[10, "owlapy.model.OWLDataOneOf"]], "owldataproperty (class in owlapy.model)": [[10, "owlapy.model.OWLDataProperty"]], "owldatapropertydomainaxiom (class in owlapy.model)": [[10, "owlapy.model.OWLDataPropertyDomainAxiom"]], "owldatapropertyexpression (class in owlapy.model)": [[10, "owlapy.model.OWLDataPropertyExpression"]], "owldatapropertyrangeaxiom (class in owlapy.model)": [[10, "owlapy.model.OWLDataPropertyRangeAxiom"]], "owldatarange (class in owlapy.model)": [[10, "owlapy.model.OWLDataRange"]], "owldatarestriction (class in owlapy.model)": [[10, "owlapy.model.OWLDataRestriction"]], "owldatasomevaluesfrom (class in owlapy.model)": [[10, "owlapy.model.OWLDataSomeValuesFrom"]], "owldatatype (class in owlapy.model)": [[10, "owlapy.model.OWLDatatype"]], "owlentity (class in owlapy.model)": [[10, "owlapy.model.OWLEntity"]], "owlequivalentclassesaxiom (class in owlapy.model)": [[10, "owlapy.model.OWLEquivalentClassesAxiom"]], "owlfacet (class in owlapy.model)": [[10, "owlapy.model.OWLFacet"]], "owlhasvaluerestriction (class in owlapy.model)": [[10, "owlapy.model.OWLHasValueRestriction"]], "owlimportsdeclaration (class in owlapy.model)": [[10, "owlapy.model.OWLImportsDeclaration"]], "owlindividual (class in owlapy.model)": [[10, "owlapy.model.OWLIndividual"]], "owlliteral (class in owlapy.model)": [[10, "owlapy.model.OWLLiteral"]], "owlnamedindividual (class in owlapy.model)": [[10, "owlapy.model.OWLNamedIndividual"]], "owlnarybooleanclassexpression (class in owlapy.model)": [[10, "owlapy.model.OWLNaryBooleanClassExpression"]], "owlnothing (in module owlapy.model)": [[10, "owlapy.model.OWLNothing"]], "owlobject (class in owlapy.model)": [[10, "owlapy.model.OWLObject"]], "owlobjectallvaluesfrom (class in owlapy.model)": [[10, "owlapy.model.OWLObjectAllValuesFrom"]], "owlobjectcardinalityrestriction (class in owlapy.model)": [[10, "owlapy.model.OWLObjectCardinalityRestriction"]], "owlobjectcomplementof (class in owlapy.model)": [[10, "owlapy.model.OWLObjectComplementOf"]], "owlobjectexactcardinality (class in owlapy.model)": [[10, "owlapy.model.OWLObjectExactCardinality"]], "owlobjecthasself (class in owlapy.model)": [[10, "owlapy.model.OWLObjectHasSelf"]], "owlobjectintersectionof (class in owlapy.model)": [[10, "owlapy.model.OWLObjectIntersectionOf"]], "owlobjectmaxcardinality (class in owlapy.model)": [[10, "owlapy.model.OWLObjectMaxCardinality"]], "owlobjectmincardinality (class in owlapy.model)": [[10, "owlapy.model.OWLObjectMinCardinality"]], "owlobjectproperty (class in owlapy.model)": [[10, "owlapy.model.OWLObjectProperty"]], "owlobjectpropertydomainaxiom (class in owlapy.model)": [[10, "owlapy.model.OWLObjectPropertyDomainAxiom"]], "owlobjectpropertyexpression (class in owlapy.model)": [[10, "owlapy.model.OWLObjectPropertyExpression"]], "owlobjectpropertyrangeaxiom (class in owlapy.model)": [[10, "owlapy.model.OWLObjectPropertyRangeAxiom"]], "owlobjectrestriction (class in owlapy.model)": [[10, "owlapy.model.OWLObjectRestriction"]], "owlobjectsomevaluesfrom (class in owlapy.model)": [[10, "owlapy.model.OWLObjectSomeValuesFrom"]], "owlobjectunionof (class in owlapy.model)": [[10, "owlapy.model.OWLObjectUnionOf"]], "owlontology (class in owlapy.model)": [[10, "owlapy.model.OWLOntology"]], "owlontologychange (class in owlapy.model)": [[10, "owlapy.model.OWLOntologyChange"]], "owlontologyid (class in owlapy.model)": [[10, "owlapy.model.OWLOntologyID"]], "owlontologymanager (class in owlapy.model)": [[10, "owlapy.model.OWLOntologyManager"]], "owlproperty (class in owlapy.model)": [[10, "owlapy.model.OWLProperty"]], "owlpropertyexpression (class in owlapy.model)": [[10, "owlapy.model.OWLPropertyExpression"]], "owlpropertyrange (class in owlapy.model)": [[10, "owlapy.model.OWLPropertyRange"]], "owlquantifieddatarestriction (class in owlapy.model)": [[10, "owlapy.model.OWLQuantifiedDataRestriction"]], "owlquantifiedobjectrestriction (class in owlapy.model)": [[10, "owlapy.model.OWLQuantifiedObjectRestriction"]], "owlquantifiedrestriction (class in owlapy.model)": [[10, "owlapy.model.OWLQuantifiedRestriction"]], "owlrdfvocabulary (class in owlapy.model)": [[10, "owlapy.model.OWLRDFVocabulary"]], "owlreasoner (class in owlapy.model)": [[10, "owlapy.model.OWLReasoner"]], "owlrestriction (class in owlapy.model)": [[10, "owlapy.model.OWLRestriction"]], "owlthing (in module owlapy.model)": [[10, "owlapy.model.OWLThing"]], "owltopdataproperty (in module owlapy.model)": [[10, "owlapy.model.OWLTopDataProperty"]], "owltopobjectproperty (in module owlapy.model)": [[10, "owlapy.model.OWLTopObjectProperty"]], "owl_bottom_data_property (owlapy.model.owlrdfvocabulary attribute)": [[10, "owlapy.model.OWLRDFVocabulary.OWL_BOTTOM_DATA_PROPERTY"]], "owl_bottom_object_property (owlapy.model.owlrdfvocabulary attribute)": [[10, "owlapy.model.OWLRDFVocabulary.OWL_BOTTOM_OBJECT_PROPERTY"]], "owl_class (owlapy.model.owlrdfvocabulary attribute)": [[10, "owlapy.model.OWLRDFVocabulary.OWL_CLASS"]], "owl_named_individual (owlapy.model.owlrdfvocabulary attribute)": [[10, "owlapy.model.OWLRDFVocabulary.OWL_NAMED_INDIVIDUAL"]], "owl_nothing (owlapy.model.owlrdfvocabulary attribute)": [[10, "owlapy.model.OWLRDFVocabulary.OWL_NOTHING"]], "owl_thing (owlapy.model.owlrdfvocabulary attribute)": [[10, "owlapy.model.OWLRDFVocabulary.OWL_THING"]], "owl_top_data_property (owlapy.model.owlrdfvocabulary attribute)": [[10, "owlapy.model.OWLRDFVocabulary.OWL_TOP_DATA_PROPERTY"]], "owl_top_object_property (owlapy.model.owlrdfvocabulary attribute)": [[10, "owlapy.model.OWLRDFVocabulary.OWL_TOP_OBJECT_PROPERTY"]], "pattern (owlapy.model.owlfacet attribute)": [[10, "owlapy.model.OWLFacet.PATTERN"]], "rdfs_literal (owlapy.model.owlrdfvocabulary attribute)": [[10, "owlapy.model.OWLRDFVocabulary.RDFS_LITERAL"]], "string (owlapy.model.xsdvocabulary attribute)": [[10, "owlapy.model.XSDVocabulary.STRING"]], "stringowldatatype (in module owlapy.model)": [[10, "owlapy.model.StringOWLDatatype"]], "time_datatypes (in module owlapy.model)": [[10, "owlapy.model.TIME_DATATYPES"]], "total_digits (owlapy.model.owlfacet attribute)": [[10, "owlapy.model.OWLFacet.TOTAL_DIGITS"]], "topowldatatype (in module owlapy.model)": [[10, "owlapy.model.TopOWLDatatype"]], "xsdvocabulary (class in owlapy.model)": [[10, "owlapy.model.XSDVocabulary"]], "__eq__() (owlapy.model.hasindex method)": [[10, "owlapy.model.HasIndex.__eq__"]], "__eq__() (owlapy.model.iri method)": [[10, "owlapy.model.IRI.__eq__"]], "__eq__() (owlapy.model.owldataallvaluesfrom method)": [[10, "owlapy.model.OWLDataAllValuesFrom.__eq__"]], "__eq__() (owlapy.model.owldatacardinalityrestriction method)": [[10, "owlapy.model.OWLDataCardinalityRestriction.__eq__"]], "__eq__() (owlapy.model.owldatahasvalue method)": [[10, "owlapy.model.OWLDataHasValue.__eq__"]], "__eq__() (owlapy.model.owldataoneof method)": [[10, "owlapy.model.OWLDataOneOf.__eq__"]], "__eq__() (owlapy.model.owldatasomevaluesfrom method)": [[10, "owlapy.model.OWLDataSomeValuesFrom.__eq__"]], "__eq__() (owlapy.model.owlhasvaluerestriction method)": [[10, "owlapy.model.OWLHasValueRestriction.__eq__"]], "__eq__() (owlapy.model.owlnarybooleanclassexpression method)": [[10, "owlapy.model.OWLNaryBooleanClassExpression.__eq__"]], "__eq__() (owlapy.model.owlobject method)": [[10, "owlapy.model.OWLObject.__eq__"]], "__eq__() (owlapy.model.owlobjectallvaluesfrom method)": [[10, "owlapy.model.OWLObjectAllValuesFrom.__eq__"]], "__eq__() (owlapy.model.owlobjectcardinalityrestriction method)": [[10, "owlapy.model.OWLObjectCardinalityRestriction.__eq__"]], "__eq__() (owlapy.model.owlobjectcomplementof method)": [[10, "owlapy.model.OWLObjectComplementOf.__eq__"]], "__eq__() (owlapy.model.owlobjecthasself method)": [[10, "owlapy.model.OWLObjectHasSelf.__eq__"]], "__eq__() (owlapy.model.owlobjectsomevaluesfrom method)": [[10, "owlapy.model.OWLObjectSomeValuesFrom.__eq__"]], "__eq__() (owlapy.model.owlontologyid method)": [[10, "owlapy.model.OWLOntologyID.__eq__"]], "__hash__() (owlapy.model.iri method)": [[10, "owlapy.model.IRI.__hash__"]], "__hash__() (owlapy.model.owldataallvaluesfrom method)": [[10, "owlapy.model.OWLDataAllValuesFrom.__hash__"]], "__hash__() (owlapy.model.owldatacardinalityrestriction method)": [[10, "owlapy.model.OWLDataCardinalityRestriction.__hash__"]], "__hash__() (owlapy.model.owldatahasvalue method)": [[10, "owlapy.model.OWLDataHasValue.__hash__"]], "__hash__() (owlapy.model.owldataoneof method)": [[10, "owlapy.model.OWLDataOneOf.__hash__"]], "__hash__() (owlapy.model.owldatasomevaluesfrom method)": [[10, "owlapy.model.OWLDataSomeValuesFrom.__hash__"]], "__hash__() (owlapy.model.owlhasvaluerestriction method)": [[10, "owlapy.model.OWLHasValueRestriction.__hash__"]], "__hash__() (owlapy.model.owlnarybooleanclassexpression method)": [[10, "owlapy.model.OWLNaryBooleanClassExpression.__hash__"]], "__hash__() (owlapy.model.owlobject method)": [[10, "owlapy.model.OWLObject.__hash__"]], "__hash__() (owlapy.model.owlobjectallvaluesfrom method)": [[10, "owlapy.model.OWLObjectAllValuesFrom.__hash__"]], "__hash__() (owlapy.model.owlobjectcardinalityrestriction method)": [[10, "owlapy.model.OWLObjectCardinalityRestriction.__hash__"]], "__hash__() (owlapy.model.owlobjectcomplementof method)": [[10, "owlapy.model.OWLObjectComplementOf.__hash__"]], "__hash__() (owlapy.model.owlobjecthasself method)": [[10, "owlapy.model.OWLObjectHasSelf.__hash__"]], "__hash__() (owlapy.model.owlobjectsomevaluesfrom method)": [[10, "owlapy.model.OWLObjectSomeValuesFrom.__hash__"]], "__repr__() (owlapy.model.iri method)": [[10, "owlapy.model.IRI.__repr__"]], "__repr__() (owlapy.model.owldataallvaluesfrom method)": [[10, "owlapy.model.OWLDataAllValuesFrom.__repr__"]], "__repr__() (owlapy.model.owldatacardinalityrestriction method)": [[10, "owlapy.model.OWLDataCardinalityRestriction.__repr__"]], "__repr__() (owlapy.model.owldatahasvalue method)": [[10, "owlapy.model.OWLDataHasValue.__repr__"]], "__repr__() (owlapy.model.owldataoneof method)": [[10, "owlapy.model.OWLDataOneOf.__repr__"]], "__repr__() (owlapy.model.owldatasomevaluesfrom method)": [[10, "owlapy.model.OWLDataSomeValuesFrom.__repr__"]], "__repr__() (owlapy.model.owlnarybooleanclassexpression method)": [[10, "owlapy.model.OWLNaryBooleanClassExpression.__repr__"]], "__repr__() (owlapy.model.owlobject method)": [[10, "owlapy.model.OWLObject.__repr__"]], "__repr__() (owlapy.model.owlobjectallvaluesfrom method)": [[10, "owlapy.model.OWLObjectAllValuesFrom.__repr__"]], "__repr__() (owlapy.model.owlobjectcardinalityrestriction method)": [[10, "owlapy.model.OWLObjectCardinalityRestriction.__repr__"]], "__repr__() (owlapy.model.owlobjectcomplementof method)": [[10, "owlapy.model.OWLObjectComplementOf.__repr__"]], "__repr__() (owlapy.model.owlobjecthasself method)": [[10, "owlapy.model.OWLObjectHasSelf.__repr__"]], "__repr__() (owlapy.model.owlobjectsomevaluesfrom method)": [[10, "owlapy.model.OWLObjectSomeValuesFrom.__repr__"]], "__repr__() (owlapy.model.owlontologyid method)": [[10, "owlapy.model.OWLOntologyID.__repr__"]], "__slots__ (owlapy.model.addimport attribute)": [[10, "owlapy.model.AddImport.__slots__"]], "__slots__ (owlapy.model.hascardinality attribute)": [[10, "owlapy.model.HasCardinality.__slots__"]], "__slots__ (owlapy.model.hasfiller attribute)": [[10, "owlapy.model.HasFiller.__slots__"]], "__slots__ (owlapy.model.hasiri attribute)": [[10, "owlapy.model.HasIRI.__slots__"]], "__slots__ (owlapy.model.hasoperands attribute)": [[10, "owlapy.model.HasOperands.__slots__"]], "__slots__ (owlapy.model.iri attribute)": [[10, "owlapy.model.IRI.__slots__"]], "__slots__ (owlapy.model.owlannotationobject attribute)": [[10, "owlapy.model.OWLAnnotationObject.__slots__"]], "__slots__ (owlapy.model.owlannotationsubject attribute)": [[10, "owlapy.model.OWLAnnotationSubject.__slots__"]], "__slots__ (owlapy.model.owlannotationvalue attribute)": [[10, "owlapy.model.OWLAnnotationValue.__slots__"]], "__slots__ (owlapy.model.owlaxiom attribute)": [[10, "owlapy.model.OWLAxiom.__slots__"]], "__slots__ (owlapy.model.owlcardinalityrestriction attribute)": [[10, "owlapy.model.OWLCardinalityRestriction.__slots__"]], "__slots__ (owlapy.model.owlclass attribute)": [[10, "owlapy.model.OWLClass.__slots__"]], "__slots__ (owlapy.model.owlclassaxiom attribute)": [[10, "owlapy.model.OWLClassAxiom.__slots__"]], "__slots__ (owlapy.model.owlclassexpression attribute)": [[10, "owlapy.model.OWLClassExpression.__slots__"]], "__slots__ (owlapy.model.owldataallvaluesfrom attribute)": [[10, "owlapy.model.OWLDataAllValuesFrom.__slots__"]], "__slots__ (owlapy.model.owldatacardinalityrestriction attribute)": [[10, "owlapy.model.OWLDataCardinalityRestriction.__slots__"]], "__slots__ (owlapy.model.owldataexactcardinality attribute)": [[10, "owlapy.model.OWLDataExactCardinality.__slots__"]], "__slots__ (owlapy.model.owldatahasvalue attribute)": [[10, "owlapy.model.OWLDataHasValue.__slots__"]], "__slots__ (owlapy.model.owldatamaxcardinality attribute)": [[10, "owlapy.model.OWLDataMaxCardinality.__slots__"]], "__slots__ (owlapy.model.owldatamincardinality attribute)": [[10, "owlapy.model.OWLDataMinCardinality.__slots__"]], "__slots__ (owlapy.model.owldataproperty attribute)": [[10, "owlapy.model.OWLDataProperty.__slots__"]], "__slots__ (owlapy.model.owldatapropertydomainaxiom attribute)": [[10, "owlapy.model.OWLDataPropertyDomainAxiom.__slots__"]], "__slots__ (owlapy.model.owldatapropertyexpression attribute)": [[10, "owlapy.model.OWLDataPropertyExpression.__slots__"]], "__slots__ (owlapy.model.owldatapropertyrangeaxiom attribute)": [[10, "owlapy.model.OWLDataPropertyRangeAxiom.__slots__"]], "__slots__ (owlapy.model.owldatarestriction attribute)": [[10, "owlapy.model.OWLDataRestriction.__slots__"]], "__slots__ (owlapy.model.owldatasomevaluesfrom attribute)": [[10, "owlapy.model.OWLDataSomeValuesFrom.__slots__"]], "__slots__ (owlapy.model.owldatatype attribute)": [[10, "owlapy.model.OWLDatatype.__slots__"]], "__slots__ (owlapy.model.owlentity attribute)": [[10, "owlapy.model.OWLEntity.__slots__"]], "__slots__ (owlapy.model.owlequivalentclassesaxiom attribute)": [[10, "owlapy.model.OWLEquivalentClassesAxiom.__slots__"]], "__slots__ (owlapy.model.owlhasvaluerestriction attribute)": [[10, "owlapy.model.OWLHasValueRestriction.__slots__"]], "__slots__ (owlapy.model.owlimportsdeclaration attribute)": [[10, "owlapy.model.OWLImportsDeclaration.__slots__"]], "__slots__ (owlapy.model.owlindividual attribute)": [[10, "owlapy.model.OWLIndividual.__slots__"]], "__slots__ (owlapy.model.owlliteral attribute)": [[10, "owlapy.model.OWLLiteral.__slots__"]], "__slots__ (owlapy.model.owlnamedindividual attribute)": [[10, "owlapy.model.OWLNamedIndividual.__slots__"]], "__slots__ (owlapy.model.owlnarybooleanclassexpression attribute)": [[10, "owlapy.model.OWLNaryBooleanClassExpression.__slots__"]], "__slots__ (owlapy.model.owlobject attribute)": [[10, "owlapy.model.OWLObject.__slots__"]], "__slots__ (owlapy.model.owlobjectallvaluesfrom attribute)": [[10, "owlapy.model.OWLObjectAllValuesFrom.__slots__"]], "__slots__ (owlapy.model.owlobjectcardinalityrestriction attribute)": [[10, "owlapy.model.OWLObjectCardinalityRestriction.__slots__"]], "__slots__ (owlapy.model.owlobjectcomplementof attribute)": [[10, "owlapy.model.OWLObjectComplementOf.__slots__"]], "__slots__ (owlapy.model.owlobjectexactcardinality attribute)": [[10, "owlapy.model.OWLObjectExactCardinality.__slots__"]], "__slots__ (owlapy.model.owlobjecthasself attribute)": [[10, "owlapy.model.OWLObjectHasSelf.__slots__"]], "__slots__ (owlapy.model.owlobjectintersectionof attribute)": [[10, "owlapy.model.OWLObjectIntersectionOf.__slots__"]], "__slots__ (owlapy.model.owlobjectmaxcardinality attribute)": [[10, "owlapy.model.OWLObjectMaxCardinality.__slots__"]], "__slots__ (owlapy.model.owlobjectmincardinality attribute)": [[10, "owlapy.model.OWLObjectMinCardinality.__slots__"]], "__slots__ (owlapy.model.owlobjectproperty attribute)": [[10, "owlapy.model.OWLObjectProperty.__slots__"]], "__slots__ (owlapy.model.owlobjectpropertydomainaxiom attribute)": [[10, "owlapy.model.OWLObjectPropertyDomainAxiom.__slots__"]], "__slots__ (owlapy.model.owlobjectpropertyexpression attribute)": [[10, "owlapy.model.OWLObjectPropertyExpression.__slots__"]], "__slots__ (owlapy.model.owlobjectpropertyrangeaxiom attribute)": [[10, "owlapy.model.OWLObjectPropertyRangeAxiom.__slots__"]], "__slots__ (owlapy.model.owlobjectrestriction attribute)": [[10, "owlapy.model.OWLObjectRestriction.__slots__"]], "__slots__ (owlapy.model.owlobjectsomevaluesfrom attribute)": [[10, "owlapy.model.OWLObjectSomeValuesFrom.__slots__"]], "__slots__ (owlapy.model.owlobjectunionof attribute)": [[10, "owlapy.model.OWLObjectUnionOf.__slots__"]], "__slots__ (owlapy.model.owlontology attribute)": [[10, "owlapy.model.OWLOntology.__slots__"]], "__slots__ (owlapy.model.owlontologychange attribute)": [[10, "owlapy.model.OWLOntologyChange.__slots__"]], "__slots__ (owlapy.model.owlontologyid attribute)": [[10, "owlapy.model.OWLOntologyID.__slots__"]], "__slots__ (owlapy.model.owlproperty attribute)": [[10, "owlapy.model.OWLProperty.__slots__"]], "__slots__ (owlapy.model.owlpropertyexpression attribute)": [[10, "owlapy.model.OWLPropertyExpression.__slots__"]], "__slots__ (owlapy.model.owlquantifieddatarestriction attribute)": [[10, "owlapy.model.OWLQuantifiedDataRestriction.__slots__"]], "__slots__ (owlapy.model.owlquantifiedobjectrestriction attribute)": [[10, "owlapy.model.OWLQuantifiedObjectRestriction.__slots__"]], "__slots__ (owlapy.model.owlquantifiedrestriction attribute)": [[10, "owlapy.model.OWLQuantifiedRestriction.__slots__"]], "__slots__ (owlapy.model.owlreasoner attribute)": [[10, "owlapy.model.OWLReasoner.__slots__"]], "__slots__ (owlapy.model.owlrestriction attribute)": [[10, "owlapy.model.OWLRestriction.__slots__"]], "add_axiom() (owlapy.model.owlontologymanager method)": [[10, "owlapy.model.OWLOntologyManager.add_axiom"]], "annotations() (owlapy.model.owlaxiom method)": [[10, "owlapy.model.OWLAxiom.annotations"]], "apply_change() (owlapy.model.owlontologymanager method)": [[10, "owlapy.model.OWLOntologyManager.apply_change"]], "as_anonymous_individual() (owlapy.model.owlannotationobject method)": [[10, "owlapy.model.OWLAnnotationObject.as_anonymous_individual"]], "as_intersection_of_min_max() (owlapy.model.owldataexactcardinality method)": [[10, "owlapy.model.OWLDataExactCardinality.as_intersection_of_min_max"]], "as_intersection_of_min_max() (owlapy.model.owlobjectexactcardinality method)": [[10, "owlapy.model.OWLObjectExactCardinality.as_intersection_of_min_max"]], "as_iri() (owlapy.model.iri method)": [[10, "owlapy.model.IRI.as_iri"]], "as_iri() (owlapy.model.owlannotationobject method)": [[10, "owlapy.model.OWLAnnotationObject.as_iri"]], "as_literal() (owlapy.model.owlannotationvalue method)": [[10, "owlapy.model.OWLAnnotationValue.as_literal"]], "as_literal() (owlapy.model.owlliteral method)": [[10, "owlapy.model.OWLLiteral.as_literal"]], "as_some_values_from() (owlapy.model.owldatahasvalue method)": [[10, "owlapy.model.OWLDataHasValue.as_some_values_from"]], "as_str() (owlapy.model.iri method)": [[10, "owlapy.model.IRI.as_str"]], "classes_in_signature() (owlapy.model.owlontology method)": [[10, "owlapy.model.OWLOntology.classes_in_signature"]], "contains_named_equivalent_class() (owlapy.model.owlequivalentclassesaxiom method)": [[10, "owlapy.model.OWLEquivalentClassesAxiom.contains_named_equivalent_class"]], "contains_owl_nothing() (owlapy.model.owlequivalentclassesaxiom method)": [[10, "owlapy.model.OWLEquivalentClassesAxiom.contains_owl_nothing"]], "contains_owl_thing() (owlapy.model.owlequivalentclassesaxiom method)": [[10, "owlapy.model.OWLEquivalentClassesAxiom.contains_owl_thing"]], "create() (owlapy.model.iri static method)": [[10, "owlapy.model.IRI.create"]], "create_ontology() (owlapy.model.owlontologymanager method)": [[10, "owlapy.model.OWLOntologyManager.create_ontology"]], "data_properties_in_signature() (owlapy.model.owlontology method)": [[10, "owlapy.model.OWLOntology.data_properties_in_signature"]], "data_property_domain_axioms() (owlapy.model.owlontology method)": [[10, "owlapy.model.OWLOntology.data_property_domain_axioms"]], "data_property_domains() (owlapy.model.owlreasoner method)": [[10, "owlapy.model.OWLReasoner.data_property_domains"]], "data_property_range_axioms() (owlapy.model.owlontology method)": [[10, "owlapy.model.OWLOntology.data_property_range_axioms"]], "data_property_values() (owlapy.model.owlreasoner method)": [[10, "owlapy.model.OWLReasoner.data_property_values"]], "different_individuals() (owlapy.model.owlreasoner method)": [[10, "owlapy.model.OWLReasoner.different_individuals"]], "disjoint_classes() (owlapy.model.owlreasoner method)": [[10, "owlapy.model.OWLReasoner.disjoint_classes"]], "disjoint_data_properties() (owlapy.model.owlreasoner method)": [[10, "owlapy.model.OWLReasoner.disjoint_data_properties"]], "disjoint_object_properties() (owlapy.model.owlreasoner method)": [[10, "owlapy.model.OWLReasoner.disjoint_object_properties"]], "equivalent_classes() (owlapy.model.owlreasoner method)": [[10, "owlapy.model.OWLReasoner.equivalent_classes"]], "equivalent_classes_axioms() (owlapy.model.owlontology method)": [[10, "owlapy.model.OWLOntology.equivalent_classes_axioms"]], "equivalent_data_properties() (owlapy.model.owlreasoner method)": [[10, "owlapy.model.OWLReasoner.equivalent_data_properties"]], "equivalent_object_properties() (owlapy.model.owlreasoner method)": [[10, "owlapy.model.OWLReasoner.equivalent_object_properties"]], "flush() (owlapy.model.owlreasoner method)": [[10, "owlapy.model.OWLReasoner.flush"]], "from_str() (owlapy.model.owlfacet static method)": [[10, "owlapy.model.OWLFacet.from_str"]], "general_class_axioms() (owlapy.model.owlontology method)": [[10, "owlapy.model.OWLOntology.general_class_axioms"]], "get_cardinality() (owlapy.model.hascardinality method)": [[10, "owlapy.model.HasCardinality.get_cardinality"]], "get_cardinality() (owlapy.model.owlcardinalityrestriction method)": [[10, "owlapy.model.OWLCardinalityRestriction.get_cardinality"]], "get_datatype() (owlapy.model.owlliteral method)": [[10, "owlapy.model.OWLLiteral.get_datatype"]], "get_default_document_iri() (owlapy.model.owlontologyid method)": [[10, "owlapy.model.OWLOntologyID.get_default_document_iri"]], "get_filler() (owlapy.model.hasfiller method)": [[10, "owlapy.model.HasFiller.get_filler"]], "get_filler() (owlapy.model.owlcardinalityrestriction method)": [[10, "owlapy.model.OWLCardinalityRestriction.get_filler"]], "get_filler() (owlapy.model.owlhasvaluerestriction method)": [[10, "owlapy.model.OWLHasValueRestriction.get_filler"]], "get_filler() (owlapy.model.owlquantifieddatarestriction method)": [[10, "owlapy.model.OWLQuantifiedDataRestriction.get_filler"]], "get_filler() (owlapy.model.owlquantifiedobjectrestriction method)": [[10, "owlapy.model.OWLQuantifiedObjectRestriction.get_filler"]], "get_import_declaration() (owlapy.model.addimport method)": [[10, "owlapy.model.AddImport.get_import_declaration"]], "get_inverse_property() (owlapy.model.owlobjectproperty method)": [[10, "owlapy.model.OWLObjectProperty.get_inverse_property"]], "get_inverse_property() (owlapy.model.owlobjectpropertyexpression method)": [[10, "owlapy.model.OWLObjectPropertyExpression.get_inverse_property"]], "get_iri() (owlapy.model.hasiri method)": [[10, "owlapy.model.HasIRI.get_iri"]], "get_iri() (owlapy.model.owlclass method)": [[10, "owlapy.model.OWLClass.get_iri"]], "get_iri() (owlapy.model.owldataproperty method)": [[10, "owlapy.model.OWLDataProperty.get_iri"]], "get_iri() (owlapy.model.owldatatype method)": [[10, "owlapy.model.OWLDatatype.get_iri"]], "get_iri() (owlapy.model.owlimportsdeclaration method)": [[10, "owlapy.model.OWLImportsDeclaration.get_iri"]], "get_iri() (owlapy.model.owlnamedindividual method)": [[10, "owlapy.model.OWLNamedIndividual.get_iri"]], "get_iri() (owlapy.model.owlobjectproperty method)": [[10, "owlapy.model.OWLObjectProperty.get_iri"]], "get_literal() (owlapy.model.owlliteral method)": [[10, "owlapy.model.OWLLiteral.get_literal"]], "get_named_property() (owlapy.model.owlobjectproperty method)": [[10, "owlapy.model.OWLObjectProperty.get_named_property"]], "get_named_property() (owlapy.model.owlobjectpropertyexpression method)": [[10, "owlapy.model.OWLObjectPropertyExpression.get_named_property"]], "get_namespace() (owlapy.model.iri method)": [[10, "owlapy.model.IRI.get_namespace"]], "get_nnf() (owlapy.model.owlclass method)": [[10, "owlapy.model.OWLClass.get_nnf"]], "get_nnf() (owlapy.model.owlclassexpression method)": [[10, "owlapy.model.OWLClassExpression.get_nnf"]], "get_object_complement_of() (owlapy.model.owlclass method)": [[10, "owlapy.model.OWLClass.get_object_complement_of"]], "get_object_complement_of() (owlapy.model.owlclassexpression method)": [[10, "owlapy.model.OWLClassExpression.get_object_complement_of"]], "get_ontology() (owlapy.model.owlontologychange method)": [[10, "owlapy.model.OWLOntologyChange.get_ontology"]], "get_ontology_id() (owlapy.model.owlontology method)": [[10, "owlapy.model.OWLOntology.get_ontology_id"]], "get_ontology_iri() (owlapy.model.owlontologyid method)": [[10, "owlapy.model.OWLOntologyID.get_ontology_iri"]], "get_operand() (owlapy.model.owlobjectcomplementof method)": [[10, "owlapy.model.OWLObjectComplementOf.get_operand"]], "get_owl_ontology_manager() (owlapy.model.owlontology method)": [[10, "owlapy.model.OWLOntology.get_owl_ontology_manager"]], "get_property() (owlapy.model.owldataallvaluesfrom method)": [[10, "owlapy.model.OWLDataAllValuesFrom.get_property"]], "get_property() (owlapy.model.owldatacardinalityrestriction method)": [[10, "owlapy.model.OWLDataCardinalityRestriction.get_property"]], "get_property() (owlapy.model.owldatahasvalue method)": [[10, "owlapy.model.OWLDataHasValue.get_property"]], "get_property() (owlapy.model.owldatasomevaluesfrom method)": [[10, "owlapy.model.OWLDataSomeValuesFrom.get_property"]], "get_property() (owlapy.model.owlobjectallvaluesfrom method)": [[10, "owlapy.model.OWLObjectAllValuesFrom.get_property"]], "get_property() (owlapy.model.owlobjectcardinalityrestriction method)": [[10, "owlapy.model.OWLObjectCardinalityRestriction.get_property"]], "get_property() (owlapy.model.owlobjecthasself method)": [[10, "owlapy.model.OWLObjectHasSelf.get_property"]], "get_property() (owlapy.model.owlobjectrestriction method)": [[10, "owlapy.model.OWLObjectRestriction.get_property"]], "get_property() (owlapy.model.owlobjectsomevaluesfrom method)": [[10, "owlapy.model.OWLObjectSomeValuesFrom.get_property"]], "get_property() (owlapy.model.owlrestriction method)": [[10, "owlapy.model.OWLRestriction.get_property"]], "get_remainder() (owlapy.model.iri method)": [[10, "owlapy.model.IRI.get_remainder"]], "get_root_ontology() (owlapy.model.owlreasoner method)": [[10, "owlapy.model.OWLReasoner.get_root_ontology"]], "get_short_form() (owlapy.model.iri method)": [[10, "owlapy.model.IRI.get_short_form"]], "get_version_iri() (owlapy.model.owlontologyid method)": [[10, "owlapy.model.OWLOntologyID.get_version_iri"]], "individuals_in_signature() (owlapy.model.owlontology method)": [[10, "owlapy.model.OWLOntology.individuals_in_signature"]], "instances() (owlapy.model.owlreasoner method)": [[10, "owlapy.model.OWLReasoner.instances"]], "iri (owlapy.model.owlnamedindividual property)": [[10, "owlapy.model.OWLNamedIndividual.iri"]], "iri (owlapy.model.owlobjectproperty property)": [[10, "owlapy.model.OWLObjectProperty.iri"]], "is_annotated() (owlapy.model.owlaxiom method)": [[10, "owlapy.model.OWLAxiom.is_annotated"]], "is_annotation_axiom() (owlapy.model.owlaxiom method)": [[10, "owlapy.model.OWLAxiom.is_annotation_axiom"]], "is_anonymous() (owlapy.model.owlentity method)": [[10, "owlapy.model.OWLEntity.is_anonymous"]], "is_anonymous() (owlapy.model.owlobject method)": [[10, "owlapy.model.OWLObject.is_anonymous"]], "is_anonymous() (owlapy.model.owlontology method)": [[10, "owlapy.model.OWLOntology.is_anonymous"]], "is_anonymous() (owlapy.model.owlontologyid method)": [[10, "owlapy.model.OWLOntologyID.is_anonymous"]], "is_boolean() (owlapy.model.owlliteral method)": [[10, "owlapy.model.OWLLiteral.is_boolean"]], "is_data_property_expression() (owlapy.model.owldatapropertyexpression method)": [[10, "owlapy.model.OWLDataPropertyExpression.is_data_property_expression"]], "is_data_property_expression() (owlapy.model.owlpropertyexpression method)": [[10, "owlapy.model.OWLPropertyExpression.is_data_property_expression"]], "is_data_restriction() (owlapy.model.owldatarestriction method)": [[10, "owlapy.model.OWLDataRestriction.is_data_restriction"]], "is_data_restriction() (owlapy.model.owlrestriction method)": [[10, "owlapy.model.OWLRestriction.is_data_restriction"]], "is_date() (owlapy.model.owlliteral method)": [[10, "owlapy.model.OWLLiteral.is_date"]], "is_datetime() (owlapy.model.owlliteral method)": [[10, "owlapy.model.OWLLiteral.is_datetime"]], "is_double() (owlapy.model.owlliteral method)": [[10, "owlapy.model.OWLLiteral.is_double"]], "is_duration() (owlapy.model.owlliteral method)": [[10, "owlapy.model.OWLLiteral.is_duration"]], "is_integer() (owlapy.model.owlliteral method)": [[10, "owlapy.model.OWLLiteral.is_integer"]], "is_isolated() (owlapy.model.owlreasoner method)": [[10, "owlapy.model.OWLReasoner.is_isolated"]], "is_literal() (owlapy.model.owlannotationvalue method)": [[10, "owlapy.model.OWLAnnotationValue.is_literal"]], "is_literal() (owlapy.model.owlliteral method)": [[10, "owlapy.model.OWLLiteral.is_literal"]], "is_logical_axiom() (owlapy.model.owlaxiom method)": [[10, "owlapy.model.OWLAxiom.is_logical_axiom"]], "is_nothing() (owlapy.model.iri method)": [[10, "owlapy.model.IRI.is_nothing"]], "is_object_property_expression() (owlapy.model.owlobjectpropertyexpression method)": [[10, "owlapy.model.OWLObjectPropertyExpression.is_object_property_expression"]], "is_object_property_expression() (owlapy.model.owlpropertyexpression method)": [[10, "owlapy.model.OWLPropertyExpression.is_object_property_expression"]], "is_object_restriction() (owlapy.model.owlobjectrestriction method)": [[10, "owlapy.model.OWLObjectRestriction.is_object_restriction"]], "is_object_restriction() (owlapy.model.owlrestriction method)": [[10, "owlapy.model.OWLRestriction.is_object_restriction"]], "is_owl_nothing() (owlapy.model.owlclass method)": [[10, "owlapy.model.OWLClass.is_owl_nothing"]], "is_owl_nothing() (owlapy.model.owlclassexpression method)": [[10, "owlapy.model.OWLClassExpression.is_owl_nothing"]], "is_owl_thing() (owlapy.model.owlclass method)": [[10, "owlapy.model.OWLClass.is_owl_thing"]], "is_owl_thing() (owlapy.model.owlclassexpression method)": [[10, "owlapy.model.OWLClassExpression.is_owl_thing"]], "is_owl_top_data_property() (owlapy.model.owldataproperty method)": [[10, "owlapy.model.OWLDataProperty.is_owl_top_data_property"]], "is_owl_top_data_property() (owlapy.model.owlpropertyexpression method)": [[10, "owlapy.model.OWLPropertyExpression.is_owl_top_data_property"]], "is_owl_top_object_property() (owlapy.model.owlobjectproperty method)": [[10, "owlapy.model.OWLObjectProperty.is_owl_top_object_property"]], "is_owl_top_object_property() (owlapy.model.owlpropertyexpression method)": [[10, "owlapy.model.OWLPropertyExpression.is_owl_top_object_property"]], "is_reserved_vocabulary() (owlapy.model.iri method)": [[10, "owlapy.model.IRI.is_reserved_vocabulary"]], "is_string() (owlapy.model.owlliteral method)": [[10, "owlapy.model.OWLLiteral.is_string"]], "is_thing() (owlapy.model.iri method)": [[10, "owlapy.model.IRI.is_thing"]], "is_using_triplestore() (owlapy.model.owlreasoner method)": [[10, "owlapy.model.OWLReasoner.is_using_triplestore"]], "load_ontology() (owlapy.model.owlontologymanager method)": [[10, "owlapy.model.OWLOntologyManager.load_ontology"]], "named_classes() (owlapy.model.owlequivalentclassesaxiom method)": [[10, "owlapy.model.OWLEquivalentClassesAxiom.named_classes"]], "object_properties_in_signature() (owlapy.model.owlontology method)": [[10, "owlapy.model.OWLOntology.object_properties_in_signature"]], "object_property_domain_axioms() (owlapy.model.owlontology method)": [[10, "owlapy.model.OWLOntology.object_property_domain_axioms"]], "object_property_domains() (owlapy.model.owlreasoner method)": [[10, "owlapy.model.OWLReasoner.object_property_domains"]], "object_property_range_axioms() (owlapy.model.owlontology method)": [[10, "owlapy.model.OWLOntology.object_property_range_axioms"]], "object_property_ranges() (owlapy.model.owlreasoner method)": [[10, "owlapy.model.OWLReasoner.object_property_ranges"]], "object_property_values() (owlapy.model.owlreasoner method)": [[10, "owlapy.model.OWLReasoner.object_property_values"]], "operands() (owlapy.model.hasoperands method)": [[10, "owlapy.model.HasOperands.operands"]], "operands() (owlapy.model.owldataoneof method)": [[10, "owlapy.model.OWLDataOneOf.operands"]], "operands() (owlapy.model.owlnarybooleanclassexpression method)": [[10, "owlapy.model.OWLNaryBooleanClassExpression.operands"]], "operands() (owlapy.model.owlobjectcomplementof method)": [[10, "owlapy.model.OWLObjectComplementOf.operands"]], "operator (owlapy.model.owlfacet property)": [[10, "owlapy.model.OWLFacet.operator"]], "owlapy.model": [[10, "module-owlapy.model"]], "parse_boolean() (owlapy.model.owlliteral method)": [[10, "owlapy.model.OWLLiteral.parse_boolean"]], "parse_date() (owlapy.model.owlliteral method)": [[10, "owlapy.model.OWLLiteral.parse_date"]], "parse_datetime() (owlapy.model.owlliteral method)": [[10, "owlapy.model.OWLLiteral.parse_datetime"]], "parse_double() (owlapy.model.owlliteral method)": [[10, "owlapy.model.OWLLiteral.parse_double"]], "parse_duration() (owlapy.model.owlliteral method)": [[10, "owlapy.model.OWLLiteral.parse_duration"]], "parse_integer() (owlapy.model.owlliteral method)": [[10, "owlapy.model.OWLLiteral.parse_integer"]], "parse_string() (owlapy.model.owlliteral method)": [[10, "owlapy.model.OWLLiteral.parse_string"]], "reminder (owlapy.model.iri property)": [[10, "owlapy.model.IRI.reminder"]], "reminder (owlapy.model.owlclass property)": [[10, "owlapy.model.OWLClass.reminder"]], "remove_axiom() (owlapy.model.owlontologymanager method)": [[10, "owlapy.model.OWLOntologyManager.remove_axiom"]], "same_individuals() (owlapy.model.owlreasoner method)": [[10, "owlapy.model.OWLReasoner.same_individuals"]], "save_ontology() (owlapy.model.owlontologymanager method)": [[10, "owlapy.model.OWLOntologyManager.save_ontology"]], "str (owlapy.model.iri property)": [[10, "owlapy.model.IRI.str"]], "str (owlapy.model.owlclass property)": [[10, "owlapy.model.OWLClass.str"]], "str (owlapy.model.owlnamedindividual property)": [[10, "owlapy.model.OWLNamedIndividual.str"]], "str (owlapy.model.owlobjectproperty property)": [[10, "owlapy.model.OWLObjectProperty.str"]], "sub_classes() (owlapy.model.owlreasoner method)": [[10, "owlapy.model.OWLReasoner.sub_classes"]], "sub_data_properties() (owlapy.model.owlreasoner method)": [[10, "owlapy.model.OWLReasoner.sub_data_properties"]], "sub_object_properties() (owlapy.model.owlreasoner method)": [[10, "owlapy.model.OWLReasoner.sub_object_properties"]], "super_classes() (owlapy.model.owlreasoner method)": [[10, "owlapy.model.OWLReasoner.super_classes"]], "super_data_properties() (owlapy.model.owlreasoner method)": [[10, "owlapy.model.OWLReasoner.super_data_properties"]], "super_object_properties() (owlapy.model.owlreasoner method)": [[10, "owlapy.model.OWLReasoner.super_object_properties"]], "symbolic_form (owlapy.model.owlfacet property)": [[10, "owlapy.model.OWLFacet.symbolic_form"]], "to_python() (owlapy.model.owlliteral method)": [[10, "owlapy.model.OWLLiteral.to_python"]], "to_string_id() (owlapy.model.owlentity method)": [[10, "owlapy.model.OWLEntity.to_string_id"]], "type_index (owlapy.model.hasindex attribute)": [[10, "owlapy.model.HasIndex.type_index"]], "type_index (owlapy.model.iri attribute)": [[10, "owlapy.model.IRI.type_index"]], "type_index (owlapy.model.owlclass attribute)": [[10, "owlapy.model.OWLClass.type_index"]], "type_index (owlapy.model.owldataallvaluesfrom attribute)": [[10, "owlapy.model.OWLDataAllValuesFrom.type_index"]], "type_index (owlapy.model.owldataexactcardinality attribute)": [[10, "owlapy.model.OWLDataExactCardinality.type_index"]], "type_index (owlapy.model.owldatahasvalue attribute)": [[10, "owlapy.model.OWLDataHasValue.type_index"]], "type_index (owlapy.model.owldatamaxcardinality attribute)": [[10, "owlapy.model.OWLDataMaxCardinality.type_index"]], "type_index (owlapy.model.owldatamincardinality attribute)": [[10, "owlapy.model.OWLDataMinCardinality.type_index"]], "type_index (owlapy.model.owldataoneof attribute)": [[10, "owlapy.model.OWLDataOneOf.type_index"]], "type_index (owlapy.model.owldataproperty attribute)": [[10, "owlapy.model.OWLDataProperty.type_index"]], "type_index (owlapy.model.owldatasomevaluesfrom attribute)": [[10, "owlapy.model.OWLDataSomeValuesFrom.type_index"]], "type_index (owlapy.model.owldatatype attribute)": [[10, "owlapy.model.OWLDatatype.type_index"]], "type_index (owlapy.model.owlliteral attribute)": [[10, "owlapy.model.OWLLiteral.type_index"]], "type_index (owlapy.model.owlnamedindividual attribute)": [[10, "owlapy.model.OWLNamedIndividual.type_index"]], "type_index (owlapy.model.owlobjectallvaluesfrom attribute)": [[10, "owlapy.model.OWLObjectAllValuesFrom.type_index"]], "type_index (owlapy.model.owlobjectcomplementof attribute)": [[10, "owlapy.model.OWLObjectComplementOf.type_index"]], "type_index (owlapy.model.owlobjectexactcardinality attribute)": [[10, "owlapy.model.OWLObjectExactCardinality.type_index"]], "type_index (owlapy.model.owlobjecthasself attribute)": [[10, "owlapy.model.OWLObjectHasSelf.type_index"]], "type_index (owlapy.model.owlobjectintersectionof attribute)": [[10, "owlapy.model.OWLObjectIntersectionOf.type_index"]], "type_index (owlapy.model.owlobjectmaxcardinality attribute)": [[10, "owlapy.model.OWLObjectMaxCardinality.type_index"]], "type_index (owlapy.model.owlobjectmincardinality attribute)": [[10, "owlapy.model.OWLObjectMinCardinality.type_index"]], "type_index (owlapy.model.owlobjectproperty attribute)": [[10, "owlapy.model.OWLObjectProperty.type_index"]], "type_index (owlapy.model.owlobjectsomevaluesfrom attribute)": [[10, "owlapy.model.OWLObjectSomeValuesFrom.type_index"]], "type_index (owlapy.model.owlobjectunionof attribute)": [[10, "owlapy.model.OWLObjectUnionOf.type_index"]], "type_index (owlapy.model.owlontology attribute)": [[10, "owlapy.model.OWLOntology.type_index"]], "types() (owlapy.model.owlreasoner method)": [[10, "owlapy.model.OWLReasoner.types"]], "values() (owlapy.model.owldataoneof method)": [[10, "owlapy.model.OWLDataOneOf.values"]], "owldatatypemaxexclusiverestriction() (in module owlapy.model.providers)": [[11, "owlapy.model.providers.OWLDatatypeMaxExclusiveRestriction"]], "owldatatypemaxinclusiverestriction() (in module owlapy.model.providers)": [[11, "owlapy.model.providers.OWLDatatypeMaxInclusiveRestriction"]], "owldatatypeminexclusiverestriction() (in module owlapy.model.providers)": [[11, "owlapy.model.providers.OWLDatatypeMinExclusiveRestriction"]], "owldatatypemininclusiverestriction() (in module owlapy.model.providers)": [[11, "owlapy.model.providers.OWLDatatypeMinInclusiveRestriction"]], "owldatatypeminmaxexclusiverestriction() (in module owlapy.model.providers)": [[11, "owlapy.model.providers.OWLDatatypeMinMaxExclusiveRestriction"]], "owldatatypeminmaxinclusiverestriction() (in module owlapy.model.providers)": [[11, "owlapy.model.providers.OWLDatatypeMinMaxInclusiveRestriction"]], "restriction_literals (in module owlapy.model.providers)": [[11, "owlapy.model.providers.Restriction_Literals"]], "owlapy.model.providers": [[11, "module-owlapy.model.providers"]], "namespaces (class in owlapy.namespaces)": [[12, "owlapy.namespaces.Namespaces"]], "owl (in module owlapy.namespaces)": [[12, "owlapy.namespaces.OWL"]], "rdf (in module owlapy.namespaces)": [[12, "owlapy.namespaces.RDF"]], "rdfs (in module owlapy.namespaces)": [[12, "owlapy.namespaces.RDFS"]], "xsd (in module owlapy.namespaces)": [[12, "owlapy.namespaces.XSD"]], "__eq__() (owlapy.namespaces.namespaces method)": [[12, "owlapy.namespaces.Namespaces.__eq__"]], "__hash__() (owlapy.namespaces.namespaces method)": [[12, "owlapy.namespaces.Namespaces.__hash__"]], "__repr__() (owlapy.namespaces.namespaces method)": [[12, "owlapy.namespaces.Namespaces.__repr__"]], "__slots__ (owlapy.namespaces.namespaces attribute)": [[12, "owlapy.namespaces.Namespaces.__slots__"]], "ns (owlapy.namespaces.namespaces property)": [[12, "owlapy.namespaces.Namespaces.ns"]], "owlapy.namespaces": [[12, "module-owlapy.namespaces"]], "prefix (owlapy.namespaces.namespaces property)": [[12, "owlapy.namespaces.Namespaces.prefix"]], "owl2sparqlconverter (class in owlapy.owl2sparql.converter)": [[13, "owlapy.owl2sparql.converter.Owl2SparqlConverter"]], "variablesmapping (class in owlapy.owl2sparql.converter)": [[13, "owlapy.owl2sparql.converter.VariablesMapping"]], "__contains__() (owlapy.owl2sparql.converter.variablesmapping method)": [[13, "owlapy.owl2sparql.converter.VariablesMapping.__contains__"]], "__getitem__() (owlapy.owl2sparql.converter.variablesmapping method)": [[13, "owlapy.owl2sparql.converter.VariablesMapping.__getitem__"]], "__slots__ (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[13, "owlapy.owl2sparql.converter.Owl2SparqlConverter.__slots__"]], "__slots__ (owlapy.owl2sparql.converter.variablesmapping attribute)": [[13, "owlapy.owl2sparql.converter.VariablesMapping.__slots__"]], "append() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[13, "owlapy.owl2sparql.converter.Owl2SparqlConverter.append"]], "append_triple() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[13, "owlapy.owl2sparql.converter.Owl2SparqlConverter.append_triple"]], "as_query() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[13, "owlapy.owl2sparql.converter.Owl2SparqlConverter.as_query"]], "ce (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[13, "owlapy.owl2sparql.converter.Owl2SparqlConverter.ce"]], "cnt (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[13, "owlapy.owl2sparql.converter.Owl2SparqlConverter.cnt"]], "convert() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[13, "owlapy.owl2sparql.converter.Owl2SparqlConverter.convert"]], "converter (in module owlapy.owl2sparql.converter)": [[13, "owlapy.owl2sparql.converter.converter"]], "current_variable (owlapy.owl2sparql.converter.owl2sparqlconverter property)": [[13, "owlapy.owl2sparql.converter.Owl2SparqlConverter.current_variable"]], "get_variable() (owlapy.owl2sparql.converter.variablesmapping method)": [[13, "owlapy.owl2sparql.converter.VariablesMapping.get_variable"]], "grouping_vars (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[13, "owlapy.owl2sparql.converter.Owl2SparqlConverter.grouping_vars"]], "having_conditions (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[13, "owlapy.owl2sparql.converter.Owl2SparqlConverter.having_conditions"]], "mapping (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[13, "owlapy.owl2sparql.converter.Owl2SparqlConverter.mapping"]], "modal_depth (owlapy.owl2sparql.converter.owl2sparqlconverter property)": [[13, "owlapy.owl2sparql.converter.Owl2SparqlConverter.modal_depth"]], "new_count_var() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[13, "owlapy.owl2sparql.converter.Owl2SparqlConverter.new_count_var"]], "new_individual_variable() (owlapy.owl2sparql.converter.variablesmapping method)": [[13, "owlapy.owl2sparql.converter.VariablesMapping.new_individual_variable"]], "new_property_variable() (owlapy.owl2sparql.converter.variablesmapping method)": [[13, "owlapy.owl2sparql.converter.VariablesMapping.new_property_variable"]], "owl_expression_to_sparql() (in module owlapy.owl2sparql.converter)": [[13, "owlapy.owl2sparql.converter.owl_expression_to_sparql"]], "owlapy.owl2sparql.converter": [[13, "module-owlapy.owl2sparql.converter"]], "parent (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[13, "owlapy.owl2sparql.converter.Owl2SparqlConverter.parent"]], "parent_var (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[13, "owlapy.owl2sparql.converter.Owl2SparqlConverter.parent_var"]], "peek() (in module owlapy.owl2sparql.converter)": [[13, "owlapy.owl2sparql.converter.peek"]], "process() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[13, "owlapy.owl2sparql.converter.Owl2SparqlConverter.process"]], "properties (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[13, "owlapy.owl2sparql.converter.Owl2SparqlConverter.properties"]], "render() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[13, "owlapy.owl2sparql.converter.Owl2SparqlConverter.render"]], "sparql (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[13, "owlapy.owl2sparql.converter.Owl2SparqlConverter.sparql"]], "stack_parent() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[13, "owlapy.owl2sparql.converter.Owl2SparqlConverter.stack_parent"]], "stack_variable() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[13, "owlapy.owl2sparql.converter.Owl2SparqlConverter.stack_variable"]], "triple() (owlapy.owl2sparql.converter.owl2sparqlconverter method)": [[13, "owlapy.owl2sparql.converter.Owl2SparqlConverter.triple"]], "variable_entities (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[13, "owlapy.owl2sparql.converter.Owl2SparqlConverter.variable_entities"]], "variables (owlapy.owl2sparql.converter.owl2sparqlconverter attribute)": [[13, "owlapy.owl2sparql.converter.Owl2SparqlConverter.variables"]], "owlapy.owl2sparql": [[14, "module-owlapy.owl2sparql"]], "owlannotationobject (class in owlapy.owl_annotation)": [[15, "owlapy.owl_annotation.OWLAnnotationObject"]], "owlannotationsubject (class in owlapy.owl_annotation)": [[15, "owlapy.owl_annotation.OWLAnnotationSubject"]], "owlannotationvalue (class in owlapy.owl_annotation)": [[15, "owlapy.owl_annotation.OWLAnnotationValue"]], "__slots__ (owlapy.owl_annotation.owlannotationobject attribute)": [[15, "owlapy.owl_annotation.OWLAnnotationObject.__slots__"]], "__slots__ (owlapy.owl_annotation.owlannotationsubject attribute)": [[15, "owlapy.owl_annotation.OWLAnnotationSubject.__slots__"]], "__slots__ (owlapy.owl_annotation.owlannotationvalue attribute)": [[15, "owlapy.owl_annotation.OWLAnnotationValue.__slots__"]], "as_anonymous_individual() (owlapy.owl_annotation.owlannotationobject method)": [[15, "owlapy.owl_annotation.OWLAnnotationObject.as_anonymous_individual"]], "as_iri() (owlapy.owl_annotation.owlannotationobject method)": [[15, "owlapy.owl_annotation.OWLAnnotationObject.as_iri"]], "as_literal() (owlapy.owl_annotation.owlannotationvalue method)": [[15, "owlapy.owl_annotation.OWLAnnotationValue.as_literal"]], "is_literal() (owlapy.owl_annotation.owlannotationvalue method)": [[15, "owlapy.owl_annotation.OWLAnnotationValue.is_literal"]], "owlapy.owl_annotation": [[15, "module-owlapy.owl_annotation"]], "owlannotation (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLAnnotation"]], "owlannotationassertionaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom"]], "owlannotationaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLAnnotationAxiom"]], "owlannotationproperty (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLAnnotationProperty"]], "owlannotationpropertydomainaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom"]], "owlannotationpropertyrangeaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom"]], "owlasymmetricobjectpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLAsymmetricObjectPropertyAxiom"]], "owlaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLAxiom"]], "owlclassassertionaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLClassAssertionAxiom"]], "owlclassaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLClassAxiom"]], "owldatapropertyassertionaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDataPropertyAssertionAxiom"]], "owldatapropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDataPropertyAxiom"]], "owldatapropertycharacteristicaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom"]], "owldatapropertydomainaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDataPropertyDomainAxiom"]], "owldatapropertyrangeaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDataPropertyRangeAxiom"]], "owldatatypedefinitionaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom"]], "owldeclarationaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDeclarationAxiom"]], "owldifferentindividualsaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDifferentIndividualsAxiom"]], "owldisjointclassesaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDisjointClassesAxiom"]], "owldisjointdatapropertiesaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDisjointDataPropertiesAxiom"]], "owldisjointobjectpropertiesaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDisjointObjectPropertiesAxiom"]], "owldisjointunionaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLDisjointUnionAxiom"]], "owlequivalentclassesaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLEquivalentClassesAxiom"]], "owlequivalentdatapropertiesaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLEquivalentDataPropertiesAxiom"]], "owlequivalentobjectpropertiesaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLEquivalentObjectPropertiesAxiom"]], "owlfunctionaldatapropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLFunctionalDataPropertyAxiom"]], "owlfunctionalobjectpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLFunctionalObjectPropertyAxiom"]], "owlhaskeyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLHasKeyAxiom"]], "owlindividualaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLIndividualAxiom"]], "owlinversefunctionalobjectpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLInverseFunctionalObjectPropertyAxiom"]], "owlinverseobjectpropertiesaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom"]], "owlirreflexiveobjectpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLIrreflexiveObjectPropertyAxiom"]], "owllogicalaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLLogicalAxiom"]], "owlnaryaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLNaryAxiom"]], "owlnaryclassaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLNaryClassAxiom"]], "owlnaryindividualaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLNaryIndividualAxiom"]], "owlnarypropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLNaryPropertyAxiom"]], "owlnegativedatapropertyassertionaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLNegativeDataPropertyAssertionAxiom"]], "owlnegativeobjectpropertyassertionaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLNegativeObjectPropertyAssertionAxiom"]], "owlobjectpropertyassertionaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLObjectPropertyAssertionAxiom"]], "owlobjectpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLObjectPropertyAxiom"]], "owlobjectpropertycharacteristicaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom"]], "owlobjectpropertydomainaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLObjectPropertyDomainAxiom"]], "owlobjectpropertyrangeaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLObjectPropertyRangeAxiom"]], "owlpropertyassertionaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLPropertyAssertionAxiom"]], "owlpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLPropertyAxiom"]], "owlpropertydomainaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLPropertyDomainAxiom"]], "owlpropertyrangeaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLPropertyRangeAxiom"]], "owlreflexiveobjectpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLReflexiveObjectPropertyAxiom"]], "owlsameindividualaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLSameIndividualAxiom"]], "owlsubannotationpropertyofaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom"]], "owlsubclassofaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLSubClassOfAxiom"]], "owlsubdatapropertyofaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLSubDataPropertyOfAxiom"]], "owlsubobjectpropertyofaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLSubObjectPropertyOfAxiom"]], "owlsubpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLSubPropertyAxiom"]], "owlsymmetricobjectpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLSymmetricObjectPropertyAxiom"]], "owltransitiveobjectpropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLTransitiveObjectPropertyAxiom"]], "owlunarypropertyaxiom (class in owlapy.owl_axiom)": [[16, "owlapy.owl_axiom.OWLUnaryPropertyAxiom"]], "__eq__() (owlapy.owl_axiom.owlannotation method)": [[16, "owlapy.owl_axiom.OWLAnnotation.__eq__"]], "__eq__() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLClassAssertionAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owldatapropertycharacteristicaxiom method)": [[16, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[16, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owldeclarationaxiom method)": [[16, "owlapy.owl_axiom.OWLDeclarationAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[16, "owlapy.owl_axiom.OWLDisjointUnionAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[16, "owlapy.owl_axiom.OWLHasKeyAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryClassAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryIndividualAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryPropertyAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlobjectpropertycharacteristicaxiom method)": [[16, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlpropertydomainaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyDomainAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlpropertyrangeaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyRangeAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubClassOfAxiom.__eq__"]], "__eq__() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLSubPropertyAxiom.__eq__"]], "__hash__() (owlapy.owl_axiom.owlannotation method)": [[16, "owlapy.owl_axiom.OWLAnnotation.__hash__"]], "__hash__() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLClassAssertionAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owldatapropertycharacteristicaxiom method)": [[16, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[16, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owldeclarationaxiom method)": [[16, "owlapy.owl_axiom.OWLDeclarationAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[16, "owlapy.owl_axiom.OWLDisjointUnionAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[16, "owlapy.owl_axiom.OWLHasKeyAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryClassAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryIndividualAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryPropertyAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlobjectpropertycharacteristicaxiom method)": [[16, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlpropertydomainaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyDomainAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlpropertyrangeaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyRangeAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubClassOfAxiom.__hash__"]], "__hash__() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLSubPropertyAxiom.__hash__"]], "__repr__() (owlapy.owl_axiom.owlannotation method)": [[16, "owlapy.owl_axiom.OWLAnnotation.__repr__"]], "__repr__() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLClassAssertionAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owldatapropertycharacteristicaxiom method)": [[16, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[16, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owldeclarationaxiom method)": [[16, "owlapy.owl_axiom.OWLDeclarationAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[16, "owlapy.owl_axiom.OWLDisjointUnionAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[16, "owlapy.owl_axiom.OWLHasKeyAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlinverseobjectpropertiesaxiom method)": [[16, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryClassAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryIndividualAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryPropertyAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlobjectpropertycharacteristicaxiom method)": [[16, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlpropertydomainaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyDomainAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlpropertyrangeaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyRangeAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubClassOfAxiom.__repr__"]], "__repr__() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLSubPropertyAxiom.__repr__"]], "__slots__ (owlapy.owl_axiom.owlannotation attribute)": [[16, "owlapy.owl_axiom.OWLAnnotation.__slots__"]], "__slots__ (owlapy.owl_axiom.owlannotationassertionaxiom attribute)": [[16, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlannotationaxiom attribute)": [[16, "owlapy.owl_axiom.OWLAnnotationAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlannotationproperty attribute)": [[16, "owlapy.owl_axiom.OWLAnnotationProperty.__slots__"]], "__slots__ (owlapy.owl_axiom.owlannotationpropertydomainaxiom attribute)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlannotationpropertyrangeaxiom attribute)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlasymmetricobjectpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLAsymmetricObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlaxiom attribute)": [[16, "owlapy.owl_axiom.OWLAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlclassassertionaxiom attribute)": [[16, "owlapy.owl_axiom.OWLClassAssertionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlclassaxiom attribute)": [[16, "owlapy.owl_axiom.OWLClassAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldatapropertyassertionaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDataPropertyAssertionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldatapropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDataPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldatapropertycharacteristicaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDataPropertyCharacteristicAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldatapropertydomainaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDataPropertyDomainAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldatapropertyrangeaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDataPropertyRangeAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldatatypedefinitionaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldeclarationaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDeclarationAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldifferentindividualsaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDifferentIndividualsAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldisjointclassesaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDisjointClassesAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldisjointdatapropertiesaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDisjointDataPropertiesAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldisjointobjectpropertiesaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDisjointObjectPropertiesAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owldisjointunionaxiom attribute)": [[16, "owlapy.owl_axiom.OWLDisjointUnionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlequivalentclassesaxiom attribute)": [[16, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlequivalentdatapropertiesaxiom attribute)": [[16, "owlapy.owl_axiom.OWLEquivalentDataPropertiesAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlequivalentobjectpropertiesaxiom attribute)": [[16, "owlapy.owl_axiom.OWLEquivalentObjectPropertiesAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlfunctionaldatapropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLFunctionalDataPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlfunctionalobjectpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLFunctionalObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlhaskeyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLHasKeyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlindividualaxiom attribute)": [[16, "owlapy.owl_axiom.OWLIndividualAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlinversefunctionalobjectpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLInverseFunctionalObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlinverseobjectpropertiesaxiom attribute)": [[16, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlirreflexiveobjectpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLIrreflexiveObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owllogicalaxiom attribute)": [[16, "owlapy.owl_axiom.OWLLogicalAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlnaryaxiom attribute)": [[16, "owlapy.owl_axiom.OWLNaryAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlnaryclassaxiom attribute)": [[16, "owlapy.owl_axiom.OWLNaryClassAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlnaryindividualaxiom attribute)": [[16, "owlapy.owl_axiom.OWLNaryIndividualAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlnarypropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLNaryPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlnegativedatapropertyassertionaxiom attribute)": [[16, "owlapy.owl_axiom.OWLNegativeDataPropertyAssertionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlnegativeobjectpropertyassertionaxiom attribute)": [[16, "owlapy.owl_axiom.OWLNegativeObjectPropertyAssertionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlobjectpropertyassertionaxiom attribute)": [[16, "owlapy.owl_axiom.OWLObjectPropertyAssertionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlobjectpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlobjectpropertycharacteristicaxiom attribute)": [[16, "owlapy.owl_axiom.OWLObjectPropertyCharacteristicAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlobjectpropertydomainaxiom attribute)": [[16, "owlapy.owl_axiom.OWLObjectPropertyDomainAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlobjectpropertyrangeaxiom attribute)": [[16, "owlapy.owl_axiom.OWLObjectPropertyRangeAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlpropertyassertionaxiom attribute)": [[16, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlpropertydomainaxiom attribute)": [[16, "owlapy.owl_axiom.OWLPropertyDomainAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlpropertyrangeaxiom attribute)": [[16, "owlapy.owl_axiom.OWLPropertyRangeAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlreflexiveobjectpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLReflexiveObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlsameindividualaxiom attribute)": [[16, "owlapy.owl_axiom.OWLSameIndividualAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlsubannotationpropertyofaxiom attribute)": [[16, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlsubclassofaxiom attribute)": [[16, "owlapy.owl_axiom.OWLSubClassOfAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlsubdatapropertyofaxiom attribute)": [[16, "owlapy.owl_axiom.OWLSubDataPropertyOfAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlsubobjectpropertyofaxiom attribute)": [[16, "owlapy.owl_axiom.OWLSubObjectPropertyOfAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlsubpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLSubPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlsymmetricobjectpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLSymmetricObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owltransitiveobjectpropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLTransitiveObjectPropertyAxiom.__slots__"]], "__slots__ (owlapy.owl_axiom.owlunarypropertyaxiom attribute)": [[16, "owlapy.owl_axiom.OWLUnaryPropertyAxiom.__slots__"]], "annotations() (owlapy.owl_axiom.owlaxiom method)": [[16, "owlapy.owl_axiom.OWLAxiom.annotations"]], "as_pairwise_axioms() (owlapy.owl_axiom.owlnaryaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryAxiom.as_pairwise_axioms"]], "as_pairwise_axioms() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryClassAxiom.as_pairwise_axioms"]], "as_pairwise_axioms() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryIndividualAxiom.as_pairwise_axioms"]], "as_pairwise_axioms() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryPropertyAxiom.as_pairwise_axioms"]], "class_expressions() (owlapy.owl_axiom.owlnaryclassaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryClassAxiom.class_expressions"]], "contains_named_equivalent_class() (owlapy.owl_axiom.owlequivalentclassesaxiom method)": [[16, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.contains_named_equivalent_class"]], "contains_owl_nothing() (owlapy.owl_axiom.owlequivalentclassesaxiom method)": [[16, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.contains_owl_nothing"]], "contains_owl_thing() (owlapy.owl_axiom.owlequivalentclassesaxiom method)": [[16, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.contains_owl_thing"]], "get_class_expression() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLClassAssertionAxiom.get_class_expression"]], "get_class_expression() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[16, "owlapy.owl_axiom.OWLHasKeyAxiom.get_class_expression"]], "get_class_expressions() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[16, "owlapy.owl_axiom.OWLDisjointUnionAxiom.get_class_expressions"]], "get_datarange() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[16, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.get_datarange"]], "get_datatype() (owlapy.owl_axiom.owldatatypedefinitionaxiom method)": [[16, "owlapy.owl_axiom.OWLDatatypeDefinitionAxiom.get_datatype"]], "get_domain() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.get_domain"]], "get_domain() (owlapy.owl_axiom.owlpropertydomainaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyDomainAxiom.get_domain"]], "get_entity() (owlapy.owl_axiom.owldeclarationaxiom method)": [[16, "owlapy.owl_axiom.OWLDeclarationAxiom.get_entity"]], "get_first_property() (owlapy.owl_axiom.owlinverseobjectpropertiesaxiom method)": [[16, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom.get_first_property"]], "get_individual() (owlapy.owl_axiom.owlclassassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLClassAssertionAxiom.get_individual"]], "get_iri() (owlapy.owl_axiom.owlannotationproperty method)": [[16, "owlapy.owl_axiom.OWLAnnotationProperty.get_iri"]], "get_object() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.get_object"]], "get_owl_class() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[16, "owlapy.owl_axiom.OWLDisjointUnionAxiom.get_owl_class"]], "get_owl_disjoint_classes_axiom() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[16, "owlapy.owl_axiom.OWLDisjointUnionAxiom.get_owl_disjoint_classes_axiom"]], "get_owl_equivalent_classes_axiom() (owlapy.owl_axiom.owldisjointunionaxiom method)": [[16, "owlapy.owl_axiom.OWLDisjointUnionAxiom.get_owl_equivalent_classes_axiom"]], "get_property() (owlapy.owl_axiom.owlannotation method)": [[16, "owlapy.owl_axiom.OWLAnnotation.get_property"]], "get_property() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.get_property"]], "get_property() (owlapy.owl_axiom.owlannotationpropertydomainaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyDomainAxiom.get_property"]], "get_property() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.get_property"]], "get_property() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.get_property"]], "get_property() (owlapy.owl_axiom.owlunarypropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLUnaryPropertyAxiom.get_property"]], "get_property_expressions() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[16, "owlapy.owl_axiom.OWLHasKeyAxiom.get_property_expressions"]], "get_range() (owlapy.owl_axiom.owlannotationpropertyrangeaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationPropertyRangeAxiom.get_range"]], "get_range() (owlapy.owl_axiom.owlpropertyrangeaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyRangeAxiom.get_range"]], "get_second_property() (owlapy.owl_axiom.owlinverseobjectpropertiesaxiom method)": [[16, "owlapy.owl_axiom.OWLInverseObjectPropertiesAxiom.get_second_property"]], "get_sub_class() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubClassOfAxiom.get_sub_class"]], "get_sub_property() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.get_sub_property"]], "get_sub_property() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLSubPropertyAxiom.get_sub_property"]], "get_subject() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.get_subject"]], "get_subject() (owlapy.owl_axiom.owlpropertyassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLPropertyAssertionAxiom.get_subject"]], "get_super_class() (owlapy.owl_axiom.owlsubclassofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubClassOfAxiom.get_super_class"]], "get_super_property() (owlapy.owl_axiom.owlsubannotationpropertyofaxiom method)": [[16, "owlapy.owl_axiom.OWLSubAnnotationPropertyOfAxiom.get_super_property"]], "get_super_property() (owlapy.owl_axiom.owlsubpropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLSubPropertyAxiom.get_super_property"]], "get_value() (owlapy.owl_axiom.owlannotation method)": [[16, "owlapy.owl_axiom.OWLAnnotation.get_value"]], "get_value() (owlapy.owl_axiom.owlannotationassertionaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationAssertionAxiom.get_value"]], "individuals() (owlapy.owl_axiom.owlnaryindividualaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryIndividualAxiom.individuals"]], "is_annotated() (owlapy.owl_axiom.owlaxiom method)": [[16, "owlapy.owl_axiom.OWLAxiom.is_annotated"]], "is_annotation_axiom() (owlapy.owl_axiom.owlannotationaxiom method)": [[16, "owlapy.owl_axiom.OWLAnnotationAxiom.is_annotation_axiom"]], "is_annotation_axiom() (owlapy.owl_axiom.owlaxiom method)": [[16, "owlapy.owl_axiom.OWLAxiom.is_annotation_axiom"]], "is_logical_axiom() (owlapy.owl_axiom.owlaxiom method)": [[16, "owlapy.owl_axiom.OWLAxiom.is_logical_axiom"]], "is_logical_axiom() (owlapy.owl_axiom.owllogicalaxiom method)": [[16, "owlapy.owl_axiom.OWLLogicalAxiom.is_logical_axiom"]], "named_classes() (owlapy.owl_axiom.owlequivalentclassesaxiom method)": [[16, "owlapy.owl_axiom.OWLEquivalentClassesAxiom.named_classes"]], "operands() (owlapy.owl_axiom.owlhaskeyaxiom method)": [[16, "owlapy.owl_axiom.OWLHasKeyAxiom.operands"]], "owlapy.owl_axiom": [[16, "module-owlapy.owl_axiom"]], "properties() (owlapy.owl_axiom.owlnarypropertyaxiom method)": [[16, "owlapy.owl_axiom.OWLNaryPropertyAxiom.properties"]], "owlindividual (class in owlapy.owl_individual)": [[17, "owlapy.owl_individual.OWLIndividual"]], "owlnamedindividual (class in owlapy.owl_individual)": [[17, "owlapy.owl_individual.OWLNamedIndividual"]], "__slots__ (owlapy.owl_individual.owlindividual attribute)": [[17, "owlapy.owl_individual.OWLIndividual.__slots__"]], "__slots__ (owlapy.owl_individual.owlnamedindividual attribute)": [[17, "owlapy.owl_individual.OWLNamedIndividual.__slots__"]], "get_iri() (owlapy.owl_individual.owlnamedindividual method)": [[17, "owlapy.owl_individual.OWLNamedIndividual.get_iri"]], "iri (owlapy.owl_individual.owlnamedindividual property)": [[17, "owlapy.owl_individual.OWLNamedIndividual.iri"]], "owlapy.owl_individual": [[17, "module-owlapy.owl_individual"]], "str (owlapy.owl_individual.owlnamedindividual property)": [[17, "owlapy.owl_individual.OWLNamedIndividual.str"]], "type_index (owlapy.owl_individual.owlnamedindividual attribute)": [[17, "owlapy.owl_individual.OWLNamedIndividual.type_index"]], "booleanowldatatype (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.BooleanOWLDatatype"]], "dateowldatatype (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.DateOWLDatatype"]], "datetimeowldatatype (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.DateTimeOWLDatatype"]], "doubleowldatatype (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.DoubleOWLDatatype"]], "durationowldatatype (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.DurationOWLDatatype"]], "integerowldatatype (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.IntegerOWLDatatype"]], "literals (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.Literals"]], "numeric_datatypes (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.NUMERIC_DATATYPES"]], "owlbottomdataproperty (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.OWLBottomDataProperty"]], "owlbottomobjectproperty (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.OWLBottomObjectProperty"]], "owlliteral (class in owlapy.owl_literal)": [[18, "owlapy.owl_literal.OWLLiteral"]], "owltopdataproperty (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.OWLTopDataProperty"]], "owltopobjectproperty (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.OWLTopObjectProperty"]], "stringowldatatype (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.StringOWLDatatype"]], "time_datatypes (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.TIME_DATATYPES"]], "topowldatatype (in module owlapy.owl_literal)": [[18, "owlapy.owl_literal.TopOWLDatatype"]], "__slots__ (owlapy.owl_literal.owlliteral attribute)": [[18, "owlapy.owl_literal.OWLLiteral.__slots__"]], "as_literal() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.as_literal"]], "get_datatype() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.get_datatype"]], "get_literal() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.get_literal"]], "is_boolean() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.is_boolean"]], "is_date() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.is_date"]], "is_datetime() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.is_datetime"]], "is_double() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.is_double"]], "is_duration() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.is_duration"]], "is_integer() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.is_integer"]], "is_literal() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.is_literal"]], "is_string() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.is_string"]], "owlapy.owl_literal": [[18, "module-owlapy.owl_literal"]], "parse_boolean() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.parse_boolean"]], "parse_date() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.parse_date"]], "parse_datetime() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.parse_datetime"]], "parse_double() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.parse_double"]], "parse_duration() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.parse_duration"]], "parse_integer() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.parse_integer"]], "parse_string() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.parse_string"]], "to_python() (owlapy.owl_literal.owlliteral method)": [[18, "owlapy.owl_literal.OWLLiteral.to_python"]], "type_index (owlapy.owl_literal.owlliteral attribute)": [[18, "owlapy.owl_literal.OWLLiteral.type_index"]], "owldataproperty (class in owlapy.owl_property)": [[19, "owlapy.owl_property.OWLDataProperty"]], "owldatapropertyexpression (class in owlapy.owl_property)": [[19, "owlapy.owl_property.OWLDataPropertyExpression"]], "owlobjectinverseof (class in owlapy.owl_property)": [[19, "owlapy.owl_property.OWLObjectInverseOf"]], "owlobjectproperty (class in owlapy.owl_property)": [[19, "owlapy.owl_property.OWLObjectProperty"]], "owlobjectpropertyexpression (class in owlapy.owl_property)": [[19, "owlapy.owl_property.OWLObjectPropertyExpression"]], "owlproperty (class in owlapy.owl_property)": [[19, "owlapy.owl_property.OWLProperty"]], "owlpropertyexpression (class in owlapy.owl_property)": [[19, "owlapy.owl_property.OWLPropertyExpression"]], "__eq__() (owlapy.owl_property.owlobjectinverseof method)": [[19, "owlapy.owl_property.OWLObjectInverseOf.__eq__"]], "__hash__() (owlapy.owl_property.owlobjectinverseof method)": [[19, "owlapy.owl_property.OWLObjectInverseOf.__hash__"]], "__repr__() (owlapy.owl_property.owlobjectinverseof method)": [[19, "owlapy.owl_property.OWLObjectInverseOf.__repr__"]], "__slots__ (owlapy.owl_property.owldataproperty attribute)": [[19, "owlapy.owl_property.OWLDataProperty.__slots__"]], "__slots__ (owlapy.owl_property.owldatapropertyexpression attribute)": [[19, "owlapy.owl_property.OWLDataPropertyExpression.__slots__"]], "__slots__ (owlapy.owl_property.owlobjectinverseof attribute)": [[19, "owlapy.owl_property.OWLObjectInverseOf.__slots__"]], "__slots__ (owlapy.owl_property.owlobjectproperty attribute)": [[19, "owlapy.owl_property.OWLObjectProperty.__slots__"]], "__slots__ (owlapy.owl_property.owlobjectpropertyexpression attribute)": [[19, "owlapy.owl_property.OWLObjectPropertyExpression.__slots__"]], "__slots__ (owlapy.owl_property.owlproperty attribute)": [[19, "owlapy.owl_property.OWLProperty.__slots__"]], "__slots__ (owlapy.owl_property.owlpropertyexpression attribute)": [[19, "owlapy.owl_property.OWLPropertyExpression.__slots__"]], "get_inverse() (owlapy.owl_property.owlobjectinverseof method)": [[19, "owlapy.owl_property.OWLObjectInverseOf.get_inverse"]], "get_inverse_property() (owlapy.owl_property.owlobjectinverseof method)": [[19, "owlapy.owl_property.OWLObjectInverseOf.get_inverse_property"]], "get_inverse_property() (owlapy.owl_property.owlobjectproperty method)": [[19, "owlapy.owl_property.OWLObjectProperty.get_inverse_property"]], "get_inverse_property() (owlapy.owl_property.owlobjectpropertyexpression method)": [[19, "owlapy.owl_property.OWLObjectPropertyExpression.get_inverse_property"]], "get_iri() (owlapy.owl_property.owldataproperty method)": [[19, "owlapy.owl_property.OWLDataProperty.get_iri"]], "get_iri() (owlapy.owl_property.owlobjectproperty method)": [[19, "owlapy.owl_property.OWLObjectProperty.get_iri"]], "get_named_property() (owlapy.owl_property.owlobjectinverseof method)": [[19, "owlapy.owl_property.OWLObjectInverseOf.get_named_property"]], "get_named_property() (owlapy.owl_property.owlobjectproperty method)": [[19, "owlapy.owl_property.OWLObjectProperty.get_named_property"]], "get_named_property() (owlapy.owl_property.owlobjectpropertyexpression method)": [[19, "owlapy.owl_property.OWLObjectPropertyExpression.get_named_property"]], "iri (owlapy.owl_property.owlobjectproperty property)": [[19, "owlapy.owl_property.OWLObjectProperty.iri"]], "is_data_property_expression() (owlapy.owl_property.owldatapropertyexpression method)": [[19, "owlapy.owl_property.OWLDataPropertyExpression.is_data_property_expression"]], "is_data_property_expression() (owlapy.owl_property.owlpropertyexpression method)": [[19, "owlapy.owl_property.OWLPropertyExpression.is_data_property_expression"]], "is_object_property_expression() (owlapy.owl_property.owlobjectpropertyexpression method)": [[19, "owlapy.owl_property.OWLObjectPropertyExpression.is_object_property_expression"]], "is_object_property_expression() (owlapy.owl_property.owlpropertyexpression method)": [[19, "owlapy.owl_property.OWLPropertyExpression.is_object_property_expression"]], "is_owl_top_data_property() (owlapy.owl_property.owldataproperty method)": [[19, "owlapy.owl_property.OWLDataProperty.is_owl_top_data_property"]], "is_owl_top_data_property() (owlapy.owl_property.owlpropertyexpression method)": [[19, "owlapy.owl_property.OWLPropertyExpression.is_owl_top_data_property"]], "is_owl_top_object_property() (owlapy.owl_property.owlobjectproperty method)": [[19, "owlapy.owl_property.OWLObjectProperty.is_owl_top_object_property"]], "is_owl_top_object_property() (owlapy.owl_property.owlpropertyexpression method)": [[19, "owlapy.owl_property.OWLPropertyExpression.is_owl_top_object_property"]], "owlapy.owl_property": [[19, "module-owlapy.owl_property"]], "str (owlapy.owl_property.owlobjectproperty property)": [[19, "owlapy.owl_property.OWLObjectProperty.str"]], "type_index (owlapy.owl_property.owldataproperty attribute)": [[19, "owlapy.owl_property.OWLDataProperty.type_index"]], "type_index (owlapy.owl_property.owlobjectinverseof attribute)": [[19, "owlapy.owl_property.OWLObjectInverseOf.type_index"]], "type_index (owlapy.owl_property.owlobjectproperty attribute)": [[19, "owlapy.owl_property.OWLObjectProperty.type_index"]], "literals (in module owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.Literals"]], "owlcardinalityrestriction (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLCardinalityRestriction"]], "owldataallvaluesfrom (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLDataAllValuesFrom"]], "owldatacardinalityrestriction (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLDataCardinalityRestriction"]], "owldataexactcardinality (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLDataExactCardinality"]], "owldatahasvalue (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLDataHasValue"]], "owldatamaxcardinality (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLDataMaxCardinality"]], "owldatamincardinality (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLDataMinCardinality"]], "owldataoneof (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLDataOneOf"]], "owldatarestriction (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLDataRestriction"]], "owldatasomevaluesfrom (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLDataSomeValuesFrom"]], "owldatatyperestriction (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLDatatypeRestriction"]], "owlfacetrestriction (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLFacetRestriction"]], "owlhasvaluerestriction (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLHasValueRestriction"]], "owlobjectallvaluesfrom (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLObjectAllValuesFrom"]], "owlobjectcardinalityrestriction (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLObjectCardinalityRestriction"]], "owlobjectexactcardinality (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLObjectExactCardinality"]], "owlobjecthasself (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLObjectHasSelf"]], "owlobjecthasvalue (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLObjectHasValue"]], "owlobjectmaxcardinality (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLObjectMaxCardinality"]], "owlobjectmincardinality (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLObjectMinCardinality"]], "owlobjectoneof (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLObjectOneOf"]], "owlobjectrestriction (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLObjectRestriction"]], "owlobjectsomevaluesfrom (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLObjectSomeValuesFrom"]], "owlquantifieddatarestriction (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLQuantifiedDataRestriction"]], "owlquantifiedobjectrestriction (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLQuantifiedObjectRestriction"]], "owlquantifiedrestriction (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLQuantifiedRestriction"]], "owlrestriction (class in owlapy.owl_restriction)": [[20, "owlapy.owl_restriction.OWLRestriction"]], "__eq__() (owlapy.owl_restriction.owldataallvaluesfrom method)": [[20, "owlapy.owl_restriction.OWLDataAllValuesFrom.__eq__"]], "__eq__() (owlapy.owl_restriction.owldatacardinalityrestriction method)": [[20, "owlapy.owl_restriction.OWLDataCardinalityRestriction.__eq__"]], "__eq__() (owlapy.owl_restriction.owldatahasvalue method)": [[20, "owlapy.owl_restriction.OWLDataHasValue.__eq__"]], "__eq__() (owlapy.owl_restriction.owldataoneof method)": [[20, "owlapy.owl_restriction.OWLDataOneOf.__eq__"]], "__eq__() (owlapy.owl_restriction.owldatasomevaluesfrom method)": [[20, "owlapy.owl_restriction.OWLDataSomeValuesFrom.__eq__"]], "__eq__() (owlapy.owl_restriction.owldatatyperestriction method)": [[20, "owlapy.owl_restriction.OWLDatatypeRestriction.__eq__"]], "__eq__() (owlapy.owl_restriction.owlfacetrestriction method)": [[20, "owlapy.owl_restriction.OWLFacetRestriction.__eq__"]], "__eq__() (owlapy.owl_restriction.owlhasvaluerestriction method)": [[20, "owlapy.owl_restriction.OWLHasValueRestriction.__eq__"]], "__eq__() (owlapy.owl_restriction.owlobjectallvaluesfrom method)": [[20, "owlapy.owl_restriction.OWLObjectAllValuesFrom.__eq__"]], "__eq__() (owlapy.owl_restriction.owlobjectcardinalityrestriction method)": [[20, "owlapy.owl_restriction.OWLObjectCardinalityRestriction.__eq__"]], "__eq__() (owlapy.owl_restriction.owlobjecthasself method)": [[20, "owlapy.owl_restriction.OWLObjectHasSelf.__eq__"]], "__eq__() (owlapy.owl_restriction.owlobjectoneof method)": [[20, "owlapy.owl_restriction.OWLObjectOneOf.__eq__"]], "__eq__() (owlapy.owl_restriction.owlobjectsomevaluesfrom method)": [[20, "owlapy.owl_restriction.OWLObjectSomeValuesFrom.__eq__"]], "__hash__() (owlapy.owl_restriction.owldataallvaluesfrom method)": [[20, "owlapy.owl_restriction.OWLDataAllValuesFrom.__hash__"]], "__hash__() (owlapy.owl_restriction.owldatacardinalityrestriction method)": [[20, "owlapy.owl_restriction.OWLDataCardinalityRestriction.__hash__"]], "__hash__() (owlapy.owl_restriction.owldatahasvalue method)": [[20, "owlapy.owl_restriction.OWLDataHasValue.__hash__"]], "__hash__() (owlapy.owl_restriction.owldataoneof method)": [[20, "owlapy.owl_restriction.OWLDataOneOf.__hash__"]], "__hash__() (owlapy.owl_restriction.owldatasomevaluesfrom method)": [[20, "owlapy.owl_restriction.OWLDataSomeValuesFrom.__hash__"]], "__hash__() (owlapy.owl_restriction.owldatatyperestriction method)": [[20, "owlapy.owl_restriction.OWLDatatypeRestriction.__hash__"]], "__hash__() (owlapy.owl_restriction.owlfacetrestriction method)": [[20, "owlapy.owl_restriction.OWLFacetRestriction.__hash__"]], "__hash__() (owlapy.owl_restriction.owlhasvaluerestriction method)": [[20, "owlapy.owl_restriction.OWLHasValueRestriction.__hash__"]], "__hash__() (owlapy.owl_restriction.owlobjectallvaluesfrom method)": [[20, "owlapy.owl_restriction.OWLObjectAllValuesFrom.__hash__"]], "__hash__() (owlapy.owl_restriction.owlobjectcardinalityrestriction method)": [[20, "owlapy.owl_restriction.OWLObjectCardinalityRestriction.__hash__"]], "__hash__() (owlapy.owl_restriction.owlobjecthasself method)": [[20, "owlapy.owl_restriction.OWLObjectHasSelf.__hash__"]], "__hash__() (owlapy.owl_restriction.owlobjectoneof method)": [[20, "owlapy.owl_restriction.OWLObjectOneOf.__hash__"]], "__hash__() (owlapy.owl_restriction.owlobjectsomevaluesfrom method)": [[20, "owlapy.owl_restriction.OWLObjectSomeValuesFrom.__hash__"]], "__repr__() (owlapy.owl_restriction.owldataallvaluesfrom method)": [[20, "owlapy.owl_restriction.OWLDataAllValuesFrom.__repr__"]], "__repr__() (owlapy.owl_restriction.owldatacardinalityrestriction method)": [[20, "owlapy.owl_restriction.OWLDataCardinalityRestriction.__repr__"]], "__repr__() (owlapy.owl_restriction.owldatahasvalue method)": [[20, "owlapy.owl_restriction.OWLDataHasValue.__repr__"]], "__repr__() (owlapy.owl_restriction.owldataoneof method)": [[20, "owlapy.owl_restriction.OWLDataOneOf.__repr__"]], "__repr__() (owlapy.owl_restriction.owldatasomevaluesfrom method)": [[20, "owlapy.owl_restriction.OWLDataSomeValuesFrom.__repr__"]], "__repr__() (owlapy.owl_restriction.owldatatyperestriction method)": [[20, "owlapy.owl_restriction.OWLDatatypeRestriction.__repr__"]], "__repr__() (owlapy.owl_restriction.owlfacetrestriction method)": [[20, "owlapy.owl_restriction.OWLFacetRestriction.__repr__"]], "__repr__() (owlapy.owl_restriction.owlobjectallvaluesfrom method)": [[20, "owlapy.owl_restriction.OWLObjectAllValuesFrom.__repr__"]], "__repr__() (owlapy.owl_restriction.owlobjectcardinalityrestriction method)": [[20, "owlapy.owl_restriction.OWLObjectCardinalityRestriction.__repr__"]], "__repr__() (owlapy.owl_restriction.owlobjecthasself method)": [[20, "owlapy.owl_restriction.OWLObjectHasSelf.__repr__"]], "__repr__() (owlapy.owl_restriction.owlobjecthasvalue method)": [[20, "owlapy.owl_restriction.OWLObjectHasValue.__repr__"]], "__repr__() (owlapy.owl_restriction.owlobjectoneof method)": [[20, "owlapy.owl_restriction.OWLObjectOneOf.__repr__"]], "__repr__() (owlapy.owl_restriction.owlobjectsomevaluesfrom method)": [[20, "owlapy.owl_restriction.OWLObjectSomeValuesFrom.__repr__"]], "__slots__ (owlapy.owl_restriction.owlcardinalityrestriction attribute)": [[20, "owlapy.owl_restriction.OWLCardinalityRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owldataallvaluesfrom attribute)": [[20, "owlapy.owl_restriction.OWLDataAllValuesFrom.__slots__"]], "__slots__ (owlapy.owl_restriction.owldatacardinalityrestriction attribute)": [[20, "owlapy.owl_restriction.OWLDataCardinalityRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owldataexactcardinality attribute)": [[20, "owlapy.owl_restriction.OWLDataExactCardinality.__slots__"]], "__slots__ (owlapy.owl_restriction.owldatahasvalue attribute)": [[20, "owlapy.owl_restriction.OWLDataHasValue.__slots__"]], "__slots__ (owlapy.owl_restriction.owldatamaxcardinality attribute)": [[20, "owlapy.owl_restriction.OWLDataMaxCardinality.__slots__"]], "__slots__ (owlapy.owl_restriction.owldatamincardinality attribute)": [[20, "owlapy.owl_restriction.OWLDataMinCardinality.__slots__"]], "__slots__ (owlapy.owl_restriction.owldatarestriction attribute)": [[20, "owlapy.owl_restriction.OWLDataRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owldatasomevaluesfrom attribute)": [[20, "owlapy.owl_restriction.OWLDataSomeValuesFrom.__slots__"]], "__slots__ (owlapy.owl_restriction.owldatatyperestriction attribute)": [[20, "owlapy.owl_restriction.OWLDatatypeRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlfacetrestriction attribute)": [[20, "owlapy.owl_restriction.OWLFacetRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlhasvaluerestriction attribute)": [[20, "owlapy.owl_restriction.OWLHasValueRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectallvaluesfrom attribute)": [[20, "owlapy.owl_restriction.OWLObjectAllValuesFrom.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectcardinalityrestriction attribute)": [[20, "owlapy.owl_restriction.OWLObjectCardinalityRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectexactcardinality attribute)": [[20, "owlapy.owl_restriction.OWLObjectExactCardinality.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjecthasself attribute)": [[20, "owlapy.owl_restriction.OWLObjectHasSelf.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjecthasvalue attribute)": [[20, "owlapy.owl_restriction.OWLObjectHasValue.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectmaxcardinality attribute)": [[20, "owlapy.owl_restriction.OWLObjectMaxCardinality.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectmincardinality attribute)": [[20, "owlapy.owl_restriction.OWLObjectMinCardinality.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectoneof attribute)": [[20, "owlapy.owl_restriction.OWLObjectOneOf.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectrestriction attribute)": [[20, "owlapy.owl_restriction.OWLObjectRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlobjectsomevaluesfrom attribute)": [[20, "owlapy.owl_restriction.OWLObjectSomeValuesFrom.__slots__"]], "__slots__ (owlapy.owl_restriction.owlquantifieddatarestriction attribute)": [[20, "owlapy.owl_restriction.OWLQuantifiedDataRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlquantifiedobjectrestriction attribute)": [[20, "owlapy.owl_restriction.OWLQuantifiedObjectRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlquantifiedrestriction attribute)": [[20, "owlapy.owl_restriction.OWLQuantifiedRestriction.__slots__"]], "__slots__ (owlapy.owl_restriction.owlrestriction attribute)": [[20, "owlapy.owl_restriction.OWLRestriction.__slots__"]], "as_intersection_of_min_max() (owlapy.owl_restriction.owldataexactcardinality method)": [[20, "owlapy.owl_restriction.OWLDataExactCardinality.as_intersection_of_min_max"]], "as_intersection_of_min_max() (owlapy.owl_restriction.owlobjectexactcardinality method)": [[20, "owlapy.owl_restriction.OWLObjectExactCardinality.as_intersection_of_min_max"]], "as_object_union_of() (owlapy.owl_restriction.owlobjectoneof method)": [[20, "owlapy.owl_restriction.OWLObjectOneOf.as_object_union_of"]], "as_some_values_from() (owlapy.owl_restriction.owldatahasvalue method)": [[20, "owlapy.owl_restriction.OWLDataHasValue.as_some_values_from"]], "as_some_values_from() (owlapy.owl_restriction.owlobjecthasvalue method)": [[20, "owlapy.owl_restriction.OWLObjectHasValue.as_some_values_from"]], "get_cardinality() (owlapy.owl_restriction.owlcardinalityrestriction method)": [[20, "owlapy.owl_restriction.OWLCardinalityRestriction.get_cardinality"]], "get_datatype() (owlapy.owl_restriction.owldatatyperestriction method)": [[20, "owlapy.owl_restriction.OWLDatatypeRestriction.get_datatype"]], "get_facet() (owlapy.owl_restriction.owlfacetrestriction method)": [[20, "owlapy.owl_restriction.OWLFacetRestriction.get_facet"]], "get_facet_restrictions() (owlapy.owl_restriction.owldatatyperestriction method)": [[20, "owlapy.owl_restriction.OWLDatatypeRestriction.get_facet_restrictions"]], "get_facet_value() (owlapy.owl_restriction.owlfacetrestriction method)": [[20, "owlapy.owl_restriction.OWLFacetRestriction.get_facet_value"]], "get_filler() (owlapy.owl_restriction.owlcardinalityrestriction method)": [[20, "owlapy.owl_restriction.OWLCardinalityRestriction.get_filler"]], "get_filler() (owlapy.owl_restriction.owlhasvaluerestriction method)": [[20, "owlapy.owl_restriction.OWLHasValueRestriction.get_filler"]], "get_filler() (owlapy.owl_restriction.owlquantifieddatarestriction method)": [[20, "owlapy.owl_restriction.OWLQuantifiedDataRestriction.get_filler"]], "get_filler() (owlapy.owl_restriction.owlquantifiedobjectrestriction method)": [[20, "owlapy.owl_restriction.OWLQuantifiedObjectRestriction.get_filler"]], "get_property() (owlapy.owl_restriction.owldataallvaluesfrom method)": [[20, "owlapy.owl_restriction.OWLDataAllValuesFrom.get_property"]], "get_property() (owlapy.owl_restriction.owldatacardinalityrestriction method)": [[20, "owlapy.owl_restriction.OWLDataCardinalityRestriction.get_property"]], "get_property() (owlapy.owl_restriction.owldatahasvalue method)": [[20, "owlapy.owl_restriction.OWLDataHasValue.get_property"]], "get_property() (owlapy.owl_restriction.owldatasomevaluesfrom method)": [[20, "owlapy.owl_restriction.OWLDataSomeValuesFrom.get_property"]], "get_property() (owlapy.owl_restriction.owlobjectallvaluesfrom method)": [[20, "owlapy.owl_restriction.OWLObjectAllValuesFrom.get_property"]], "get_property() (owlapy.owl_restriction.owlobjectcardinalityrestriction method)": [[20, "owlapy.owl_restriction.OWLObjectCardinalityRestriction.get_property"]], "get_property() (owlapy.owl_restriction.owlobjecthasself method)": [[20, "owlapy.owl_restriction.OWLObjectHasSelf.get_property"]], "get_property() (owlapy.owl_restriction.owlobjecthasvalue method)": [[20, "owlapy.owl_restriction.OWLObjectHasValue.get_property"]], "get_property() (owlapy.owl_restriction.owlobjectrestriction method)": [[20, "owlapy.owl_restriction.OWLObjectRestriction.get_property"]], "get_property() (owlapy.owl_restriction.owlobjectsomevaluesfrom method)": [[20, "owlapy.owl_restriction.OWLObjectSomeValuesFrom.get_property"]], "get_property() (owlapy.owl_restriction.owlrestriction method)": [[20, "owlapy.owl_restriction.OWLRestriction.get_property"]], "individuals() (owlapy.owl_restriction.owlobjectoneof method)": [[20, "owlapy.owl_restriction.OWLObjectOneOf.individuals"]], "is_data_restriction() (owlapy.owl_restriction.owldatarestriction method)": [[20, "owlapy.owl_restriction.OWLDataRestriction.is_data_restriction"]], "is_data_restriction() (owlapy.owl_restriction.owlrestriction method)": [[20, "owlapy.owl_restriction.OWLRestriction.is_data_restriction"]], "is_object_restriction() (owlapy.owl_restriction.owlobjectrestriction method)": [[20, "owlapy.owl_restriction.OWLObjectRestriction.is_object_restriction"]], "is_object_restriction() (owlapy.owl_restriction.owlrestriction method)": [[20, "owlapy.owl_restriction.OWLRestriction.is_object_restriction"]], "operands() (owlapy.owl_restriction.owldataoneof method)": [[20, "owlapy.owl_restriction.OWLDataOneOf.operands"]], "operands() (owlapy.owl_restriction.owlobjectoneof method)": [[20, "owlapy.owl_restriction.OWLObjectOneOf.operands"]], "owlapy.owl_restriction": [[20, "module-owlapy.owl_restriction"]], "type_index (owlapy.owl_restriction.owldataallvaluesfrom attribute)": [[20, "owlapy.owl_restriction.OWLDataAllValuesFrom.type_index"]], "type_index (owlapy.owl_restriction.owldataexactcardinality attribute)": [[20, "owlapy.owl_restriction.OWLDataExactCardinality.type_index"]], "type_index (owlapy.owl_restriction.owldatahasvalue attribute)": [[20, "owlapy.owl_restriction.OWLDataHasValue.type_index"]], "type_index (owlapy.owl_restriction.owldatamaxcardinality attribute)": [[20, "owlapy.owl_restriction.OWLDataMaxCardinality.type_index"]], "type_index (owlapy.owl_restriction.owldatamincardinality attribute)": [[20, "owlapy.owl_restriction.OWLDataMinCardinality.type_index"]], "type_index (owlapy.owl_restriction.owldataoneof attribute)": [[20, "owlapy.owl_restriction.OWLDataOneOf.type_index"]], "type_index (owlapy.owl_restriction.owldatasomevaluesfrom attribute)": [[20, "owlapy.owl_restriction.OWLDataSomeValuesFrom.type_index"]], "type_index (owlapy.owl_restriction.owldatatyperestriction attribute)": [[20, "owlapy.owl_restriction.OWLDatatypeRestriction.type_index"]], "type_index (owlapy.owl_restriction.owlfacetrestriction attribute)": [[20, "owlapy.owl_restriction.OWLFacetRestriction.type_index"]], "type_index (owlapy.owl_restriction.owlobjectallvaluesfrom attribute)": [[20, "owlapy.owl_restriction.OWLObjectAllValuesFrom.type_index"]], "type_index (owlapy.owl_restriction.owlobjectexactcardinality attribute)": [[20, "owlapy.owl_restriction.OWLObjectExactCardinality.type_index"]], "type_index (owlapy.owl_restriction.owlobjecthasself attribute)": [[20, "owlapy.owl_restriction.OWLObjectHasSelf.type_index"]], "type_index (owlapy.owl_restriction.owlobjecthasvalue attribute)": [[20, "owlapy.owl_restriction.OWLObjectHasValue.type_index"]], "type_index (owlapy.owl_restriction.owlobjectmaxcardinality attribute)": [[20, "owlapy.owl_restriction.OWLObjectMaxCardinality.type_index"]], "type_index (owlapy.owl_restriction.owlobjectmincardinality attribute)": [[20, "owlapy.owl_restriction.OWLObjectMinCardinality.type_index"]], "type_index (owlapy.owl_restriction.owlobjectoneof attribute)": [[20, "owlapy.owl_restriction.OWLObjectOneOf.type_index"]], "type_index (owlapy.owl_restriction.owlobjectsomevaluesfrom attribute)": [[20, "owlapy.owl_restriction.OWLObjectSomeValuesFrom.type_index"]], "values() (owlapy.owl_restriction.owldataoneof method)": [[20, "owlapy.owl_restriction.OWLDataOneOf.values"]], "owlentity (class in owlapy.owlobject)": [[21, "owlapy.owlobject.OWLEntity"]], "owlnamedobject (class in owlapy.owlobject)": [[21, "owlapy.owlobject.OWLNamedObject"]], "owlobject (class in owlapy.owlobject)": [[21, "owlapy.owlobject.OWLObject"]], "owlobjectparser (class in owlapy.owlobject)": [[21, "owlapy.owlobject.OWLObjectParser"]], "owlobjectrenderer (class in owlapy.owlobject)": [[21, "owlapy.owlobject.OWLObjectRenderer"]], "__eq__() (owlapy.owlobject.owlnamedobject method)": [[21, "owlapy.owlobject.OWLNamedObject.__eq__"]], "__eq__() (owlapy.owlobject.owlobject method)": [[21, "owlapy.owlobject.OWLObject.__eq__"]], "__hash__() (owlapy.owlobject.owlnamedobject method)": [[21, "owlapy.owlobject.OWLNamedObject.__hash__"]], "__hash__() (owlapy.owlobject.owlobject method)": [[21, "owlapy.owlobject.OWLObject.__hash__"]], "__lt__() (owlapy.owlobject.owlnamedobject method)": [[21, "owlapy.owlobject.OWLNamedObject.__lt__"]], "__repr__() (owlapy.owlobject.owlnamedobject method)": [[21, "owlapy.owlobject.OWLNamedObject.__repr__"]], "__repr__() (owlapy.owlobject.owlobject method)": [[21, "owlapy.owlobject.OWLObject.__repr__"]], "__slots__ (owlapy.owlobject.owlentity attribute)": [[21, "owlapy.owlobject.OWLEntity.__slots__"]], "__slots__ (owlapy.owlobject.owlnamedobject attribute)": [[21, "owlapy.owlobject.OWLNamedObject.__slots__"]], "__slots__ (owlapy.owlobject.owlobject attribute)": [[21, "owlapy.owlobject.OWLObject.__slots__"]], "is_anonymous() (owlapy.owlobject.owlentity method)": [[21, "owlapy.owlobject.OWLEntity.is_anonymous"]], "is_anonymous() (owlapy.owlobject.owlobject method)": [[21, "owlapy.owlobject.OWLObject.is_anonymous"]], "owlapy.owlobject": [[21, "module-owlapy.owlobject"]], "parse_expression() (owlapy.owlobject.owlobjectparser method)": [[21, "owlapy.owlobject.OWLObjectParser.parse_expression"]], "render() (owlapy.owlobject.owlobjectrenderer method)": [[21, "owlapy.owlobject.OWLObjectRenderer.render"]], "set_short_form_provider() (owlapy.owlobject.owlobjectrenderer method)": [[21, "owlapy.owlobject.OWLObjectRenderer.set_short_form_provider"]], "to_string_id() (owlapy.owlobject.owlentity method)": [[21, "owlapy.owlobject.OWLEntity.to_string_id"]], "dlsyntaxparser (class in owlapy.parser)": [[22, "owlapy.parser.DLSyntaxParser"]], "dl_grammar (in module owlapy.parser)": [[22, "owlapy.parser.DL_GRAMMAR"]], "dlparser (in module owlapy.parser)": [[22, "owlapy.parser.DLparser"]], "manchester_grammar (in module owlapy.parser)": [[22, "owlapy.parser.MANCHESTER_GRAMMAR"]], "manchesterowlsyntaxparser (class in owlapy.parser)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser"]], "manchesterparser (in module owlapy.parser)": [[22, "owlapy.parser.ManchesterParser"]], "dl_to_owl_expression() (in module owlapy.parser)": [[22, "owlapy.parser.dl_to_owl_expression"]], "generic_visit() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.generic_visit"]], "generic_visit() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.generic_visit"]], "manchester_to_owl_expression() (in module owlapy.parser)": [[22, "owlapy.parser.manchester_to_owl_expression"]], "ns (owlapy.parser.dlsyntaxparser attribute)": [[22, "owlapy.parser.DLSyntaxParser.ns"]], "ns (owlapy.parser.manchesterowlsyntaxparser attribute)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.ns"]], "owlapy.parser": [[22, "module-owlapy.parser"]], "parse_expression() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.parse_expression"]], "parse_expression() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.parse_expression"]], "slots (owlapy.parser.dlsyntaxparser attribute)": [[22, "owlapy.parser.DLSyntaxParser.slots"]], "slots (owlapy.parser.manchesterowlsyntaxparser attribute)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.slots"]], "visit_abbreviated_iri() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_abbreviated_iri"]], "visit_abbreviated_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_abbreviated_iri"]], "visit_boolean_literal() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_boolean_literal"]], "visit_boolean_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_boolean_literal"]], "visit_cardinality_res() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_cardinality_res"]], "visit_cardinality_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_cardinality_res"]], "visit_class_expression() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_class_expression"]], "visit_class_expression() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_class_expression"]], "visit_class_iri() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_class_iri"]], "visit_class_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_class_iri"]], "visit_data_cardinality_res() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_data_cardinality_res"]], "visit_data_cardinality_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_cardinality_res"]], "visit_data_intersection() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_data_intersection"]], "visit_data_intersection() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_intersection"]], "visit_data_parentheses() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_data_parentheses"]], "visit_data_parentheses() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_parentheses"]], "visit_data_primary() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_data_primary"]], "visit_data_primary() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_primary"]], "visit_data_property_iri() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_data_property_iri"]], "visit_data_property_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_property_iri"]], "visit_data_some_only_res() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_data_some_only_res"]], "visit_data_some_only_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_some_only_res"]], "visit_data_union() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_data_union"]], "visit_data_union() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_union"]], "visit_data_value_res() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_data_value_res"]], "visit_data_value_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_data_value_res"]], "visit_datatype() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_datatype"]], "visit_datatype() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_datatype"]], "visit_datatype_iri() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_datatype_iri"]], "visit_datatype_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_datatype_iri"]], "visit_datatype_restriction() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_datatype_restriction"]], "visit_datatype_restriction() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_datatype_restriction"]], "visit_date_literal() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_date_literal"]], "visit_date_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_date_literal"]], "visit_datetime_literal() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_datetime_literal"]], "visit_datetime_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_datetime_literal"]], "visit_decimal_literal() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_decimal_literal"]], "visit_decimal_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_decimal_literal"]], "visit_duration_literal() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_duration_literal"]], "visit_duration_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_duration_literal"]], "visit_facet() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_facet"]], "visit_facet() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_facet"]], "visit_facet_restriction() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_facet_restriction"]], "visit_facet_restriction() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_facet_restriction"]], "visit_facet_restrictions() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_facet_restrictions"]], "visit_facet_restrictions() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_facet_restrictions"]], "visit_float_literal() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_float_literal"]], "visit_float_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_float_literal"]], "visit_full_iri() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_full_iri"]], "visit_full_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_full_iri"]], "visit_has_self() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_has_self"]], "visit_has_self() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_has_self"]], "visit_individual_iri() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_individual_iri"]], "visit_individual_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_individual_iri"]], "visit_individual_list() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_individual_list"]], "visit_individual_list() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_individual_list"]], "visit_integer_literal() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_integer_literal"]], "visit_integer_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_integer_literal"]], "visit_intersection() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_intersection"]], "visit_intersection() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_intersection"]], "visit_iri() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_iri"]], "visit_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_iri"]], "visit_literal() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_literal"]], "visit_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_literal"]], "visit_literal_list() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_literal_list"]], "visit_literal_list() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_literal_list"]], "visit_non_negative_integer() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_non_negative_integer"]], "visit_non_negative_integer() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_non_negative_integer"]], "visit_object_property() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_object_property"]], "visit_object_property() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_object_property"]], "visit_object_property_iri() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_object_property_iri"]], "visit_object_property_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_object_property_iri"]], "visit_parentheses() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_parentheses"]], "visit_parentheses() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_parentheses"]], "visit_primary() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_primary"]], "visit_primary() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_primary"]], "visit_quoted_string() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_quoted_string"]], "visit_quoted_string() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_quoted_string"]], "visit_simple_iri() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_simple_iri"]], "visit_simple_iri() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_simple_iri"]], "visit_some_only_res() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_some_only_res"]], "visit_some_only_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_some_only_res"]], "visit_string_literal_language() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_string_literal_language"]], "visit_string_literal_language() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_string_literal_language"]], "visit_string_literal_no_language() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_string_literal_no_language"]], "visit_string_literal_no_language() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_string_literal_no_language"]], "visit_typed_literal() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_typed_literal"]], "visit_typed_literal() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_typed_literal"]], "visit_union() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_union"]], "visit_union() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_union"]], "visit_value_res() (owlapy.parser.dlsyntaxparser method)": [[22, "owlapy.parser.DLSyntaxParser.visit_value_res"]], "visit_value_res() (owlapy.parser.manchesterowlsyntaxparser method)": [[22, "owlapy.parser.ManchesterOWLSyntaxParser.visit_value_res"]], "owldatarange (class in owlapy.ranges)": [[23, "owlapy.ranges.OWLDataRange"]], "owlpropertyrange (class in owlapy.ranges)": [[23, "owlapy.ranges.OWLPropertyRange"]], "owlapy.ranges": [[23, "module-owlapy.ranges"]], "dlsyntaxobjectrenderer (class in owlapy.render)": [[24, "owlapy.render.DLSyntaxObjectRenderer"]], "dlrenderer (in module owlapy.render)": [[24, "owlapy.render.DLrenderer"]], "manchesterowlsyntaxowlobjectrenderer (class in owlapy.render)": [[24, "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer"]], "manchesterrenderer (in module owlapy.render)": [[24, "owlapy.render.ManchesterRenderer"]], "__slots__ (owlapy.render.dlsyntaxobjectrenderer attribute)": [[24, "owlapy.render.DLSyntaxObjectRenderer.__slots__"]], "__slots__ (owlapy.render.manchesterowlsyntaxowlobjectrenderer attribute)": [[24, "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer.__slots__"]], "owl_expression_to_dl() (in module owlapy.render)": [[24, "owlapy.render.owl_expression_to_dl"]], "owl_expression_to_manchester() (in module owlapy.render)": [[24, "owlapy.render.owl_expression_to_manchester"]], "owlapy.render": [[24, "module-owlapy.render"]], "render() (owlapy.render.dlsyntaxobjectrenderer method)": [[24, "owlapy.render.DLSyntaxObjectRenderer.render"]], "render() (owlapy.render.manchesterowlsyntaxowlobjectrenderer method)": [[24, "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer.render"]], "set_short_form_provider() (owlapy.render.dlsyntaxobjectrenderer method)": [[24, "owlapy.render.DLSyntaxObjectRenderer.set_short_form_provider"]], "set_short_form_provider() (owlapy.render.manchesterowlsyntaxowlobjectrenderer method)": [[24, "owlapy.render.ManchesterOWLSyntaxOWLObjectRenderer.set_short_form_provider"]], "owldatatype (class in owlapy.types)": [[25, "owlapy.types.OWLDatatype"]], "__slots__ (owlapy.types.owldatatype attribute)": [[25, "owlapy.types.OWLDatatype.__slots__"]], "get_iri() (owlapy.types.owldatatype method)": [[25, "owlapy.types.OWLDatatype.get_iri"]], "owlapy.types": [[25, "module-owlapy.types"]], "type_index (owlapy.types.owldatatype attribute)": [[25, "owlapy.types.OWLDatatype.type_index"]], "key (owlapy.util.lrucache attribute)": [[26, "owlapy.util.LRUCache.KEY"]], "lrucache (class in owlapy.util)": [[26, "owlapy.util.LRUCache"]], "next (owlapy.util.lrucache attribute)": [[26, "owlapy.util.LRUCache.NEXT"]], "nnf (class in owlapy.util)": [[26, "owlapy.util.NNF"]], "orderedowlobject (class in owlapy.util)": [[26, "owlapy.util.OrderedOWLObject"]], "prev (owlapy.util.lrucache attribute)": [[26, "owlapy.util.LRUCache.PREV"]], "result (owlapy.util.lrucache attribute)": [[26, "owlapy.util.LRUCache.RESULT"]], "toplevelcnf (class in owlapy.util)": [[26, "owlapy.util.TopLevelCNF"]], "topleveldnf (class in owlapy.util)": [[26, "owlapy.util.TopLevelDNF"]], "__contains__() (owlapy.util.lrucache method)": [[26, "owlapy.util.LRUCache.__contains__"]], "__eq__() (owlapy.util.orderedowlobject method)": [[26, "owlapy.util.OrderedOWLObject.__eq__"]], "__getitem__() (owlapy.util.lrucache method)": [[26, "owlapy.util.LRUCache.__getitem__"]], "__lt__() (owlapy.util.orderedowlobject method)": [[26, "owlapy.util.OrderedOWLObject.__lt__"]], "__setitem__() (owlapy.util.lrucache method)": [[26, "owlapy.util.LRUCache.__setitem__"]], "__slots__ (owlapy.util.orderedowlobject attribute)": [[26, "owlapy.util.OrderedOWLObject.__slots__"]], "as_index() (in module owlapy.util)": [[26, "owlapy.util.as_index"]], "cache_clear() (owlapy.util.lrucache method)": [[26, "owlapy.util.LRUCache.cache_clear"]], "cache_info() (owlapy.util.lrucache method)": [[26, "owlapy.util.LRUCache.cache_info"]], "combine_nary_expressions() (in module owlapy.util)": [[26, "owlapy.util.combine_nary_expressions"]], "get_class_nnf() (owlapy.util.nnf method)": [[26, "owlapy.util.NNF.get_class_nnf"]], "get_top_level_cnf() (owlapy.util.toplevelcnf method)": [[26, "owlapy.util.TopLevelCNF.get_top_level_cnf"]], "get_top_level_dnf() (owlapy.util.topleveldnf method)": [[26, "owlapy.util.TopLevelDNF.get_top_level_dnf"]], "iter_count() (in module owlapy.util)": [[26, "owlapy.util.iter_count"]], "o (owlapy.util.orderedowlobject attribute)": [[26, "id0"], [26, "owlapy.util.OrderedOWLObject.o"]], "owlapy.util": [[26, "module-owlapy.util"]], "sentinel (owlapy.util.lrucache attribute)": [[26, "id1"], [26, "owlapy.util.LRUCache.sentinel"]], "boolean (owlapy.vocab.xsdvocabulary attribute)": [[27, "owlapy.vocab.XSDVocabulary.BOOLEAN"]], "date (owlapy.vocab.xsdvocabulary attribute)": [[27, "owlapy.vocab.XSDVocabulary.DATE"]], "date_time (owlapy.vocab.xsdvocabulary attribute)": [[27, "owlapy.vocab.XSDVocabulary.DATE_TIME"]], "date_time_stamp (owlapy.vocab.xsdvocabulary attribute)": [[27, "owlapy.vocab.XSDVocabulary.DATE_TIME_STAMP"]], "decimal (owlapy.vocab.xsdvocabulary attribute)": [[27, "owlapy.vocab.XSDVocabulary.DECIMAL"]], "double (owlapy.vocab.xsdvocabulary attribute)": [[27, "owlapy.vocab.XSDVocabulary.DOUBLE"]], "duration (owlapy.vocab.xsdvocabulary attribute)": [[27, "owlapy.vocab.XSDVocabulary.DURATION"]], "float (owlapy.vocab.xsdvocabulary attribute)": [[27, "owlapy.vocab.XSDVocabulary.FLOAT"]], "fraction_digits (owlapy.vocab.owlfacet attribute)": [[27, "owlapy.vocab.OWLFacet.FRACTION_DIGITS"]], "integer (owlapy.vocab.xsdvocabulary attribute)": [[27, "owlapy.vocab.XSDVocabulary.INTEGER"]], "length (owlapy.vocab.owlfacet attribute)": [[27, "owlapy.vocab.OWLFacet.LENGTH"]], "long (owlapy.vocab.xsdvocabulary attribute)": [[27, "owlapy.vocab.XSDVocabulary.LONG"]], "max_exclusive (owlapy.vocab.owlfacet attribute)": [[27, "owlapy.vocab.OWLFacet.MAX_EXCLUSIVE"]], "max_inclusive (owlapy.vocab.owlfacet attribute)": [[27, "owlapy.vocab.OWLFacet.MAX_INCLUSIVE"]], "max_length (owlapy.vocab.owlfacet attribute)": [[27, "owlapy.vocab.OWLFacet.MAX_LENGTH"]], "min_exclusive (owlapy.vocab.owlfacet attribute)": [[27, "owlapy.vocab.OWLFacet.MIN_EXCLUSIVE"]], "min_inclusive (owlapy.vocab.owlfacet attribute)": [[27, "owlapy.vocab.OWLFacet.MIN_INCLUSIVE"]], "min_length (owlapy.vocab.owlfacet attribute)": [[27, "owlapy.vocab.OWLFacet.MIN_LENGTH"]], "owlfacet (class in owlapy.vocab)": [[27, "owlapy.vocab.OWLFacet"]], "owlrdfvocabulary (class in owlapy.vocab)": [[27, "owlapy.vocab.OWLRDFVocabulary"]], "owl_bottom_data_property (owlapy.vocab.owlrdfvocabulary attribute)": [[27, "owlapy.vocab.OWLRDFVocabulary.OWL_BOTTOM_DATA_PROPERTY"]], "owl_bottom_object_property (owlapy.vocab.owlrdfvocabulary attribute)": [[27, "owlapy.vocab.OWLRDFVocabulary.OWL_BOTTOM_OBJECT_PROPERTY"]], "owl_class (owlapy.vocab.owlrdfvocabulary attribute)": [[27, "owlapy.vocab.OWLRDFVocabulary.OWL_CLASS"]], "owl_named_individual (owlapy.vocab.owlrdfvocabulary attribute)": [[27, "owlapy.vocab.OWLRDFVocabulary.OWL_NAMED_INDIVIDUAL"]], "owl_nothing (owlapy.vocab.owlrdfvocabulary attribute)": [[27, "owlapy.vocab.OWLRDFVocabulary.OWL_NOTHING"]], "owl_thing (owlapy.vocab.owlrdfvocabulary attribute)": [[27, "owlapy.vocab.OWLRDFVocabulary.OWL_THING"]], "owl_top_data_property (owlapy.vocab.owlrdfvocabulary attribute)": [[27, "owlapy.vocab.OWLRDFVocabulary.OWL_TOP_DATA_PROPERTY"]], "owl_top_object_property (owlapy.vocab.owlrdfvocabulary attribute)": [[27, "owlapy.vocab.OWLRDFVocabulary.OWL_TOP_OBJECT_PROPERTY"]], "pattern (owlapy.vocab.owlfacet attribute)": [[27, "owlapy.vocab.OWLFacet.PATTERN"]], "rdfs_literal (owlapy.vocab.owlrdfvocabulary attribute)": [[27, "owlapy.vocab.OWLRDFVocabulary.RDFS_LITERAL"]], "string (owlapy.vocab.xsdvocabulary attribute)": [[27, "owlapy.vocab.XSDVocabulary.STRING"]], "total_digits (owlapy.vocab.owlfacet attribute)": [[27, "owlapy.vocab.OWLFacet.TOTAL_DIGITS"]], "xsdvocabulary (class in owlapy.vocab)": [[27, "owlapy.vocab.XSDVocabulary"]], "from_str() (owlapy.vocab.owlfacet static method)": [[27, "owlapy.vocab.OWLFacet.from_str"]], "operator (owlapy.vocab.owlfacet property)": [[27, "owlapy.vocab.OWLFacet.operator"]], "owlapy.vocab": [[27, "module-owlapy.vocab"]], "symbolic_form (owlapy.vocab.owlfacet property)": [[27, "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 1af4e8a..06ed993 100644
--- a/autoapi/owlapy/owl_literal/index.html
+++ b/autoapi/owlapy/owl_literal/index.html
@@ -60,7 +60,6 @@