public enum ContactPointUse extends Enum<ContactPointUse>
| Enum Constant and Description |
|---|
HOME
A communication contact point 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.
|
MOBILE
A telecommunication device that moves and stays with its owner.
|
NULL
added to help the parsers
|
OLD
This contact point is no longer in use (or was never correct, but retained for records).
|
TEMP
A temporary contact point.
|
WORK
An office contact point.
|
| Modifier and Type | Method and Description |
|---|---|
static ContactPointUse |
fromCode(String codeString) |
String |
getDefinition() |
String |
getDisplay() |
String |
getSystem() |
String |
toCode() |
static ContactPointUse |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContactPointUse[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContactPointUse HOME
public static final ContactPointUse WORK
public static final ContactPointUse TEMP
public static final ContactPointUse OLD
public static final ContactPointUse MOBILE
public static final ContactPointUse NULL
public static ContactPointUse[] values()
for (ContactPointUse c : ContactPointUse.values()) System.out.println(c);
public static ContactPointUse 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 ContactPointUse fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
org.hl7.fhir.exceptions.FHIRExceptionpublic String getDefinition()
public String getDisplay()
Copyright © 2014–2021 Health Level 7. All rights reserved.