public enum ConfidentialityLevel extends Enum<ConfidentialityLevel> implements Serializable
| Enum Constant and Description |
|---|
Confidential
The data should be protected and only shared with people with a need to see it.
|
Internal
The data should not be exposed outside of this organization.
|
Other
Another confidentially level.
|
Restricted
The data is very valuable and must be restricted to a very small number of people.
|
Sensitive
The data is sensitive and inappropriate use may adversely impact the data subject.
|
Unclassified
The data is public information.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getDescription()
Return the description for the enum.
|
String |
getName()
Return the descriptive name for the ConfidentialityLevel enum instance
|
int |
getOrdinal()
Return the numerical value for the enum.
|
static ConfidentialityLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfidentialityLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfidentialityLevel Unclassified
public static final ConfidentialityLevel Internal
public static final ConfidentialityLevel Confidential
public static final ConfidentialityLevel Sensitive
public static final ConfidentialityLevel Restricted
public static final ConfidentialityLevel Other
public static ConfidentialityLevel[] values()
for (ConfidentialityLevel c : ConfidentialityLevel.values()) System.out.println(c);
public static ConfidentialityLevel 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 int getOrdinal()
public String getDescription()
public String getName()
Copyright © 2018–2021 LF AI & Data Foundation. All rights reserved.