lol
great response
its an enumerator list because its a list and enumerators work best for lists for me
if i leave it int i always forget what option 1, 2, 3… refer to later on
in that sense enumerator acts 2 in one. it delineates and describes. i have the list options outlined with a name
some of the enumerator list entries must end on a widget interface (button text etc)
and its easy to go enum to string for that purpose
later on at some / whatever point i must again go back to the enum list to know which entry has been selected
it would have been great if there were an easy way to go sting to enum. 1. clearly there is not. 2. it is not that far to go te perceive
so i guess i better store the user interface corresponding values adjacently so streamline this
also switching between enum and int is not too difficult and i sometimes do that
and i have now found a way to break a for each enum. i simply call it in a function and use a return node at the end to break the loop by a return
so maybe you are right. a switch would be more efficient than an corresponding entry search / comparison
and there is enough reason to keep to enums instead of switching over to string (list) completely