I wrote this simple code:
if (country.contentEquals("France"))
{
language = "French";
}
else if (country.contentEquals("Germany"))
{
language = "German";
}
else if (country.contentEquals("USA"))
{
language = "English";
}
Now I want to change this code using this table:
static String [][] mCountryLanguageTable = {{"France","French"},
{"German","Germany"},
{"USA","English"}};
Is there any Java type or class that could do this?? This is only a simple exemple that I wrote