public enum UESSecurityLevel extends java.lang.Enum<UESSecurityLevel>
Enum Constant and Description |
---|
CONFIDENTIAL
Confidential.
|
INTERNAL_USE
Internal use only.
|
NO_CONFIDENTIALITY
No confidentiality.
|
TOP_SECRET
Top secret.
|
Modifier and Type | Method and Description |
---|---|
static UESSecurityLevel |
fromValue(java.lang.String v)
This method is used for artifact export.
|
java.lang.String |
getLevel() |
java.lang.String |
value()
This method is used for artifact export.
|
static UESSecurityLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UESSecurityLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
ues:#{system}:#{10H2_SECURITY_LEVEL_CT}:#{NO_CONFIDENTIALITY}
.ues:#{system}:#{10H2_SECURITY_LEVEL_CT}:#{INTERNAL_USE}
.ues:#{system}:#{10H2_SECURITY_LEVEL_CT}:#{CONFIDENTIAL}
.ues:#{system}:#{10H2_SECURITY_LEVEL_CT}:#{TOP_SECRET}
.for (UESSecurityLevel c : UESSecurityLevel.values()) System.out.println(c);
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