public enum CdnConfigurationErrorReason extends Enum<CdnConfigurationErrorReason>
Java class for CdnConfigurationError.Reason.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CdnConfigurationError.Reason">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="URL_SHOULD_NOT_CONTAIN_SCHEME"/>
<enumeration value="INVALID_DELIVERY_LOCATION_NAMES"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
INVALID_DELIVERY_LOCATION_NAMES
Invalid delivery setting name.
|
UNKNOWN
The value returned if the actual value is not exposed by the requested API version.
|
URL_SHOULD_NOT_CONTAIN_SCHEME
URL prefixes should not contain schemes.
|
| Modifier and Type | Method and Description |
|---|---|
static CdnConfigurationErrorReason |
fromValue(String v) |
String |
value() |
static CdnConfigurationErrorReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CdnConfigurationErrorReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CdnConfigurationErrorReason URL_SHOULD_NOT_CONTAIN_SCHEME
public static final CdnConfigurationErrorReason INVALID_DELIVERY_LOCATION_NAMES
public static final CdnConfigurationErrorReason UNKNOWN
public static CdnConfigurationErrorReason[] values()
for (CdnConfigurationErrorReason c : CdnConfigurationErrorReason.values()) System.out.println(c);
public static CdnConfigurationErrorReason 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 CdnConfigurationErrorReason fromValue(String v)
Copyright © 2018. All Rights Reserved.