public enum Sensitivity extends java.lang.Enum<Sensitivity>
| Enum Constant and Description |
|---|
CONFIDENTIAL
The message has the Confidential sensitivity setting
|
NONE
The message has the Normal sensitivity setting.
|
PERSONAL
The message has the Personal sensitivity setting.
|
PRIVATE
The message has the Private sensitivity setting.
|
| Modifier and Type | Method and Description |
|---|---|
static Sensitivity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Sensitivity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Sensitivity PERSONAL
public static final Sensitivity PRIVATE
public static final Sensitivity CONFIDENTIAL
public static final Sensitivity NONE
public static Sensitivity[] values()
for (Sensitivity c : Sensitivity.values()) System.out.println(c);
public static Sensitivity 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