public enum ComputedStatus extends Enum<ComputedStatus>
Java class for ComputedStatus.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ComputedStatus">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="DELIVERY_EXTENDED"/>
<enumeration value="DELIVERING"/>
<enumeration value="READY"/>
<enumeration value="PAUSED"/>
<enumeration value="INACTIVE"/>
<enumeration value="PAUSED_INVENTORY_RELEASED"/>
<enumeration value="PENDING_APPROVAL"/>
<enumeration value="COMPLETED"/>
<enumeration value="DISAPPROVED"/>
<enumeration value="DRAFT"/>
<enumeration value="CANCELED"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CANCELED
The
LineItem has been canceled and is no longer eligible to serve. |
COMPLETED
The
LineItem has completed its run. |
DELIVERING
The
LineItem has begun serving. |
DELIVERY_EXTENDED
The
LineItem has past its LineItemSummary.endDateTime with an auto extension, but
hasn't met its goal. |
DISAPPROVED
The
LineItem has been disapproved and is not eligible to serve. |
DRAFT
The
LineItem is still being drafted. |
INACTIVE
The
LineItem is inactive. |
PAUSED
The
LineItem has been paused from serving. |
PAUSED_INVENTORY_RELEASED
The
LineItem has been paused and its reserved inventory has been
released. |
PENDING_APPROVAL
The
LineItem has been submitted for approval. |
READY
The
LineItem has been activated and is ready to serve. |
| Modifier and Type | Method and Description |
|---|---|
static ComputedStatus |
fromValue(String v) |
String |
value() |
static ComputedStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComputedStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComputedStatus DELIVERY_EXTENDED
LineItem has past its LineItemSummary.endDateTime with an auto extension, but
hasn't met its goal.public static final ComputedStatus DELIVERING
LineItem has begun serving.public static final ComputedStatus READY
LineItem has been activated and is ready to serve.public static final ComputedStatus PAUSED
LineItem has been paused from serving.public static final ComputedStatus INACTIVE
LineItem is inactive. It is either caused by missing creatives or
the network disabling auto-activation.public static final ComputedStatus PAUSED_INVENTORY_RELEASED
LineItem has been paused and its reserved inventory has been
released. The LineItem will not serve.public static final ComputedStatus PENDING_APPROVAL
LineItem has been submitted for approval.public static final ComputedStatus COMPLETED
LineItem has completed its run.public static final ComputedStatus DISAPPROVED
LineItem has been disapproved and is not eligible to serve.public static final ComputedStatus DRAFT
LineItem is still being drafted.public static final ComputedStatus CANCELED
LineItem has been canceled and is no longer eligible to serve.
This is a legacy status imported from Google Ad Manager orders.public static ComputedStatus[] values()
for (ComputedStatus c : ComputedStatus.values()) System.out.println(c);
public static ComputedStatus 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 ComputedStatus fromValue(String v)
Copyright © 2018. All Rights Reserved.