You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enums are in general much better for multi-value selection with UI as if the value or display value changes with strings they have to updated everywhere they are checked, but with an enum, the update need only be made in one place.
Description:
Enums are in general much better for multi-value selection with UI as if the value or display value changes with strings they have to updated everywhere they are checked, but with an enum, the update need only be made in one place.