public enum OriginForwardingType extends Enum<OriginForwardingType>
Java class for OriginForwardingType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="OriginForwardingType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="ORIGIN_PATH"/>
<enumeration value="CONVENTIONAL"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CONVENTIONAL
Indicates that conventional origin forwarding is used.
|
ORIGIN_PATH
Indicates that origin forwarding is set up by passing an originpath query
string parameter (necessary for Akamai dynamic packaging to work)
|
UNKNOWN
The value returned if the actual value is not exposed by the requested API
version.
|
| Modifier and Type | Method and Description |
|---|---|
static OriginForwardingType |
fromValue(String v) |
String |
value() |
static OriginForwardingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OriginForwardingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OriginForwardingType ORIGIN_PATH
public static final OriginForwardingType CONVENTIONAL
public static final OriginForwardingType UNKNOWN
public static OriginForwardingType[] values()
for (OriginForwardingType c : OriginForwardingType.values()) System.out.println(c);
public static OriginForwardingType 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 OriginForwardingType fromValue(String v)
Copyright © 2018. All Rights Reserved.