public enum UBError extends java.lang.Enum<UBError>
UBBidRequestError response| Enum Constant and Description |
|---|
CACHE_LIMIT_REACHED |
INTERNAL_ERROR |
INVALID_REQUEST |
MISSING_DEPENDENCY |
NETWORK_ERROR |
NOT_INITIALISED |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static UBError |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UBError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UBError NOT_INITIALISED
public static final UBError INVALID_REQUEST
public static final UBError MISSING_DEPENDENCY
public static final UBError NETWORK_ERROR
public static final UBError INTERNAL_ERROR
public static final UBError CACHE_LIMIT_REACHED
public static UBError[] values()
for (UBError c : UBError.values()) System.out.println(c);
public static UBError 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<UBError>