Enum V3ResponseLevel
- java.lang.Object
-
- java.lang.Enum<V3ResponseLevel>
-
- org.hl7.fhir.r4.model.codesystems.V3ResponseLevel
-
- All Implemented Interfaces:
Serializable,Comparable<V3ResponseLevel>
public enum V3ResponseLevel extends Enum<V3ResponseLevel>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CRespond with exceptions and a notification of completionDRespond with exceptions, completion, modifications and include more detail information (if applicable)ERespond with exceptions onlyFRespond with exceptions, completion, and modification with detail (as above), and send positive confirmations even if no modifications are being made.NRespond only with message level acknowledgements, i.e., only notify acceptance or rejection of the message, do not include any application-level detailNULLadded to help the parsersRRespond with exceptions, completions and modifications or revisions done before completionXDo not send any kind of response
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static V3ResponseLevelfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static V3ResponseLevelvalueOf(String name)Returns the enum constant of this type with the specified name.static V3ResponseLevel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
C
public static final V3ResponseLevel C
Respond with exceptions and a notification of completion
-
D
public static final V3ResponseLevel D
Respond with exceptions, completion, modifications and include more detail information (if applicable)
-
E
public static final V3ResponseLevel E
Respond with exceptions only
-
F
public static final V3ResponseLevel F
Respond with exceptions, completion, and modification with detail (as above), and send positive confirmations even if no modifications are being made.
-
N
public static final V3ResponseLevel N
Respond only with message level acknowledgements, i.e., only notify acceptance or rejection of the message, do not include any application-level detail
-
R
public static final V3ResponseLevel R
Respond with exceptions, completions and modifications or revisions done before completion
-
X
public static final V3ResponseLevel X
Do not send any kind of response
-
NULL
public static final V3ResponseLevel NULL
added to help the parsers
-
-
Method Detail
-
values
public static V3ResponseLevel[] 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 (V3ResponseLevel c : V3ResponseLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static V3ResponseLevel 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 V3ResponseLevel fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-