public enum SiteSecurityLevel extends java.lang.Enum<SiteSecurityLevel>
| Enum Constant and Description |
|---|
HIGH
high
|
LOW
low
|
MEDIUM
medium
|
MEDIUM_HIGH
medium High
|
MEDIUM_LOW
medium Low
|
UNEXPECTED_VALUE
For SiteSecurityLevel values that were not expected from the service
|
USER_DEFINED
user Defined
|
| Modifier and Type | Method and Description |
|---|---|
static SiteSecurityLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SiteSecurityLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SiteSecurityLevel USER_DEFINED
public static final SiteSecurityLevel LOW
public static final SiteSecurityLevel MEDIUM_LOW
public static final SiteSecurityLevel MEDIUM
public static final SiteSecurityLevel MEDIUM_HIGH
public static final SiteSecurityLevel HIGH
public static final SiteSecurityLevel UNEXPECTED_VALUE
public static SiteSecurityLevel[] values()
for (SiteSecurityLevel c : SiteSecurityLevel.values()) System.out.println(c);
public static SiteSecurityLevel 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