public enum ResourceSecurityCategory extends Enum<ResourceSecurityCategory>
| Enum Constant and Description |
|---|
ANONYMOUS
These resources tend to not contain any individual data, or business sensitive data.
|
BUSINESS
These Resources tend to not contain any individual data, but do have data that describe business or service sensitive data.
|
INDIVIDUAL
These Resources do NOT contain Patient data, but do contain individual information about other participants.
|
NOTCLASSIFIED
Some Resources can be used for a wide scope of use-cases that span very sensitive to very non-sensitive.
|
NULL
added to help the parsers
|
PATIENT
These Resources make up the bulk of FHIR and therefore are the most commonly understood.
|
| Modifier and Type | Method and Description |
|---|---|
static ResourceSecurityCategory |
fromCode(String codeString) |
String |
getDefinition() |
String |
getDisplay() |
String |
getSystem() |
String |
toCode() |
static ResourceSecurityCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResourceSecurityCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResourceSecurityCategory ANONYMOUS
public static final ResourceSecurityCategory BUSINESS
public static final ResourceSecurityCategory INDIVIDUAL
public static final ResourceSecurityCategory PATIENT
public static final ResourceSecurityCategory NOTCLASSIFIED
public static final ResourceSecurityCategory NULL
public static ResourceSecurityCategory[] values()
for (ResourceSecurityCategory c : ResourceSecurityCategory.values()) System.out.println(c);
public static ResourceSecurityCategory 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 ResourceSecurityCategory 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.