Skip to content

Commit

Permalink
LC-249 - Use ISO codes
Browse files Browse the repository at this point in the history
  • Loading branch information
Maros Silady committed Oct 12, 2023
1 parent a1e6212 commit 4dd09c0
Showing 1 changed file with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,14 @@
*/
public enum CountryAustralia {

NSW("NSW", "New South Wales"),
VIC("VIC", "Victoria"),
QLD("QLD", "Queensland"),
WA("WA", "Western Australia"),
SA("SA", "South Australia"),
TAS("TAS", "Tasmania");
AU_NSW("AU-NSW", "New South Wales"),
AU_QLD("AU-QLD", "Queensland"),
AU_SA("AU-SA", "South Australia"),
AU_TAS("AU-TAS", "Tasmania"),
AU_VIC("AU-VIC", "Victoria"),
AU_WA("AU-WA", "Western Australia"),
AU_ACT("AU-ACT", "Australian Capital Territory"),
AU_NT("AU-NT", "Northern Territory");

private final String iso;

Expand Down

0 comments on commit 4dd09c0

Please sign in to comment.