public enum SecurityPolicyType extends Enum<SecurityPolicyType>
Java class for SecurityPolicyType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="SecurityPolicyType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="UNKNOWN"/>
<enumeration value="NONE"/>
<enumeration value="AKAMAI"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
AKAMAI
Security policy for accessing content on the Akamai CDN.
|
NONE
Indicates that no authentication is necessary.
|
UNKNOWN
The value returned if the actual value is not exposed by the requested API version.
|
| Modifier and Type | Method and Description |
|---|---|
static SecurityPolicyType |
fromValue(String v) |
String |
value() |
static SecurityPolicyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SecurityPolicyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecurityPolicyType UNKNOWN
public static final SecurityPolicyType NONE
public static final SecurityPolicyType AKAMAI
public static SecurityPolicyType[] values()
for (SecurityPolicyType c : SecurityPolicyType.values()) System.out.println(c);
public static SecurityPolicyType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static SecurityPolicyType fromValue(String v)
Copyright © 2018. All Rights Reserved.