public enum CriteoErrorCode extends java.lang.Enum<CriteoErrorCode>
| Enum Constant and Description |
|---|
ERROR_CODE_INTERNAL_ERROR |
ERROR_CODE_INVALID_REQUEST |
ERROR_CODE_NETWORK_ERROR |
ERROR_CODE_NO_FILL |
| Modifier and Type | Method and Description |
|---|---|
static CriteoErrorCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CriteoErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CriteoErrorCode ERROR_CODE_NO_FILL
public static final CriteoErrorCode ERROR_CODE_NETWORK_ERROR
public static final CriteoErrorCode ERROR_CODE_INVALID_REQUEST
public static final CriteoErrorCode ERROR_CODE_INTERNAL_ERROR
public static CriteoErrorCode[] values()
for (CriteoErrorCode c : CriteoErrorCode.values()) System.out.println(c);
public static CriteoErrorCode 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