Enum FinishQueuedCallRequest.FinishCause
- java.lang.Object
-
- java.lang.Enum<FinishQueuedCallRequest.FinishCause>
-
- com.novomind.ecom.api.iagent.request.FinishQueuedCallRequest.FinishCause
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FinishQueuedCallRequest.FinishCause>
- Enclosing interface:
- FinishQueuedCallRequest
public static enum FinishQueuedCallRequest.FinishCause extends java.lang.Enum<FinishQueuedCallRequest.FinishCause>
Represents all available types of available finish causes.- Since:
- 11.27
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BUSY
The call is finished due to a lack of resources (lines, agents, etc.)FAILED
The call is finished abnormally due to an errorNORMAL_CLEARING
The call is finished normally e.g.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FinishQueuedCallRequest.FinishCause
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FinishQueuedCallRequest.FinishCause[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NORMAL_CLEARING
public static final FinishQueuedCallRequest.FinishCause NORMAL_CLEARING
The call is finished normally e.g. by a supervisor- Since:
- 11.27
-
BUSY
public static final FinishQueuedCallRequest.FinishCause BUSY
The call is finished due to a lack of resources (lines, agents, etc.)- Since:
- 11.27
-
FAILED
public static final FinishQueuedCallRequest.FinishCause FAILED
The call is finished abnormally due to an error- Since:
- 11.27
-
-
Method Detail
-
values
public static FinishQueuedCallRequest.FinishCause[] 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 (FinishQueuedCallRequest.FinishCause c : FinishQueuedCallRequest.FinishCause.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FinishQueuedCallRequest.FinishCause valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-