Enum CaseEngineErrorCode
- java.lang.Object
-
- java.lang.Enum<CaseEngineErrorCode>
-
- com.aquima.interactions.caseengine.client.model.CaseEngineErrorCode
-
- All Implemented Interfaces:
Serializable
,Comparable<CaseEngineErrorCode>
public enum CaseEngineErrorCode extends Enum<CaseEngineErrorCode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCESS_DENIED
CASE_LOCKED
CASE_NOT_FOUND
CONVERSION_ERROR
INVALID_MESSAGE_EVENT
INVALID_SPECIFIC_CASE
OTHER
TASK_LOCKED
TASK_NOT_FOUND
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CaseEngineErrorCode
valueOf(String name)
Returns the enum constant of this type with the specified name.static CaseEngineErrorCode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CASE_LOCKED
public static final CaseEngineErrorCode CASE_LOCKED
-
TASK_LOCKED
public static final CaseEngineErrorCode TASK_LOCKED
-
ACCESS_DENIED
public static final CaseEngineErrorCode ACCESS_DENIED
-
CONVERSION_ERROR
public static final CaseEngineErrorCode CONVERSION_ERROR
-
INVALID_MESSAGE_EVENT
public static final CaseEngineErrorCode INVALID_MESSAGE_EVENT
-
INVALID_SPECIFIC_CASE
public static final CaseEngineErrorCode INVALID_SPECIFIC_CASE
-
CASE_NOT_FOUND
public static final CaseEngineErrorCode CASE_NOT_FOUND
-
TASK_NOT_FOUND
public static final CaseEngineErrorCode TASK_NOT_FOUND
-
OTHER
public static final CaseEngineErrorCode OTHER
-
-
Method Detail
-
values
public static CaseEngineErrorCode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CaseEngineErrorCode c : CaseEngineErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CaseEngineErrorCode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-