public static enum WorklistConstants.DistributionMethod extends java.lang.Enum<WorklistConstants.DistributionMethod>
| Enum Constant and Description |
|---|
ALL
distributes work items to all potential agents
|
LOAD_BALANCING
distributes work items per load balancing
|
ROUND_ROBIN
distributes work items with the round-robin-mechanism
|
| Modifier and Type | Method and Description |
|---|---|
static WorklistConstants.DistributionMethod |
valueOf(java.lang.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.
|
public static final WorklistConstants.DistributionMethod ALL
public static final WorklistConstants.DistributionMethod ROUND_ROBIN
public static final WorklistConstants.DistributionMethod LOAD_BALANCING
public static WorklistConstants.DistributionMethod[] values()
for (WorklistConstants.DistributionMethod c : WorklistConstants.DistributionMethod.values()) System.out.println(c);
public static WorklistConstants.DistributionMethod valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null