options
¶
Module Contents¶
-
class
Option_class_interface
[source]¶ Bases:
abc.ABC
Interface of the class ‘Option_class’. It defines all the necessary methods to manage a set of options.
-
abstract
get_all_options
(self)[source]¶ Return a dictionnary containing tuples (name of the option, value of the option) :return: dict
-
abstract
-
class
Option_class_typed
[source]¶ Bases:
optimeed.core.options.Option_class_interface
-
my_names
:Dict[int, str]¶
-
my_map
:Dict[int, str]¶
-
my_options_0
:Dict[int, int]¶
-
my_options_1
:Dict[int, float]¶
-
my_options_2
:Dict[int, bool]¶
-
my_options_3
:Dict[int, str]¶
-
my_options_4
:Dict[int, List[int]]¶
-
my_options_5
:Dict[int, List[float]]¶
-
my_options_6
:Dict[int, List[str]]¶
-
my_options_7
:Dict[int, List[bool]]¶
-
static
__get_types
()¶
-
static
__match
(value, theType)¶
-