Package microsim.statistics
Class Series.Long
java.lang.Object
microsim.statistics.Series
microsim.statistics.Series.Long
- All Implemented Interfaces:
EventListener,ILongArraySource,IUpdatableSource
- Enclosing class:
- Series
-
Nested Class Summary
Nested classes/interfaces inherited from class microsim.statistics.Series
Series.Double, Series.Float, Series.Integer, Series.Long -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected ILongSourceprotected Enum<?>protected microsim.statistics.Series.BufferedLongArrayListFields inherited from class microsim.statistics.Series
timeChecker -
Constructor Summary
ConstructorsConstructorDescriptionCreate a basic statistic probe on a collection of objects.Long(ILongSource source) Create a statistic probe on a collection of ILongSource objects.Long(ILongSource source, Enum<?> valueID) Create a statistic probe on a collection of ILongSource objects. -
Method Summary
Modifier and TypeMethodDescriptiondouble[]long[]Return the currently cached array of long values.cern.colt.list.LongArrayListtoString()voidForce the source to update its currently cached data.Methods inherited from class microsim.statistics.Series
isCheckingTime, onEvent, setCheckingTime
-
Field Details
-
valueList
protected microsim.statistics.Series.BufferedLongArrayList valueList -
target
-
valueID
-
-
Constructor Details
-
Long
Create a statistic probe on a collection of ILongSource objects.- Parameters:
source- The collection containing ILongSource object.valueID- The value identifier defined by source object.
-
Long
Create a statistic probe on a collection of ILongSource objects. It uses the ILongSource variable id.- Parameters:
source- The collection containing ILongSource object.
-
Long
Create a basic statistic probe on a collection of objects.- Parameters:
source- A collection of generic objects.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.
-
-
Method Details
-
getLongArray
public long[] getLongArray()Description copied from interface:ILongArraySourceReturn the currently cached array of long values.- Specified by:
getLongArrayin interfaceILongArraySource- Returns:
- An array of long or a null pointer if the source is empty.
-
getDoubleArray
public double[] getDoubleArray() -
getLongArrayList
public cern.colt.list.LongArrayList getLongArrayList() -
toString
-
updateSource
public void updateSource()Description copied from interface:IUpdatableSourceForce the source to update its currently cached data.- Specified by:
updateSourcein interfaceIUpdatableSource- Specified by:
updateSourcein classSeries
-