sbol3.int_property

Module Contents

Classes

IntListProperty

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

IntPropertyMixin

IntSingletonProperty

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

Functions

IntProperty(→ sbol3.Property)

class IntListProperty(property_owner: Any, property_uri: str, lower_bound: int, upper_bound: int, validation_rules: Optional[List] = None, initial_value: Optional[List[int]] = None)

Bases: IntPropertyMixin, sbol3.ListProperty

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

IntProperty(property_owner: Any, property_uri: str, lower_bound: int, upper_bound: Union[int, float], validation_rules: Optional[List] = None, initial_value: Optional[Union[int, List[int]]] = None) sbol3.Property
class IntPropertyMixin
from_user(value: Any) Union[None, rdflib.Literal]
to_user(value: Any) int
class IntSingletonProperty(property_owner: Any, property_uri: str, lower_bound: int, upper_bound: int, validation_rules: Optional[List] = None, initial_value: Optional[int] = None)

Bases: IntPropertyMixin, sbol3.SingletonProperty

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