Enum NameUse
- java.lang.Object
-
- java.lang.Enum<NameUse>
-
- org.hl7.fhir.r4.model.codesystems.NameUse
-
- All Implemented Interfaces:
Serializable,Comparable<NameUse>
public enum NameUse extends Enum<NameUse>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANONYMOUSAnonymous assigned name, alias, or pseudonym (used to protect a person's identity for privacy reasons).MAIDENA name used prior to changing name because of marriage.NICKNAMEA name that is used to address the person in an informal manner, but is not part of their formal or usual name.NULLadded to help the parsersOFFICIALThe formal name as registered in an official (government) registry, but which name might not be commonly used.OLDThis name is no longer in use (or was never correct, but retained for records).TEMPA temporary name.USUALKnown as/conventional/the one you normally use.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static NameUsefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static NameUsevalueOf(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.
-
-
-
Enum Constant Detail
-
OFFICIAL
public static final NameUse OFFICIAL
The formal name as registered in an official (government) registry, but which name might not be commonly used. May be called "legal name".
-
TEMP
public static final NameUse TEMP
A temporary name. Name.period can provide more detailed information. This may also be used for temporary names assigned at birth or in emergency situations.
-
NICKNAME
public static final NameUse NICKNAME
A name that is used to address the person in an informal manner, but is not part of their formal or usual name.
-
ANONYMOUS
public static final NameUse ANONYMOUS
Anonymous assigned name, alias, or pseudonym (used to protect a person's identity for privacy reasons).
-
OLD
public static final NameUse OLD
This name is no longer in use (or was never correct, but retained for records).
-
MAIDEN
public static final NameUse MAIDEN
A name used prior to changing name because of marriage. This name use is for use by applications that collect and store names that were used prior to a marriage. Marriage naming customs vary greatly around the world, and are constantly changing. This term is not gender specific. The use of this term does not imply any particular history for a person's name.
-
-
Method Detail
-
values
public static NameUse[] 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 (NameUse c : NameUse.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NameUse 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 NameUse fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-