public enum AddressUse extends Enum<AddressUse>
Enum Constant and Description |
---|
BILLING
An address to be used to send bills, invoices, receipts etc.
|
HOME
A communication address at a home.
|
NULL
added to help the parsers
|
OLD
This address is no longer in use (or was never correct but retained for records).
|
TEMP
A temporary address.
|
WORK
An office address.
|
Modifier and Type | Method and Description |
---|---|
static AddressUse |
fromCode(String codeString) |
String |
getDefinition() |
String |
getDisplay() |
String |
getSystem() |
String |
toCode() |
static AddressUse |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AddressUse[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AddressUse HOME
public static final AddressUse WORK
public static final AddressUse TEMP
public static final AddressUse OLD
public static final AddressUse BILLING
public static final AddressUse NULL
public static AddressUse[] values()
for (AddressUse c : AddressUse.values()) System.out.println(c);
public static AddressUse 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 static AddressUse fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
org.hl7.fhir.exceptions.FHIRException
public String toCode()
public String getSystem()
public String getDefinition()
public String getDisplay()
Copyright © 2014–2019 University Health Network. All rights reserved.