public enum BudgetBudgetDeliveryMethod extends Enum<BudgetBudgetDeliveryMethod>
Java class for Budget.BudgetDeliveryMethod.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="Budget.BudgetDeliveryMethod">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="STANDARD"/>
<enumeration value="ACCELERATED"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ACCELERATED
The budget server will not throttle serving, and ads will serve as fast as possible.
|
STANDARD
The budget server will throttle serving evenly across the entire time period.
|
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static BudgetBudgetDeliveryMethod |
fromValue(String v) |
String |
value() |
static BudgetBudgetDeliveryMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BudgetBudgetDeliveryMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BudgetBudgetDeliveryMethod STANDARD
public static final BudgetBudgetDeliveryMethod ACCELERATED
public static final BudgetBudgetDeliveryMethod UNKNOWN
public static BudgetBudgetDeliveryMethod[] values()
for (BudgetBudgetDeliveryMethod c : BudgetBudgetDeliveryMethod.values()) System.out.println(c);
public static BudgetBudgetDeliveryMethod 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 BudgetBudgetDeliveryMethod fromValue(String v)
Copyright © 2023. All rights reserved.