public enum DaiIngestStatus extends Enum<DaiIngestStatus>
Java class for DaiIngestStatus.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="DaiIngestStatus">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="SUCCESS"/>
<enumeration value="WARNING"/>
<enumeration value="FAILURE"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
FAILURE
There was a non-fatal issue during the DAI ingestion proccess and the content is not available
for dynamic ad insertion.
|
SUCCESS
The content was successfully ingested for DAI.
|
UNKNOWN
The value returned if the actual value is not exposed by the requested API version.
|
WARNING
There was a non-fatal issue during the DAI ingestion proccess.
|
| Modifier and Type | Method and Description |
|---|---|
static DaiIngestStatus |
fromValue(String v) |
String |
value() |
static DaiIngestStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DaiIngestStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DaiIngestStatus SUCCESS
public static final DaiIngestStatus WARNING
public static final DaiIngestStatus FAILURE
public static final DaiIngestStatus UNKNOWN
public static DaiIngestStatus[] values()
for (DaiIngestStatus c : DaiIngestStatus.values()) System.out.println(c);
public static DaiIngestStatus 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 DaiIngestStatus fromValue(String v)
Copyright © 2018. All Rights Reserved.