Basically a series of titles will be passed into the switch statement and I need to compare them against the string values of the enum. But I have little to no idea how to do th
Enum can only have integral underlying types (except char). Therefore you cannot do what you want, at least directly.
However you can translate the string you have to the enum type:
EnumType eVal = (EnumType)Enum.Parse(typeof(EnumType), strValue);
switch(eVal)
{
case EnumType.doctor:/*...*/; break;
case EnumType.mr: /*...*/; break;
}