[docs]classStudyType(Enum):"""A tyype of study."""ADSORPTION="adsorption"MECHANISM="mechanism"SENSITIVITY="sensitivity"DEFAULT="sensitivity"# noqa: PIE796def__str__(self)->str:"""A string representation of a ``StudyType``."""returnself.value
[docs]defis_implemented(self)->bool:"""Whether or not a ``StudyType`` is implemented."""implemented_study_types=[StudyType.SENSITIVITY]returnselfinimplemented_study_types