I have Strings that repeat themselves, just changing a word. I have a case
to mount the email content, but I do not want to repeat the entire string, and the only value that will be different is whether it is front-end, backend, mobile, etc.
How do I do this in the best way? For a cleaner code?
String mailContent = "";
switch (mail) {
case "FRONTEND":
mailContent = "Assim que tivermos oportunidade para programador front-end, entraremos em contato.";
break;
case "BACKEND":
mailContent = "Assim que tivermos oportunidade para programador back-end, entraremos em contato.";
break;
case "MOBILE":
mailContent = "Assim que tivermos oportunidade para programador mobile, entraremos em contato.";
break;
case "GENERIC":
mailContent = "Assim que tivermos oportunidade para programador, entraremos em contato.";
break;
default:
break;
}