sbol3.refobj_property ===================== .. py:module:: sbol3.refobj_property Classes ------- .. autoapisummary:: sbol3.refobj_property.ReferencedObjectList sbol3.refobj_property.ReferencedObjectMixin sbol3.refobj_property.ReferencedObjectSingleton sbol3.refobj_property.ReferencedURI Functions --------- .. autoapisummary:: sbol3.refobj_property.ReferencedObject Module Contents --------------- .. py:function:: ReferencedObject(property_owner: Any, property_uri: str, lower_bound: int, upper_bound: Union[int, float], validation_rules: Optional[List] = None, initial_value: Optional[Union[Union[Identified, str], list[Union[Identified, str]]]] = None) -> Union[ReferencedURI, list[ReferencedURI], Property] .. py:class:: ReferencedObjectList(property_owner: Any, property_uri: str, lower_bound: int, upper_bound: int, validation_rules: Optional[List] = None, initial_value: Optional[list[Union[Identified, str]]] = None) Bases: :py:obj:`ReferencedObjectMixin`, :py:obj:`ListProperty` .. py:class:: ReferencedObjectMixin .. py:method:: from_user(value: Any) -> rdflib.URIRef :staticmethod: .. py:method:: maybe_add_to_document(value: Any) -> None .. py:method:: to_user(value: Any) -> str .. py:class:: ReferencedObjectSingleton(property_owner: Any, property_uri: str, lower_bound: int, upper_bound: int, validation_rules: Optional[List] = None, initial_value: Optional[Union[Identified, str]] = None) Bases: :py:obj:`ReferencedObjectMixin`, :py:obj:`SingletonProperty` .. py:method:: set(value: Any) -> None .. py:class:: ReferencedURI Bases: :py:obj:`str` str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.__str__() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to 'strict'. Initialize self. See help(type(self)) for accurate signature. .. py:method:: __eq__(other) Return self==value. .. py:method:: lookup()