public enum NameUse extends Enum<NameUse>
| Enum Constant and Description |
|---|
ANONYMOUS
Anonymous assigned name, alias, or pseudonym (used to protect a person's identity for privacy reasons).
|
MAIDEN
A name used prior to changing name because of marriage.
|
NICKNAME
A name that is used to address the person in an informal manner, but is not part of their formal or usual name.
|
NULL
added to help the parsers
|
OFFICIAL
The formal name as registered in an official (government) registry, but which name might not be commonly used.
|
OLD
This name is no longer in use (or was never correct, but retained for records).
|
TEMP
A temporary name.
|
USUAL
Known as/conventional/the one you normally use.
|
| Modifier and Type | Method and Description |
|---|---|
static NameUse |
fromCode(String codeString) |
String |
getDefinition() |
String |
getDisplay() |
String |
getSystem() |
String |
toCode() |
static NameUse |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NameUse[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NameUse OFFICIAL
public static final NameUse TEMP
public static final NameUse NICKNAME
public static final NameUse ANONYMOUS
public static final NameUse OLD
public static final NameUse MAIDEN
public static NameUse[] values()
for (NameUse c : NameUse.values()) System.out.println(c);
public static NameUse 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 NameUse 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.