public static enum Enum.LoadingStatus extends java.lang.Enum<Enum.LoadingStatus>
| Enum Constant and Description |
|---|
LOAD_WITH_ERROR
An error occurred during the loading period.
|
LOAD_WITHOUT_CAMPAIGN
There is no campaign available at the moment.
|
LOAD_WITHOUT_ERROR
Ad loaded successfully.
|
| Modifier and Type | Method and Description |
|---|---|
static Enum.LoadingStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Enum.LoadingStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Enum.LoadingStatus LOAD_WITHOUT_ERROR
public static final Enum.LoadingStatus LOAD_WITH_ERROR
public static final Enum.LoadingStatus LOAD_WITHOUT_CAMPAIGN
public static Enum.LoadingStatus[] values()
for (Enum.LoadingStatus c : Enum.LoadingStatus.values()) System.out.println(c);
public static Enum.LoadingStatus 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