public enum ErrorCode extends Enum<ErrorCode>
| Enum Constant and Description |
|---|
GENERIC |
ORDER_FAILED |
ORDER_NOT_FOUND |
RESPONSE_PARSE_FAILED |
TRADE_FAILED |
UNKNOW_MARKET |
UNKNOWN_ADDRESS |
WITHDRAW_FAILED |
| Modifier and Type | Method and Description |
|---|---|
static ErrorCode |
valueOf(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 GENERIC
public static final ErrorCode RESPONSE_PARSE_FAILED
public static final ErrorCode UNKNOW_MARKET
public static final ErrorCode UNKNOWN_ADDRESS
public static final ErrorCode ORDER_FAILED
public static final ErrorCode ORDER_NOT_FOUND
public static final ErrorCode TRADE_FAILED
public static final ErrorCode WITHDRAW_FAILED
public static ErrorCode[] values()
for (ErrorCode c : ErrorCode.values()) System.out.println(c);
public static ErrorCode 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 © 2019. All rights reserved.