static String getCountryCode(Country name) { switch (name) { case Country.lao: return "LA"; case Country.thai: return "TH"; } return "LA"; }