I wonder if dictionary is not a better fit than enum here:
let dict = [
"Cool": "cool",
"Nice": "rude",
"SoLazy": "so-lazy"
]
let personType = "unknown"
let personDescription = dict[personType] ?? "Unknown"
Less typing, faster processing, more natural handling of the default case, easier to expand.