Enum IdentifierType
- java.lang.Object
-
- java.lang.Enum<IdentifierType>
-
- org.hl7.fhir.dstu2016may.model.codesystems.IdentifierType
-
- All Implemented Interfaces:
Serializable,Comparable<IdentifierType>
public enum IdentifierType extends Enum<IdentifierType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FILLThe Identifier associated with the person, or service, who produces the observations or fulfills the order requested by the requestor.NULLadded to help the parsersPLACThe identifier associated with the person or service that requests or places an order.SBAn identifier issued by a governmental organization to an individual for the purpose of the receipt of social services and benefits.SNOAn identifier affixed to an item by the manufacturer when it is first made, where each item has a different identifier.UDIA identifier assigned to a device using the Universal Device Identifier framework as defined by FDA (http://www.fda.gov/MedicalDevices/DeviceRegulationandGuidance/UniqueDeviceIdentification/).
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IdentifierTypefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static IdentifierTypevalueOf(String name)Returns the enum constant of this type with the specified name.static IdentifierType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UDI
public static final IdentifierType UDI
A identifier assigned to a device using the Universal Device Identifier framework as defined by FDA (http://www.fda.gov/MedicalDevices/DeviceRegulationandGuidance/UniqueDeviceIdentification/).
-
SNO
public static final IdentifierType SNO
An identifier affixed to an item by the manufacturer when it is first made, where each item has a different identifier.
-
SB
public static final IdentifierType SB
An identifier issued by a governmental organization to an individual for the purpose of the receipt of social services and benefits.
-
PLAC
public static final IdentifierType PLAC
The identifier associated with the person or service that requests or places an order.
-
FILL
public static final IdentifierType FILL
The Identifier associated with the person, or service, who produces the observations or fulfills the order requested by the requestor.
-
NULL
public static final IdentifierType NULL
added to help the parsers
-
-
Method Detail
-
values
public static IdentifierType[] 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 (IdentifierType c : IdentifierType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IdentifierType 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 IdentifierType fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-