Uses of Interface
bcds.tools.stat.Collector

Packages that use Collector
bcds.phison.sim This package comprises the simulator and several processing modules. 
bcds.tools.stat Classes in this package are used for defining variables of which certain statistical properties are of interest, for example the arithmetic mean and the standard deviation of a sample. 
 

Uses of Collector in bcds.phison.sim
 

Methods in bcds.phison.sim with type parameters of type Collector
<T extends Collector>
boolean
SimStatsCollector.add(T var, java.lang.String grp_name, java.lang.Class<T> grp_class)
          Adds a new collector and associates it to a group.
 

Methods in bcds.phison.sim that return Collector
 Collector SimStatsCollector.get(java.lang.String var_name)
          Returns the collector object with the given name, or null if such collector is not registered.
 

Methods in bcds.phison.sim that return types with arguments of type Collector
 java.util.Set<Collector> SimStatsCollector.getGroupMembers(java.lang.String grp_name)
          Returns a set containing the collectors of a given group.
 

Methods in bcds.phison.sim with parameters of type Collector
 boolean SimStatsCollector.add(Collector var)
          Adds the collector var to the default group, where membership does not require being an instance of a specific class.
 

Method parameters in bcds.phison.sim with type arguments of type Collector
 boolean SimStatsCollector.addGroup(java.lang.String grp_name, java.lang.Class<? extends Collector> grp_class)
          Registers a new group and declares that its members should have the class grp_class to be admitted.
 

Uses of Collector in bcds.tools.stat
 

Classes in bcds.tools.stat that implement Collector
 class Average
          Implements a collector that produces the following: a) arithmetic mean; b) standard deviation; c) number of observations; d) minimum value; e) maximum value.
 class CollectorBase
          Provides default implementation for classes implementing the Collector interface, as well as utility functions.
 class Series
          Implements a collector whose items correspond to a series, for example, a temporal series.
 class SimpleAvg
          Implements a collector that produces as result the arithmetic mean of its observations.
 

Method parameters in bcds.tools.stat with type arguments of type Collector
static java.lang.String CollectorBase.report(java.util.Collection<? extends Collector> collectors)
          Returns a string, one line per collector, resulting from calling the report method on each object in the given collection.
static java.lang.String CollectorBase.report(java.lang.String collector_label, java.util.Collection<? extends Collector> collectors)
          Formats the results of a series of collectors belonging to the same class, one line per collector, and as many columns as results are provided by the class.