| Enum Constant and Description |
|---|
INTERNAL_ERROR
An internal error is detected in the interacting with the
third-party SDK.
|
INVALID_REQUEST
The ad request failed due to an invalid configuration (for example, size
or placement ID not set).
|
NETWORK_ERROR
The ad request failed due to a network error.
|
NO_BIDS
No bids available from demand source
|
| Modifier and Type | Method and Description |
|---|---|
static ErrorCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorCode INVALID_REQUEST
public static final ErrorCode NETWORK_ERROR
public static final ErrorCode INTERNAL_ERROR
public static final ErrorCode NO_BIDS
public static ErrorCode[] values()
for (ErrorCode c : ErrorCode.values()) System.out.println(c);
public static ErrorCode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null