Enum CodeSystemContentMode.ValueSet
- java.lang.Object
-
- java.lang.Enum<CodeSystemContentMode.ValueSet>
-
- com.ibm.fhir.model.type.code.CodeSystemContentMode.ValueSet
-
- All Implemented Interfaces:
Serializable,Comparable<CodeSystemContentMode.ValueSet>
- Enclosing class:
- CodeSystemContentMode
public static enum CodeSystemContentMode.ValueSet extends Enum<CodeSystemContentMode.ValueSet>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPLETECompleteEXAMPLEExampleFRAGMENTFragmentNOT_PRESENTNot PresentSUPPLEMENTSupplement
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CodeSystemContentMode.ValueSetfrom(String value)Factory method for creating CodeSystemContentMode.ValueSet values from a passed string value.Stringvalue()static CodeSystemContentMode.ValueSetvalueOf(String name)Returns the enum constant of this type with the specified name.static CodeSystemContentMode.ValueSet[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_PRESENT
public static final CodeSystemContentMode.ValueSet NOT_PRESENT
Not PresentNone of the concepts defined by the code system are included in the code system resource.
-
EXAMPLE
public static final CodeSystemContentMode.ValueSet EXAMPLE
ExampleA few representative concepts are included in the code system resource. There is no useful intent in the subset choice and there's no process to make it workable: it's not intended to be workable.
-
FRAGMENT
public static final CodeSystemContentMode.ValueSet FRAGMENT
FragmentA subset of the code system concepts are included in the code system resource. This is a curated subset released for a specific purpose under the governance of the code system steward, and that the intent, bounds and consequences of the fragmentation are clearly defined in the fragment or the code system documentation. Fragments are also known as partitions.
-
COMPLETE
public static final CodeSystemContentMode.ValueSet COMPLETE
CompleteAll the concepts defined by the code system are included in the code system resource.
-
SUPPLEMENT
public static final CodeSystemContentMode.ValueSet SUPPLEMENT
SupplementThe resource doesn't define any new concepts; it just provides additional designations and properties to another code system.
-
-
Method Detail
-
values
public static CodeSystemContentMode.ValueSet[] 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 (CodeSystemContentMode.ValueSet c : CodeSystemContentMode.ValueSet.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CodeSystemContentMode.ValueSet 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
-
value
public String value()
- Returns:
- The java.lang.String value of the code represented by this enum
-
from
public static CodeSystemContentMode.ValueSet from(String value)
Factory method for creating CodeSystemContentMode.ValueSet values from a passed string value.- Parameters:
value- A string that matches one of the allowed code values- Throws:
IllegalArgumentException- If the passed string cannot be parsed into an allowed code value
-
-