Package ca.uhn.fhir.model.dstu2.valueset
Enum BindingStrengthEnum
- All Implemented Interfaces:
Serializable
,Comparable<BindingStrengthEnum>
-
Enum Constant Summary
Enum ConstantDescriptionDisplay: Example
Code Value: example Instances are not expected or even encouraged to draw from the specified value set.Display: Extensible
Code Value: extensible To be conformant, instances of this element SHALL include a code from the specified value set if any of the codes within the value set can apply to the concept being communicated.Display: Preferred
Code Value: preferred Instances are encouraged to draw from the specified codes for interoperability purposes but are not required to do so to be considered conformant.Display: Required
Code Value: required To be conformant, instances of this element SHALL include a code from the specified value set. -
Field Summary
Modifier and TypeFieldDescriptionstatic final ca.uhn.fhir.model.api.IValueSetEnumBinder
<BindingStrengthEnum> Converts codes to their respective enumerated valuesstatic final String
Identifier for this Value Set:static final String
Name for this Value Set: BindingStrength -
Method Summary
Modifier and TypeMethodDescriptionstatic BindingStrengthEnum
Returns the enumerated value associated with this codegetCode()
Returns the code associated with this enumerated valueReturns the code system associated with this enumerated valuestatic BindingStrengthEnum
Returns the enum constant of this type with the specified name.static BindingStrengthEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
REQUIRED
Display: Required
Code Value: required To be conformant, instances of this element SHALL include a code from the specified value set. -
EXTENSIBLE
Display: Extensible
Code Value: extensible To be conformant, instances of this element SHALL include a code from the specified value set if any of the codes within the value set can apply to the concept being communicated. If the valueset does not cover the concept (based on human review), alternate codings (or, data type allowing, text) may be included instead. -
PREFERRED
Display: Preferred
Code Value: preferred Instances are encouraged to draw from the specified codes for interoperability purposes but are not required to do so to be considered conformant. -
EXAMPLE
Display: Example
Code Value: example Instances are not expected or even encouraged to draw from the specified value set. The value set merely provides examples of the types of concepts intended to be included.
-
-
Field Details
-
VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
-
VALUESET_NAME
Name for this Value Set: BindingStrength- See Also:
-
VALUESET_BINDER
Converts 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
-