parse static method

Country parse(
  1. String country
)

Implementation

static Country parse(String country) {
  if (country == worldWide.countryCode) {
    return worldWide;
  } else {
    return CountryParser.parse(country);
  }
}