Uses of Interface
repast.simphony.data2.AggregateDataSource
Package
Description
-
Uses of AggregateDataSource in repast.simphony.data2
Modifier and TypeClassDescriptionclass
DataSource that returns the current batch run number.class
AggregateDataSource that returns the count of a particular type of object.class
DataSource that will return the current value of a parameter.class
DataSource that returns the current random seed.class
DataSource that returns the current tick count.Modifier and TypeMethodDescriptionAggregateDSCreator.createCountSource
(String id) Convenience method for creating a count data source that will return all the objects of a particular type.AggregateDSCreator.createDataSource
(String id, AggregateOp type) Creates an AggregateDataSource of the specified type with the specified id.AggregateDSCreator.createGeoMeanSource
(String id) Creates an aggregate data source that will get the geometric mean of the collection of objects passed into it.AggregateDSCreator.createMaxSource
(String id) Creates an aggregate data source that will get the max of the collection of objects passed into it.AggregateDSCreator.createMeanSource
(String id) Creates an aggregate data source that will get the mean of the collection of objects passed into it.AggregateDSCreator.createMinSource
(String id) Creates an aggregate data source that will get the min of the collection of objects passed into it.AggregateDSCreator.createSecondMomentSource
(String id) Creates an aggregate data source that will get the second moment of the collection of objects passed into it.AggregateDSCreator.createStdDevSource
(String id) Creates an aggregate data source that will get the standard deviation of the collection of objects passed into it.AggregateDSCreator.createSumLogsSource
(String id) Creates an aggregate data source that will get the sum of the logs of the collection of objects passed into it.AggregateDSCreator.createSumSource
(String id) Creates an aggregate data source that will sum across the collection of objects passed into it.AggregateDSCreator.createSumSquaresSource
(String id) Creates an aggregate data source that will get the sum of the squares of the collection of objects passed into it.AggregateDSCreator.createVarianceSource
(String id) Creates an aggregate data source that will get the variance of the collection of objects passed into it.ModifierConstructorDescriptionAggregateDataSet
(String id, Collection<AggregateDataSource> sources, Collection<? extends DataSink> sinks) Creates an AggregateDataSet with the specified sources and sinks. -
Uses of AggregateDataSource in repast.simphony.data2.builder
Modifier and TypeMethodDescriptionvoid
AggregateDataSetBuilder.addDataSource
(AggregateDataSource dataSource) Adds the specified data source to this builder. -
Uses of AggregateDataSource in repast.simphony.data2.engine
Modifier and TypeClassDescriptionclass
An AggregateDataSource implementation that delegates to a wrapped AggregateDataSource for all calls except getting the id.ModifierConstructorDescriptionAggregateDataSourceWrapper
(String id, AggregateDataSource dataSource)