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