Enum V3AddressUse
- java.lang.Object
-
- java.lang.Enum<V3AddressUse>
-
- org.hl7.fhir.r4.model.codesystems.V3AddressUse
-
- All Implemented Interfaces:
Serializable,Comparable<V3AddressUse>
public enum V3AddressUse extends Enum<V3AddressUse>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description _GENERALADDRESSUSEDescription: Address uses that can apply to both postal and telecommunication addresses._POSTALADDRESSUSEDescription: Address uses that only apply to postal addresses, not telecommunication addresses._TELECOMMUNICATIONADDRESSUSEDescription: Address uses that only apply to telecommunication addresses, not postal addresses.ASDescription: An automated answering machine used for less urgent cases and if the main purpose of contact is to leave a message or access an automated announcement.BADDescription: A flag indicating that the address is bad, in fact, useless.CONFDescription: Indicates that the address is considered sensitive and should only be shared or published in accordance with organizational controls governing patient demographic information with increased sensitivity.DIRDescription: Indicates a work place address or telecommunication address that reaches the individual or organization directly without intermediaries.ECDescription: A contact specifically designated to be used for emergencies.HDescription: A communication address at a home, attempted contacts for business purposes might intrude privacy and chances are one will contact family or other household members instead of the person one wishes to call.HPDescription: The primary home, to reach a person after business hours.HVDescription: A vacation home, to reach a person while on vacation.MCDescription: A telecommunication device that moves and stays with its owner.NULLadded to help the parsersOLDThis address is no longer in use.PGDescription: A paging device suitable to solicit a callback or to leave a very short message.PHYSDescription: Used primarily to visit an address.PSTDescription: Used to send mail.PUBDescription: Indicates a work place address or telecommunication address that is a 'standard' address which may reach a reception service, mail-room, or other intermediary prior to the target entity.TMPDescription: A temporary address, may be good for visit or mailing.WPDescription: An office address.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static V3AddressUsefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static V3AddressUsevalueOf(String name)Returns the enum constant of this type with the specified name.static V3AddressUse[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
_GENERALADDRESSUSE
public static final V3AddressUse _GENERALADDRESSUSE
Description: Address uses that can apply to both postal and telecommunication addresses.
-
BAD
public static final V3AddressUse BAD
Description: A flag indicating that the address is bad, in fact, useless.
-
CONF
public static final V3AddressUse CONF
Description: Indicates that the address is considered sensitive and should only be shared or published in accordance with organizational controls governing patient demographic information with increased sensitivity. Uses of Addresses. Lloyd to supply more complete description.
-
H
public static final V3AddressUse H
Description: A communication address at a home, attempted contacts for business purposes might intrude privacy and chances are one will contact family or other household members instead of the person one wishes to call. Typically used with urgent cases, or if no other contacts are available.
-
HP
public static final V3AddressUse HP
Description: The primary home, to reach a person after business hours.
-
HV
public static final V3AddressUse HV
Description: A vacation home, to reach a person while on vacation.
-
OLD
public static final V3AddressUse OLD
This address is no longer in use. Usage Note: Address may also carry valid time ranges. This code is used to cover the situations where it is known that the address is no longer valid, but no particular time range for its use is known.
-
TMP
public static final V3AddressUse TMP
Description: A temporary address, may be good for visit or mailing. Note that an address history can provide more detailed information.
-
WP
public static final V3AddressUse WP
Description: An office address. First choice for business related contacts during business hours.
-
DIR
public static final V3AddressUse DIR
Description: Indicates a work place address or telecommunication address that reaches the individual or organization directly without intermediaries. For phones, often referred to as a 'private line'.
-
PUB
public static final V3AddressUse PUB
Description: Indicates a work place address or telecommunication address that is a 'standard' address which may reach a reception service, mail-room, or other intermediary prior to the target entity.
-
_POSTALADDRESSUSE
public static final V3AddressUse _POSTALADDRESSUSE
Description: Address uses that only apply to postal addresses, not telecommunication addresses.
-
PHYS
public static final V3AddressUse PHYS
Description: Used primarily to visit an address.
-
PST
public static final V3AddressUse PST
Description: Used to send mail.
-
_TELECOMMUNICATIONADDRESSUSE
public static final V3AddressUse _TELECOMMUNICATIONADDRESSUSE
Description: Address uses that only apply to telecommunication addresses, not postal addresses.
-
AS
public static final V3AddressUse AS
Description: An automated answering machine used for less urgent cases and if the main purpose of contact is to leave a message or access an automated announcement.
-
EC
public static final V3AddressUse EC
Description: A contact specifically designated to be used for emergencies. This is the first choice in emergencies, independent of any other use codes.
-
MC
public static final V3AddressUse MC
Description: A telecommunication device that moves and stays with its owner. May have characteristics of all other use codes, suitable for urgent matters, not the first choice for routine business.
-
PG
public static final V3AddressUse PG
Description: A paging device suitable to solicit a callback or to leave a very short message.
-
NULL
public static final V3AddressUse NULL
added to help the parsers
-
-
Method Detail
-
values
public static V3AddressUse[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (V3AddressUse c : V3AddressUse.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static V3AddressUse valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
fromCode
public static V3AddressUse fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-