Enum V3Hl7V3Conformance
- java.lang.Object
-
- java.lang.Enum<V3Hl7V3Conformance>
-
- org.hl7.fhir.r4.model.codesystems.V3Hl7V3Conformance
-
- All Implemented Interfaces:
Serializable
,Comparable<V3Hl7V3Conformance>
public enum V3Hl7V3Conformance extends Enum<V3Hl7V3Conformance>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description I
Description: Implementers receiving this property must not raise an error if the data is received, but will not perform any useful function with the data.NP
Description: All implementers are prohibited from transmitting this content, and may raise an error if they receive it.NULL
added to help the parsersR
Description: All implementers must support this property.RC
Description: The element is considered "required" (i.e.RI
Description: The element is considered "required" (i.e.U
Description: The conformance expectations for this element have not yet been determined.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static V3Hl7V3Conformance
fromCode(String codeString)
String
getDefinition()
String
getDisplay()
String
getSystem()
String
toCode()
static V3Hl7V3Conformance
valueOf(String name)
Returns the enum constant of this type with the specified name.static V3Hl7V3Conformance[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
I
public static final V3Hl7V3Conformance I
Description: Implementers receiving this property must not raise an error if the data is received, but will not perform any useful function with the data. This conformance level is not used in profiles or other artifacts that are specific to the "sender" or "initiator" of a communication.
-
NP
public static final V3Hl7V3Conformance NP
Description: All implementers are prohibited from transmitting this content, and may raise an error if they receive it.
-
R
public static final V3Hl7V3Conformance R
Description: All implementers must support this property. I.e. they must be able to transmit, or to receive and usefully handle the concept.
-
RC
public static final V3Hl7V3Conformance RC
Description: The element is considered "required" (i.e. must be supported) from the perspective of systems that consume instances, but is "undetermined" for systems that generate instances. Used only as part of specifications that define both initiator and consumer expectations.
-
RI
public static final V3Hl7V3Conformance RI
Description: The element is considered "required" (i.e. must be supported) from the perspective of systems that generate instances, but is "undetermined" for systems that consume instances. Used only as part of specifications that define both initiator and consumer expectations.
-
U
public static final V3Hl7V3Conformance U
Description: The conformance expectations for this element have not yet been determined.
-
NULL
public static final V3Hl7V3Conformance NULL
added to help the parsers
-
-
Method Detail
-
values
public static V3Hl7V3Conformance[] 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 (V3Hl7V3Conformance c : V3Hl7V3Conformance.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static V3Hl7V3Conformance 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 V3Hl7V3Conformance fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-