Package microsim.statistics.functions
Enum Class MultiTraceFunction.Variables
java.lang.Object
java.lang.Enum<MultiTraceFunction.Variables>
microsim.statistics.functions.MultiTraceFunction.Variables
- All Implemented Interfaces:
Serializable
,Comparable<MultiTraceFunction.Variables>
,Constable
- Enclosing class:
MultiTraceFunction
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionReturn the number of collected values.Return the last collected value.Return the maximum collected value.Return the mean of the collected values.Return the minimum collected value.Return the sum of collected values.Return the variance of the collected values. -
Method Summary
Modifier and TypeMethodDescriptionstatic MultiTraceFunction.Variables
Returns the enum constant of this class with the specified name.static MultiTraceFunction.Variables[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LAST_VALUE
Return the last collected value. -
MIN
Return the minimum collected value. -
MAX
Return the maximum collected value. -
MEAN
Return the mean of the collected values. -
VARIANCE
Return the variance of the collected values. -
COUNT
Return the number of collected values. -
SUM
Return the sum of collected values.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-