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