Package microsim.statistics.functions
Class MultiTraceFunction.Integer
java.lang.Object
microsim.statistics.functions.MultiTraceFunction
microsim.statistics.functions.MultiTraceFunction.Integer
- All Implemented Interfaces:
EventListener
,DoubleSource
,IntSource
,UpdatableSource
- Enclosing class:
MultiTraceFunction
An implementation of the Memoryless Series class, which manages integer type data sources.
-
Nested Class Summary
Nested classes/interfaces inherited from class microsim.statistics.functions.MultiTraceFunction
MultiTraceFunction.Double, MultiTraceFunction.Integer, MultiTraceFunction.Long, MultiTraceFunction.Variables
Nested classes/interfaces inherited from interface microsim.statistics.IntSource
IntSource.Variables
-
Field Summary
Modifier and TypeFieldDescriptionprotected int
protected int
protected int
protected long
protected IntSource
Fields inherited from class microsim.statistics.functions.MultiTraceFunction
count
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiondouble
getDoubleValue
(@NonNull Enum<?> valueID) Returns the result of a given statistic.int
getIntValue
(@NonNull Enum<?> valueID) Returns the result of a given statistic.double
getMean()
The mean function.double
The variance function.void
Reads the source values and update statistics.Methods inherited from class microsim.statistics.functions.MultiTraceFunction
getCount, onEvent
-
Field Details
-
max
protected int max -
min
protected int min -
sum
protected int sum -
sumSquare
protected long sumSquare -
target
-
-
Constructor Details
-
Integer
Creates a basic statistic probe on aDoubleSource
object.- Parameters:
source
- TheDoubleSource
object.valueID
- The value identifier defined by source object.- Throws:
NullPointerException
- when any of the input parameters isnull
.
-
Integer
public Integer(@NonNull @NonNull Object source, @NonNull @NonNull String valueName, boolean getFromMethod) Creates a basic statistic probe on a generic object.- Parameters:
source
- A generic source object.valueName
- The name of the field or the method returning the variable to be probed.getFromMethod
- Specifies if valueName is a method or a property value.- Throws:
NullPointerException
- when any of the input parameters isnull
.
-
-
Method Details
-
updateSource
public void updateSource()Reads the source values and update statistics.- Specified by:
updateSource
in interfaceUpdatableSource
- Overrides:
updateSource
in classMultiTraceFunction
-
getDoubleValue
Returns the result of a given statistic.- Specified by:
getDoubleValue
in interfaceDoubleSource
- Overrides:
getDoubleValue
in classMultiTraceFunction
- Parameters:
valueID
- One of theMultiTraceFunction.Variables
constants representing available statistics.- Returns:
- The computed value.
- Throws:
NullPointerException
- whenvalueID
isnull
.
-
getIntValue
Returns the result of a given statistic.- Specified by:
getIntValue
in interfaceIntSource
- Parameters:
valueID
- One of theMultiTraceFunction.Variables
constants representing available statistics.- Returns:
- The computed value.
- Throws:
UnsupportedOperationException
- If the givenvalueID
is not supported.NullPointerException
- whenvalueID
isnull
.
-
getVariance
public double getVariance()The variance function.- Specified by:
getVariance
in classMultiTraceFunction
- Returns:
- The variance value.
-
getMean
public double getMean()The mean function.- Specified by:
getMean
in classMultiTraceFunction
- Returns:
- The mean value.
-