public enum DeliveryRateType extends Enum<DeliveryRateType>
Java class for DeliveryRateType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="DeliveryRateType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="EVENLY"/>
<enumeration value="FRONTLOADED"/>
<enumeration value="AS_FAST_AS_POSSIBLE"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
AS_FAST_AS_POSSIBLE
The booked impressions for a line item may be delivered well before the
LineItemSummary.endDateTime. |
EVENLY
Line items are served as evenly as possible across the number of
days specified in a line item's
LineItem#duration. |
FRONTLOADED
Line items are served more aggressively in the beginning of the flight
date.
|
| Modifier and Type | Method and Description |
|---|---|
static DeliveryRateType |
fromValue(String v) |
String |
value() |
static DeliveryRateType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeliveryRateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeliveryRateType EVENLY
LineItem#duration.public static final DeliveryRateType FRONTLOADED
public static final DeliveryRateType AS_FAST_AS_POSSIBLE
LineItemSummary.endDateTime. Other lower-priority or lower-value line
items will be stopped from delivering until this line item meets the number
of impressions or clicks it is booked for.public static DeliveryRateType[] values()
for (DeliveryRateType c : DeliveryRateType.values()) System.out.println(c);
public static DeliveryRateType 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 DeliveryRateType fromValue(String v)
Copyright © 2018. All Rights Reserved.