public enum RuntimeErrors extends Enum<RuntimeErrors>
Modifier and Type | Method and Description |
---|---|
String |
getErrorCode() |
String |
getErrorMsgKey() |
void |
setErrorCode(String errorCode) |
void |
setErrorMsgKey(String errorMsgKey) |
static RuntimeErrors |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RuntimeErrors[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RuntimeErrors CASTING_ANY_TYPE_TO_WRONG_VALUE_TYPE
public static final RuntimeErrors CASTING_ANY_TYPE_WITHOUT_INIT
public static final RuntimeErrors INDEX_NUMBER_TOO_LARGE
public static final RuntimeErrors ARRAY_INDEX_OUT_OF_RANGE
public static final RuntimeErrors INCOMPATIBLE_TYPE_FOR_CASTING
public static final RuntimeErrors CASTING_WITHOUT_REQUIRED_FIELD
public static final RuntimeErrors CASTING_FAILED_WITH_CAUSE
public static final RuntimeErrors MISSING_FIELD_IN_JSON
public static final RuntimeErrors CANNOT_SET_VALUE_INCOMPATIBLE_TYPES
public static final RuntimeErrors CANNOT_GET_VALUE_INCOMPATIBLE_TYPES
public static final RuntimeErrors INCOMPATIBLE_FIELD_TYPE_FOR_CASTING
public static final RuntimeErrors INCOMPATIBLE_TYPE_FOR_CASTING_JSON
public static final RuntimeErrors JSON_SET_ERROR
public static final RuntimeErrors JSON_GET_ERROR
public static final RuntimeErrors ARRAY_TYPE_MISMATCH
public static final RuntimeErrors SERVER_CONNECTOR_ALREADY_EXIST
public static final RuntimeErrors INVALID_SERVICE_PROTOCOL
public static final RuntimeErrors CONNECTOR_INPUT_TYPES_NOT_EQUIVALENT
public static final RuntimeErrors UNKNOWN_FIELD_JSON_STURCT
public static final RuntimeErrors INVALID_RETRY_COUNT
public static final RuntimeErrors NOT_ENOUGH_FORMAT_ARGUMENTS
public static final RuntimeErrors INVALID_FORMAT_SPECIFIER
public static final RuntimeErrors INVALID_MAP_INSERTION
public static final RuntimeErrors INVALID_VALUE_LOAD
public static final RuntimeErrors INVALID_TASK_CONFIG
public static final RuntimeErrors TASK_ALREADY_RUNNING
public static final RuntimeErrors TASK_NOT_RUNNING
public static RuntimeErrors[] values()
for (RuntimeErrors c : RuntimeErrors.values()) System.out.println(c);
public static RuntimeErrors 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 nullpublic String getErrorMsgKey()
public void setErrorMsgKey(String errorMsgKey)
public String getErrorCode()
public void setErrorCode(String errorCode)
Copyright © 2018 WSO2. All rights reserved.