Package ca.uhn.fhir.model.dstu2.valueset
Enum IdentifierTypeCodesEnum
- java.lang.Object
-
- java.lang.Enum<IdentifierTypeCodesEnum>
-
- ca.uhn.fhir.model.dstu2.valueset.IdentifierTypeCodesEnum
-
- All Implemented Interfaces:
Serializable,Comparable<IdentifierTypeCodesEnum>
public enum IdentifierTypeCodesEnum extends Enum<IdentifierTypeCodesEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BRNCode Value: BRNDLCode Value: DLDRCode Value: DRENCode Value: ENFILLER_IDENTIFIERDisplay: Filler Identifier
Code Value: FILL The Identifier associated with the person, or service, who produces the observations or fulfills the order requested by the requestor.MCNCode Value: MCNMDCode Value: MDMRCode Value: MRNIIPCode Value: NIIPPLACER_IDENTIFIERDisplay: Placer Identifier
Code Value: PLAC The identifier associated with the person or service that requests or places an order.PPNCode Value: PPNPRNCode Value: PRNSERIAL_NUMBERDisplay: Serial Number
Code Value: SNO An identifier affixed to an item by the manufacturer when it is first made, where each item has a different identifier.SOCIAL_BENEFICIARY_IDENTIFIERDisplay: Social Beneficiary Identifier
Code Value: SB An identifier issued by a governmental organization to an individual for the purpose of the receipt of social services and benefits.TAXCode Value: TAXUNIVERSAL_DEVICE_IDENTIFIERDisplay: Universal Device Identifier
Code Value: UDI A identifier assigned to a device using the Universal Device Identifier framework as defined by FDA (http://www.fda.gov/MedicalDevices/DeviceRegulationandGuidance/UniqueDeviceIdentification/).
-
Field Summary
Fields Modifier and Type Field Description static ca.uhn.fhir.model.api.IValueSetEnumBinder<IdentifierTypeCodesEnum>VALUESET_BINDERConverts codes to their respective enumerated valuesstatic StringVALUESET_IDENTIFIERIdentifier for this Value Set:static StringVALUESET_NAMEName for this Value Set: Identifier Type Codes
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IdentifierTypeCodesEnumforCode(String theCode)Returns the enumerated value associated with this codeStringgetCode()Returns the code associated with this enumerated valueStringgetSystem()Returns the code system associated with this enumerated valuestatic IdentifierTypeCodesEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static IdentifierTypeCodesEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNIVERSAL_DEVICE_IDENTIFIER
public static final IdentifierTypeCodesEnum UNIVERSAL_DEVICE_IDENTIFIER
Display: Universal Device Identifier
Code Value: UDI A identifier assigned to a device using the Universal Device Identifier framework as defined by FDA (http://www.fda.gov/MedicalDevices/DeviceRegulationandGuidance/UniqueDeviceIdentification/).
-
SERIAL_NUMBER
public static final IdentifierTypeCodesEnum SERIAL_NUMBER
Display: Serial Number
Code Value: SNO An identifier affixed to an item by the manufacturer when it is first made, where each item has a different identifier.
-
SOCIAL_BENEFICIARY_IDENTIFIER
public static final IdentifierTypeCodesEnum SOCIAL_BENEFICIARY_IDENTIFIER
Display: Social Beneficiary Identifier
Code Value: SB An identifier issued by a governmental organization to an individual for the purpose of the receipt of social services and benefits.
-
PLACER_IDENTIFIER
public static final IdentifierTypeCodesEnum PLACER_IDENTIFIER
Display: Placer Identifier
Code Value: PLAC The identifier associated with the person or service that requests or places an order.
-
FILLER_IDENTIFIER
public static final IdentifierTypeCodesEnum FILLER_IDENTIFIER
Display: Filler Identifier
Code Value: FILL The Identifier associated with the person, or service, who produces the observations or fulfills the order requested by the requestor.
-
DL
public static final IdentifierTypeCodesEnum DL
Code Value: DL
-
PPN
public static final IdentifierTypeCodesEnum PPN
Code Value: PPN
-
BRN
public static final IdentifierTypeCodesEnum BRN
Code Value: BRN
-
MR
public static final IdentifierTypeCodesEnum MR
Code Value: MR
-
MCN
public static final IdentifierTypeCodesEnum MCN
Code Value: MCN
-
EN
public static final IdentifierTypeCodesEnum EN
Code Value: EN
-
TAX
public static final IdentifierTypeCodesEnum TAX
Code Value: TAX
-
NIIP
public static final IdentifierTypeCodesEnum NIIP
Code Value: NIIP
-
PRN
public static final IdentifierTypeCodesEnum PRN
Code Value: PRN
-
MD
public static final IdentifierTypeCodesEnum MD
Code Value: MD
-
DR
public static final IdentifierTypeCodesEnum DR
Code Value: DR
-
-
Field Detail
-
VALUESET_IDENTIFIER
public static final String VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
- Constant Field Values
-
VALUESET_NAME
public static final String VALUESET_NAME
Name for this Value Set: Identifier Type Codes- See Also:
- Constant Field Values
-
VALUESET_BINDER
public static final ca.uhn.fhir.model.api.IValueSetEnumBinder<IdentifierTypeCodesEnum> VALUESET_BINDER
Converts codes to their respective enumerated values
-
-
Method Detail
-
values
public static IdentifierTypeCodesEnum[] 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 (IdentifierTypeCodesEnum c : IdentifierTypeCodesEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IdentifierTypeCodesEnum 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
-
forCode
public static IdentifierTypeCodesEnum forCode(String theCode)
Returns the enumerated value associated with this code
-
-