sbol3.boolean_property ====================== .. py:module:: sbol3.boolean_property Classes ------- .. autoapisummary:: sbol3.boolean_property.BooleanListProperty sbol3.boolean_property.BooleanPropertyMixin sbol3.boolean_property.BooleanSingletonProperty Functions --------- .. autoapisummary:: sbol3.boolean_property.BooleanProperty Module Contents --------------- .. py:class:: BooleanListProperty(property_owner: Any, property_uri: str, lower_bound: int, upper_bound: int, validation_rules: Optional[List] = None, initial_value: Optional[List[bool]] = None) Bases: :py:obj:`BooleanPropertyMixin`, :py:obj:`sbol3.ListProperty` Helper class that provides a standard way to create an ABC using inheritance. .. py:function:: BooleanProperty(property_owner: Any, property_uri: str, lower_bound: int, upper_bound: Union[int, float], validation_rules: Optional[List] = None, initial_value: Optional[Union[bool, List[bool]]] = None) -> sbol3.Property .. py:class:: BooleanPropertyMixin .. py:method:: from_user(value: Any) -> Union[None, rdflib.Literal] .. py:method:: to_user(value: Any) -> bool .. py:class:: BooleanSingletonProperty(property_owner: Any, property_uri: str, lower_bound: int, upper_bound: int, validation_rules: Optional[List] = None, initial_value: Optional[bool] = None) Bases: :py:obj:`BooleanPropertyMixin`, :py:obj:`sbol3.SingletonProperty` Helper class that provides a standard way to create an ABC using inheritance.