Package ca.uhn.fhir.model.dstu2.valueset
Enum NamingSystemIdentifierTypeEnum
java.lang.Object
java.lang.Enum<NamingSystemIdentifierTypeEnum>
ca.uhn.fhir.model.dstu2.valueset.NamingSystemIdentifierTypeEnum
- All Implemented Interfaces:
Serializable
,Comparable<NamingSystemIdentifierTypeEnum>
-
Enum Constant Summary
Enum ConstantDescriptionDisplay: OID
Code Value: oid An ISO object identifier; e.g.Display: Other
Code Value: other Some other type of unique identifier; e.g.Display: URI
Code Value: uri A uniform resource identifier (ideally a URL - uniform resource locator); e.g.Display: UUID
Code Value: uuid A universally unique identifier of the form a5afddf4-e880-459b-876e-e4591b0acc11. -
Field Summary
Modifier and TypeFieldDescriptionstatic final ca.uhn.fhir.model.api.IValueSetEnumBinder
<NamingSystemIdentifierTypeEnum> Converts codes to their respective enumerated valuesstatic final String
Identifier for this Value Set:static final String
Name for this Value Set: NamingSystemIdentifierType -
Method Summary
Modifier and TypeMethodDescriptionReturns the enumerated value associated with this codegetCode()
Returns the code associated with this enumerated valueReturns the code system associated with this enumerated valueReturns the enum constant of this type with the specified name.static NamingSystemIdentifierTypeEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
OID
Display: OID
Code Value: oid An ISO object identifier; e.g. 1.2.3.4.5. -
UUID
Display: UUID
Code Value: uuid A universally unique identifier of the form a5afddf4-e880-459b-876e-e4591b0acc11. -
URI
Display: URI
Code Value: uri A uniform resource identifier (ideally a URL - uniform resource locator); e.g. http://unitsofmeasure.org. -
OTHER
Display: Other
Code Value: other Some other type of unique identifier; e.g. HL7-assigned reserved string such as LN for LOINC.
-
-
Field Details
-
VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
-
VALUESET_NAME
Name for this Value Set: NamingSystemIdentifierType- See Also:
-
VALUESET_BINDER
public static final ca.uhn.fhir.model.api.IValueSetEnumBinder<NamingSystemIdentifierTypeEnum> VALUESET_BINDERConverts codes to their respective enumerated values
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getCode
Returns the code associated with this enumerated value -
getSystem
Returns the code system associated with this enumerated value -
forCode
Returns the enumerated value associated with this code
-