public enum Sensitivity extends java.lang.Enum<Sensitivity>
| Enum Constant and Description |
|---|
CONFIDENTIAL
confidential
|
NORMAL
normal
|
PERSONAL
personal
|
PRIVATE
private
|
UNEXPECTED_VALUE
For Sensitivity values that were not expected from the service
|
| 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 NORMAL
public static final Sensitivity PERSONAL
public static final Sensitivity PRIVATE
public static final Sensitivity CONFIDENTIAL
public static final Sensitivity UNEXPECTED_VALUE
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