Here is my problem:
I have list of possible Product categories(for example: Shoes,Mode,Women), and I need to convert this to my specific names.
example: I get the category Women and I need to convert this to Lady's.
I have about 40 category names that i need to convert.
My question is :What is the best way to do this in JAVA.
I thought about switch case, but i dont know is this a good solution.
switch (oldCategoryName) {
case "Women":
return "Ladys";
default:
return "Default";
}