Enum Class FinishQueuedCallRequest.FinishCause
java.lang.Object
java.lang.Enum<FinishQueuedCallRequest.FinishCause>
com.novomind.ecom.api.iagent.request.FinishQueuedCallRequest.FinishCause
- All Implemented Interfaces:
Serializable
,Comparable<FinishQueuedCallRequest.FinishCause>
,Constable
- Enclosing interface:
FinishQueuedCallRequest
public static enum FinishQueuedCallRequest.FinishCause
extends Enum<FinishQueuedCallRequest.FinishCause>
Represents all available types of available finish causes.
- Since:
- 11.27
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe call is finished due to a lack of resources (lines, agents, etc.)The call is finished abnormally due to an errorThe call is finished normally e.g. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static FinishQueuedCallRequest.FinishCause[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NORMAL_CLEARING
The call is finished normally e.g. by a supervisor- Since:
- 11.27
-
BUSY
The call is finished due to a lack of resources (lines, agents, etc.)- Since:
- 11.27
-
FAILED
The call is finished abnormally due to an error- Since:
- 11.27
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-