public enum CriticalityLevel extends Enum<CriticalityLevel> implements Serializable
| Enum Constant and Description |
|---|
Catastrophic
The data is so important that its loss is catastrophic putting the future of the organization in doubt.
|
Critical
The data is critical to the operation of the organization.
|
Important
The data is important to the running of the organization.
|
Marginal
The data is of minor importance to the organization.
|
Other
Another criticality level.
|
Unclassified
There is no assessment of the criticality of this data.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getDescription()
Return the description for the enum.
|
String |
getName()
Return the descriptive name for the CriticalityLevel enum instance
|
int |
getOrdinal()
Return the numerical value for the enum.
|
static CriticalityLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CriticalityLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CriticalityLevel Unclassified
public static final CriticalityLevel Marginal
public static final CriticalityLevel Important
public static final CriticalityLevel Critical
public static final CriticalityLevel Catastrophic
public static final CriticalityLevel Other
public static CriticalityLevel[] values()
for (CriticalityLevel c : CriticalityLevel.values()) System.out.println(c);
public static CriticalityLevel 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–2020 ODPi. All rights reserved.