Enum ExtraSecurityRoleType
- java.lang.Object
-
- java.lang.Enum<ExtraSecurityRoleType>
-
- org.hl7.fhir.r4.model.codesystems.ExtraSecurityRoleType
-
- All Implemented Interfaces:
Serializable,Comparable<ExtraSecurityRoleType>
public enum ExtraSecurityRoleType extends Enum<ExtraSecurityRoleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTHSERVERAn entity providing authorization services to enable the electronic sharing of health-related information based on resource owner's preapproved permissions.DATACOLLECTORAn entity that collects information over which the data subject may have certain rights under policy or law to control that information's management and distribution by data collectors, including the right to access, retrieve, distribute, or delete that information.DATAPROCESSORAn entity that processes collected information over which the data subject may have certain rights under policy or law to control that information's management and distribution by data processors, including the right to access, retrieve, distribute, or delete that information.DATASUBJECTA person whose personal information is collected or processed, and who may have certain rights under policy or law to control that information's management and distribution by data collectors or processors, including the right to access, retrieve, distribute, or delete that information.HUMANUSERThe human user that has participated.NULLadded to help the parsers
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ExtraSecurityRoleTypefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static ExtraSecurityRoleTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ExtraSecurityRoleType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHSERVER
public static final ExtraSecurityRoleType AUTHSERVER
An entity providing authorization services to enable the electronic sharing of health-related information based on resource owner's preapproved permissions. For example, an UMA Authorization Server[UMA]
-
DATACOLLECTOR
public static final ExtraSecurityRoleType DATACOLLECTOR
An entity that collects information over which the data subject may have certain rights under policy or law to control that information's management and distribution by data collectors, including the right to access, retrieve, distribute, or delete that information.
-
DATAPROCESSOR
public static final ExtraSecurityRoleType DATAPROCESSOR
An entity that processes collected information over which the data subject may have certain rights under policy or law to control that information's management and distribution by data processors, including the right to access, retrieve, distribute, or delete that information.
-
DATASUBJECT
public static final ExtraSecurityRoleType DATASUBJECT
A person whose personal information is collected or processed, and who may have certain rights under policy or law to control that information's management and distribution by data collectors or processors, including the right to access, retrieve, distribute, or delete that information.
-
HUMANUSER
public static final ExtraSecurityRoleType HUMANUSER
The human user that has participated.
-
NULL
public static final ExtraSecurityRoleType NULL
added to help the parsers
-
-
Method Detail
-
values
public static ExtraSecurityRoleType[] 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 (ExtraSecurityRoleType c : ExtraSecurityRoleType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExtraSecurityRoleType 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 ExtraSecurityRoleType fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-