public enum LineItemCreativeAssociationStatus extends Enum<LineItemCreativeAssociationStatus>
Java class for LineItemCreativeAssociation.Status.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="LineItemCreativeAssociation.Status">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="ACTIVE"/>
<enumeration value="NOT_SERVING"/>
<enumeration value="INACTIVE"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ACTIVE
The association is active and the associated
Creative can be
served. |
INACTIVE
The association is inactive and the associated
Creative is
ineligible for being served. |
NOT_SERVING
The association is active but the associated
Creative may not be
served, because its size is not targeted by the line item. |
UNKNOWN
The value returned if the actual value is not exposed by the requested API
version.
|
| Modifier and Type | Method and Description |
|---|---|
static LineItemCreativeAssociationStatus |
fromValue(String v) |
String |
value() |
static LineItemCreativeAssociationStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LineItemCreativeAssociationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineItemCreativeAssociationStatus ACTIVE
Creative can be
served.public static final LineItemCreativeAssociationStatus NOT_SERVING
Creative may not be
served, because its size is not targeted by the line item.public static final LineItemCreativeAssociationStatus INACTIVE
Creative is
ineligible for being served.public static final LineItemCreativeAssociationStatus UNKNOWN
public static LineItemCreativeAssociationStatus[] values()
for (LineItemCreativeAssociationStatus c : LineItemCreativeAssociationStatus.values()) System.out.println(c);
public static LineItemCreativeAssociationStatus 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 LineItemCreativeAssociationStatus fromValue(String v)
Copyright © 2018. All Rights Reserved.