Вы можете просто использовать java.util.Map.создать переменную статических стран.
private static final String UK = "UK";
private static final String GE = "GE";
private static final String FR = "FR";
private static final String IT = "IT";
private static final Map<String, String> COUNTRIES;
static {
final Map<String, String> countries = new HashMap<>();
countries.put(UK, "United Kingdom");
countries.put(GE, "Germany");
countries.put(FR, "France");
countries.put(IT, "Italy");
COUNTRIES = Collections.unmodifiableMap(countries);
}
затем можно использовать свойство "get" из java.util.Map для получения названия страны
System.out.println(COUNTRIES.get(UK));
System.out.println(COUNTRIES.get(GE));
System.out.println(COUNTRIES.get(FR));
System.out.println(COUNTRIES.get(IT));