sbol3.boolean_property

Module Contents

Classes

BooleanListProperty

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

BooleanPropertyMixin

BooleanSingletonProperty

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

Functions

BooleanProperty(→ sbol3.Property)

class BooleanListProperty(property_owner: Any, property_uri: str, lower_bound: int, upper_bound: int, validation_rules: List | None = None, initial_value: List[bool] | None = None)

Bases: BooleanPropertyMixin, sbol3.ListProperty

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

BooleanProperty(property_owner: Any, property_uri: str, lower_bound: int, upper_bound: int | float, validation_rules: List | None = None, initial_value: bool | List[bool] | None = None) sbol3.Property
class BooleanPropertyMixin
from_user(value: Any) None | rdflib.Literal
to_user(value: Any) bool
class BooleanSingletonProperty(property_owner: Any, property_uri: str, lower_bound: int, upper_bound: int, validation_rules: List | None = None, initial_value: bool | None = None)

Bases: BooleanPropertyMixin, sbol3.SingletonProperty

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