Package org.hl7.fhir.r5.model
Enum DocumentReference.DocumentAttestationMode
- java.lang.Object
-
- java.lang.Enum<DocumentReference.DocumentAttestationMode>
-
- org.hl7.fhir.r5.model.DocumentReference.DocumentAttestationMode
-
- All Implemented Interfaces:
Serializable,Comparable<DocumentReference.DocumentAttestationMode>
- Enclosing class:
- DocumentReference
public static enum DocumentReference.DocumentAttestationMode extends Enum<DocumentReference.DocumentAttestationMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LEGALThe person authenticated the content and accepted legal responsibility for its content.NULLadded to help the parsers with the generic typesOFFICIALThe organization authenticated the content as consistent with their policies and procedures.PERSONALThe person authenticated the content in their personal capacity.PROFESSIONALThe person authenticated the content in their professional capacity.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DocumentReference.DocumentAttestationModefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static DocumentReference.DocumentAttestationModevalueOf(String name)Returns the enum constant of this type with the specified name.static DocumentReference.DocumentAttestationMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PERSONAL
public static final DocumentReference.DocumentAttestationMode PERSONAL
The person authenticated the content in their personal capacity.
-
PROFESSIONAL
public static final DocumentReference.DocumentAttestationMode PROFESSIONAL
The person authenticated the content in their professional capacity.
-
LEGAL
public static final DocumentReference.DocumentAttestationMode LEGAL
The person authenticated the content and accepted legal responsibility for its content.
-
OFFICIAL
public static final DocumentReference.DocumentAttestationMode OFFICIAL
The organization authenticated the content as consistent with their policies and procedures.
-
NULL
public static final DocumentReference.DocumentAttestationMode NULL
added to help the parsers with the generic types
-
-
Method Detail
-
values
public static DocumentReference.DocumentAttestationMode[] 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 (DocumentReference.DocumentAttestationMode c : DocumentReference.DocumentAttestationMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DocumentReference.DocumentAttestationMode 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 DocumentReference.DocumentAttestationMode fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-