|
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<TransitionType>
umontreal.iro.lecuyer.contactcenters.ctmc.TransitionType
public enum TransitionType
Represents the type of a transition performed by
the CallCenterCTMC.nextState(double)
method.
Enum Constant Summary | |
---|---|
ABANDONMENT
A queued contacts abandons, i.e., leaves the queue without receiving service. |
|
ARRIVALBALKED
Arrival with balking (immediate abandonment). |
|
ARRIVALBLOCKED
Arrival and blocking due to exceeded queue capacity. |
|
ARRIVALQUEUED
Arrival and waiting in queue. |
|
ARRIVALSERVED
Arrival with immediate service. |
|
ENDSERVICEANDDEQUEUE
An agent terminates a service, and receives a new queued contact to serve. |
|
ENDSERVICENODEQUEUE
An agent terminates a service, and remains free because of no available queued contacts. |
|
FALSETRANSITION
Fictious transition not affecting the state of the CTMC. |
Method Summary | |
---|---|
static TransitionType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static TransitionType[] |
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, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final TransitionType ARRIVALSERVED
public static final TransitionType ARRIVALBALKED
public static final TransitionType ARRIVALQUEUED
public static final TransitionType ARRIVALBLOCKED
public static final TransitionType ENDSERVICEANDDEQUEUE
public static final TransitionType ENDSERVICENODEQUEUE
public static final TransitionType ABANDONMENT
public static final TransitionType FALSETRANSITION
Method Detail |
---|
public static TransitionType[] values()
for (TransitionType c : TransitionType.values()) System.out.println(c);
public static TransitionType 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 null
|
ContactCenters V. 0.9.9. |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |