|
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<StatType>
umontreal.iro.lecuyer.contactcenters.msk.stat.StatType
public enum StatType
Represents a type of statistic used by StatCallCenterStat
.
Enum Constant Summary | |
---|---|
AVERAGE
Average. |
|
STANDARDDEVIATION
Standard deviation. |
|
STANDARDDEVIATIONOFAVERAGE
Standard deviation divided by the square root of the number of observations in the inner tally. |
|
VARIANCE
Variance. |
|
VARIANCEOFAVERAGE
Variance divided by the number of observations in the inner tally. |
Method Summary | |
---|---|
static StatType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static StatType[] |
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 StatType AVERAGE
public static final StatType VARIANCE
public static final StatType STANDARDDEVIATION
public static final StatType VARIANCEOFAVERAGE
public static final StatType STANDARDDEVIATIONOFAVERAGE
Method Detail |
---|
public static StatType[] values()
for (StatType c : StatType.values()) System.out.println(c);
public static StatType 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 |