public enum ErrorCode extends Enum<ErrorCode>
| Enum Constant and Description |
|---|
FLAG_NOT_FOUND |
GENERAL |
INVALID_CONTEXT |
PARSE_ERROR |
PROVIDER_NOT_READY |
TARGETING_KEY_MISSING |
TYPE_MISMATCH |
| 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 PROVIDER_NOT_READY
public static final ErrorCode FLAG_NOT_FOUND
public static final ErrorCode PARSE_ERROR
public static final ErrorCode TYPE_MISMATCH
public static final ErrorCode TARGETING_KEY_MISSING
public static final ErrorCode INVALID_CONTEXT
public static final ErrorCode GENERAL
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 © 2023. All rights reserved.