Enum WorklistConstants.DistributionMethod
- java.lang.Object
-
- java.lang.Enum<WorklistConstants.DistributionMethod>
-
- de.aristaflow.adept2.model.globals.WorklistConstants.DistributionMethod
-
- All Implemented Interfaces:
Serializable
,Comparable<WorklistConstants.DistributionMethod>
- Enclosing class:
- WorklistConstants
public static enum WorklistConstants.DistributionMethod extends Enum<WorklistConstants.DistributionMethod>
The method of distributing work items used within the worklist manager.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL
distributes work items to all potential agentsLOAD_BALANCING
distributes work items per load balancingROUND_ROBIN
distributes work items with the round-robin-mechanism
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WorklistConstants.DistributionMethod
valueOf(String name)
Returns the enum constant of this type with the specified name.static WorklistConstants.DistributionMethod[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL
public static final WorklistConstants.DistributionMethod ALL
distributes work items to all potential agents
-
ROUND_ROBIN
public static final WorklistConstants.DistributionMethod ROUND_ROBIN
distributes work items with the round-robin-mechanism
-
LOAD_BALANCING
public static final WorklistConstants.DistributionMethod LOAD_BALANCING
distributes work items per load balancing
-
-
Method Detail
-
values
public static WorklistConstants.DistributionMethod[] 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 (WorklistConstants.DistributionMethod c : WorklistConstants.DistributionMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WorklistConstants.DistributionMethod 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
-
-