1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 package net.sf.jour.statistic;
22
23 /***
24 * Interface for different types of statistic accumulation.
25 *
26 * Created on 13.12.2004
27 *
28 * Contributing Author(s):
29 *
30 * Misha Lifschitz <mishalifschitz at users.sourceforge.net> (Inital implementation)
31 * Vlad Skarzhevskyy <vlads at users.sourceforge.net> (Inital implementation)
32 *
33 * @author vlads
34 * @version $Revision: 1.3 $ ($Author: vlads $) $Date: 2004/12/15 08:00:39 $
35 */
36 public interface Accumulation {
37
38 public String getName();
39
40 public void add(Object num);
41
42 public void reset();
43
44 public long getCount();
45
46 public double getTotal();
47
48 public double getMin();
49
50 public double getMax();
51
52 public double getMean();
53
54 public double getStandardDeviation();
55
56 public Object getAttribute(String name);
57
58 public void setAttribute(String name, Object value);
59 }