|
ContactCenters V. 0.9.9. |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<EvalOptionType>
umontreal.iro.lecuyer.contactcenters.app.EvalOptionType
public enum EvalOptionType
Represents an evaluation option type for
a contact center evaluation system.
An evaluation option is an external parameter that can be changed
from evaluations to evaluations. In particular, it can
be a decision variable or a simulation stopping condition.
An object of this class must be passed as a key
to ContactCenterEval.setEvalOption(umontreal.iro.lecuyer.contactcenters.app.EvalOptionType, java.lang.Object)
to select
which evaluation option to modify.
Enum Constant Summary | |
---|---|
CURRENTPERIOD
This integer can be used to set the current period for a multi-period model evaluated in a single period, as if this period length was infinite. |
|
QUEUECAPACITY
Corresponds to an integer giving the maximal capacity of the waiting queue. |
|
SCHEDULEDAGENTS
Corresponds to a 2D array of integers giving the number of agents in each shift for each agent group. |
|
SIMSTOPPINGCONDITION
Can be used to define an additionnal stopping condition for a simulation. |
|
STAFFINGMATRIX
Corresponds to a 2D array of integers giving the number of agents in each group and main period. |
|
STAFFINGVECTOR
Corresponds to an array of integers giving the number of agents in each group and main period. |
Method Summary | |
---|---|
String |
getName()
Returns the name of this evaluation option. |
Class<?> |
getType()
Returns the class of the objects representing values for this option. |
String |
toString()
|
static EvalOptionType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static EvalOptionType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final EvalOptionType STAFFINGVECTOR
public static final EvalOptionType STAFFINGMATRIX
public static final EvalOptionType SCHEDULEDAGENTS
public static final EvalOptionType QUEUECAPACITY
Integer.MAX_VALUE
.
public static final EvalOptionType SIMSTOPPINGCONDITION
SimStoppingCondition
object.
public static final EvalOptionType CURRENTPERIOD
Method Detail |
---|
public static EvalOptionType[] values()
for (EvalOptionType c : EvalOptionType.values()) System.out.println(c);
public static EvalOptionType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String getName()
public Class<?> getType()
public String toString()
toString
in class Enum<EvalOptionType>
|
ContactCenters V. 0.9.9. |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |