public enum AustralianStateTerritory extends Enum<AustralianStateTerritory>
| Enum Constant and Description |
|---|
AUSTRALIAN_CAPITAL_TERRITORY |
NEW_SOUTH_WALES |
NORTHERN_TERRITORY |
QUEENSLAND |
SOUTH_AUSTRALIA |
TASMANIA |
UNKNOWN |
VICTORIA |
WESTERN_AUSTRALIA |
| Modifier and Type | Method and Description |
|---|---|
static AustralianStateTerritory |
fromAbreviation(String stateAbbreviation) |
String |
getAbbreviation() |
String |
getCode() |
String |
getCodeSystem() |
String |
getCodeSystemName() |
String |
getCodeSystemVersion() |
String |
getDescriptor() |
String |
getDisplayName() |
String |
getOriginalText() |
boolean |
hasDisplayName() |
static AustralianStateTerritory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AustralianStateTerritory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AustralianStateTerritory NEW_SOUTH_WALES
public static final AustralianStateTerritory VICTORIA
public static final AustralianStateTerritory QUEENSLAND
public static final AustralianStateTerritory SOUTH_AUSTRALIA
public static final AustralianStateTerritory WESTERN_AUSTRALIA
public static final AustralianStateTerritory TASMANIA
public static final AustralianStateTerritory NORTHERN_TERRITORY
public static final AustralianStateTerritory AUSTRALIAN_CAPITAL_TERRITORY
public static final AustralianStateTerritory UNKNOWN
public static AustralianStateTerritory[] values()
for (AustralianStateTerritory c : AustralianStateTerritory.values()) System.out.println(c);
public static AustralianStateTerritory valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getCode()
public String getAbbreviation()
public String getDescriptor()
public String getOriginalText()
public String getCodeSystem()
public String getCodeSystemName()
public String getCodeSystemVersion()
public String getDisplayName()
public boolean hasDisplayName()
public static AustralianStateTerritory fromAbreviation(String stateAbbreviation)
Copyright © 2021. All rights reserved.