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 SummaryEnum Constants Enum Constant Description ALLdistributes work items to all potential agentsLOAD_BALANCINGdistributes work items per load balancingROUND_ROBINdistributes work items with the round-robin-mechanism
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static WorklistConstants.DistributionMethodvalueOf(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- 
ALLpublic static final WorklistConstants.DistributionMethod ALL distributes work items to all potential agents
 - 
ROUND_ROBINpublic static final WorklistConstants.DistributionMethod ROUND_ROBIN distributes work items with the round-robin-mechanism
 - 
LOAD_BALANCINGpublic static final WorklistConstants.DistributionMethod LOAD_BALANCING distributes work items per load balancing
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 
- 
 
-