package jeffaschenk.commons.standards.statecodes; import jeffaschenk.commons.standards.CountryCode; /** * Official ISO-3166 State/Province Codes * <p/> * Country: Gambia * * @author jeffaschenk@gmail.com * Date: May 19, 2010 * Time: 12:12:11 PM */ @SuppressWarnings("unused") public enum StateCodes_GM { /** * State Code Enumerator */ GM_B("Banjul","GM-B","city","13880", CountryCode.GAMBIA), GM_L("Lower River","GM-L","division","13887",CountryCode.GAMBIA), GM_M("MacCarthy Island","GM-M","division","13877",CountryCode.GAMBIA), GM_N("North Bank","GM-N","division","13885",CountryCode.GAMBIA), GM_U("Upper River","GM-U","division","13881",CountryCode.GAMBIA), GM_W("Western","GM-W","division","13882",CountryCode.GAMBIA); // ************************************* // Common Enum Structure for all // States of the World private final String stateProvinceName; private final String stateCode; private final String stateProvinceType; private final String stateNumericCode; private final CountryCode countryCode; StateCodes_GM(String stateProvinceName, String stateCode, String stateProvinceType, String stateNumericCode, CountryCode countryCode) { this.stateProvinceName = stateProvinceName; this.stateCode = stateCode; this.stateProvinceType = stateProvinceType; this.stateNumericCode = stateNumericCode; this.countryCode = countryCode; } public String stateProvinceName() { return this.stateProvinceName; } public String stateCode() { return this.stateCode; } public String stateProvinceType() { return this.stateProvinceType; } public String stateNumericCode() { return this.stateNumericCode; } public CountryCode countryCode() { return this.countryCode; } }