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