public enum ProcessIntegrityLevel extends java.lang.Enum<ProcessIntegrityLevel>
Enum Constant and Description |
---|
HIGH
high
|
LOW
low
|
MEDIUM
medium
|
SYSTEM
system
|
UNEXPECTED_VALUE
For ProcessIntegrityLevel values that were not expected from the service
|
UNKNOWN
unknown
|
UNKNOWN_FUTURE_VALUE
unknown Future Value
|
UNTRUSTED
untrusted
|
Modifier and Type | Method and Description |
---|---|
static ProcessIntegrityLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProcessIntegrityLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessIntegrityLevel UNKNOWN
public static final ProcessIntegrityLevel UNTRUSTED
public static final ProcessIntegrityLevel LOW
public static final ProcessIntegrityLevel MEDIUM
public static final ProcessIntegrityLevel HIGH
public static final ProcessIntegrityLevel SYSTEM
public static final ProcessIntegrityLevel UNKNOWN_FUTURE_VALUE
public static final ProcessIntegrityLevel UNEXPECTED_VALUE
public static ProcessIntegrityLevel[] values()
for (ProcessIntegrityLevel c : ProcessIntegrityLevel.values()) System.out.println(c);
public static ProcessIntegrityLevel valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null