Enum Class RoutingWorkItemState
- All Implemented Interfaces:
Serializable
,Comparable<RoutingWorkItemState>
,Constable
Represents all types of states of a
RoutingWorkItem
within the remote routing system.- Since:
- 11.29
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe routing decision for theRoutingWorkItem
is done.The life cycle of theRoutingWorkItem
has ended.TheRoutingWorkItem
is queued and waiting for distribution. -
Method Summary
Modifier and TypeMethodDescriptionstatic RoutingWorkItemState
Returns the enum constant of this class with the specified name.static RoutingWorkItemState[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
QUEUED
TheRoutingWorkItem
is queued and waiting for distribution.- Since:
- 11.29
-
ASSIGNED
The routing decision for theRoutingWorkItem
is done. The item has been assigned to an agent.- Since:
- 11.29
-
FINISHED
The life cycle of theRoutingWorkItem
has ended. The item is going to be removed from the queue.- Since:
- 11.29
-
-
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
-