Uses of Interface
repast.simphony.data2.AggregateDataSource
Packages that use AggregateDataSource
Package
Description
-
Uses of AggregateDataSource in repast.simphony.data2
Classes in repast.simphony.data2 that implement AggregateDataSourceModifier 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.Methods in repast.simphony.data2 that return AggregateDataSourceModifier 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.Constructor parameters in repast.simphony.data2 with type arguments of type AggregateDataSourceModifierConstructorDescriptionAggregateDataSet
(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
Methods in repast.simphony.data2.builder with parameters of type AggregateDataSourceModifier and TypeMethodDescriptionvoid
AggregateDataSetBuilder.addDataSource
(AggregateDataSource dataSource) Adds the specified data source to this builder. -
Uses of AggregateDataSource in repast.simphony.data2.engine
Classes in repast.simphony.data2.engine that implement AggregateDataSourceModifier and TypeClassDescriptionclass
An AggregateDataSource implementation that delegates to a wrapped AggregateDataSource for all calls except getting the id.Constructors in repast.simphony.data2.engine with parameters of type AggregateDataSourceModifierConstructorDescriptionAggregateDataSourceWrapper
(String id, AggregateDataSource dataSource)