:py:mod:`owlapy.owl_individual` =============================== .. py:module:: owlapy.owl_individual .. autoapi-nested-parse:: OWL Individuals Module Contents --------------- Classes ~~~~~~~ .. autoapisummary:: owlapy.owl_individual.OWLIndividual owlapy.owl_individual.OWLNamedIndividual .. py:class:: OWLIndividual Bases: :py:obj:`owlapy.owl_object.OWLObject` Represents a named or anonymous individual. .. py:attribute:: __slots__ :value: () .. py:class:: OWLNamedIndividual(iri: Union[owlapy.iri.IRI, str]) Bases: :py:obj:`OWLIndividual`, :py:obj:`owlapy.owl_object.OWLEntity` Named individuals are identified using an IRI. Since they are given an IRI, named individuals are entities. IRIs from the reserved vocabulary must not be used to identify named individuals in an OWL 2 DL ontology. (https://www.w3.org/TR/owl2-syntax/#Named_Individuals) .. py:property:: iri :type: owlapy.iri.IRI Gets the IRI of this object. :returns: The IRI of this object. .. py:property:: str Gets the string representation of this object :returns: The IRI as string .. py:attribute:: __slots__ :value: '_iri' .. py:attribute:: type_index :type: Final :value: 1005