public enum StatusCode extends Enum<StatusCode>
Modifier and Type | Method and Description |
---|---|
static StatusCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatusCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatusCode API_DISABLED
public static final StatusCode CANNOT_DELETE
public static final StatusCode CREDIT_CARD_PROCESSING_FAILURE
public static final StatusCode DUPLICATE_VALUE
public static final StatusCode INVALID_FIELD
public static final StatusCode INVALID_ID
public static final StatusCode INVALID_LOGIN
public static final StatusCode INVALID_SESSION
public static final StatusCode INVALID_TYPE
public static final StatusCode INVALID_VALUE
public static final StatusCode INVALID_VERSION
public static final StatusCode LOCK_COMPETITION
public static final StatusCode MALFORMED_QUERY
public static final StatusCode MAX_RECORDS_EXCEEDED
public static final StatusCode MISSING_REQUIRED_VALUE
public static final StatusCode REQUEST_EXCEEDED_LIMIT
public static final StatusCode REQUEST_EXCEEDED_RATE
public static final StatusCode SERVER_UNAVAILABLE
public static final StatusCode TEMPORARY_ERROR
public static final StatusCode TRANSACTION_FAILED
public static final StatusCode TRANSACTION_TERMINATED
public static final StatusCode TRANSACTION_TIMEOUT
public static final StatusCode UNKNOWN_ERROR
public static StatusCode[] values()
for (StatusCode c : StatusCode.values()) System.out.println(c);
public static StatusCode 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 nullCopyright © 2010–2016. All rights reserved.