public enum ConformanceExpectation extends Enum<ConformanceExpectation>
| Enum Constant and Description |
|---|
MAY
Support for the specified capability is not necessary to be considered conformant, and the requirement should be considered strictly optional.
|
NULL
added to help the parsers
|
SHALL
Support for the specified capability is required to be considered conformant.
|
SHOULD
Support for the specified capability is strongly encouraged, and failure to support it should only occur after careful consideration.
|
SHOULDNOT
Support for the specified capability is strongly discouraged and should occur only after careful consideration.
|
| Modifier and Type | Method and Description |
|---|---|
static ConformanceExpectation |
fromCode(String codeString) |
String |
getDefinition() |
String |
getDisplay() |
String |
getSystem() |
String |
toCode() |
static ConformanceExpectation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConformanceExpectation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConformanceExpectation SHALL
public static final ConformanceExpectation SHOULD
public static final ConformanceExpectation MAY
public static final ConformanceExpectation SHOULDNOT
public static final ConformanceExpectation NULL
public static ConformanceExpectation[] values()
for (ConformanceExpectation c : ConformanceExpectation.values()) System.out.println(c);
public static ConformanceExpectation valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static ConformanceExpectation fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
org.hl7.fhir.exceptions.FHIRExceptionpublic String getDefinition()
public String getDisplay()
Copyright © 2014–2021 Health Level 7. All rights reserved.