sbol3.float_property

Module Contents

Classes

FloatPropertyMixin

FloatSingletonProperty

Helper class that provides a standard way to create an ABC using

Functions

FloatProperty(→ sbol3.Property)

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
class FloatPropertyMixin
from_user(value: Union[float, int, None]) Union[None, rdflib.Literal]
to_user(value: Any) float
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: FloatPropertyMixin, sbol3.SingletonProperty

Helper class that provides a standard way to create an ABC using inheritance.