Skip to content

Commit

Permalink
Sync changes from 1.1.16.1 to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
filipocelka authored Jan 10, 2024
2 parents c575e2a + 3a4636c commit 66c29ac
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# buildscript - project id
projectGroup=com.generalbytes.batm.public
projectVersion=1.2.4
projectVersion=1.2.5

# buildscript - common dependency versions
bitrafaelVersion=1.0.44
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@
* Australia province identifiers.
* <p>
* Usage e.g.:
* CountryAustralia.AU-NSW.getProvinceName()
* CountryAustralia.valueOf("AU-NSW").getProvinceName()
* CountryAustralia.NSW.getProvinceName()
* CountryAustralia.valueOf("NSW").getProvinceName()
*/
public enum CountryAustralia {

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");
NSW("NSW", "New South Wales"),
QLD("QLD", "Queensland"),
SA("SA", "South Australia"),
TAS("TAS", "Tasmania"),
VIC("VIC", "Victoria"),
WA("WA", "Western Australia"),
ACT("ACT", "Australian Capital Territory"),
NT("NT", "Northern Territory");

private final String iso;

Expand Down

0 comments on commit 66c29ac

Please sign in to comment.