1 | public interface IntervalCategoryDataset extends CategoryDataset {↵ | | 1 | public interface StatisticalCategoryDataset extends CategoryDataset {↵
|
|
2 | /**↵ | | 2 | /**↵
|
3 | * Returns the start value for the interval for a given series and category.↵ | | 3 | * Returns the mean value for an item.↵
|
4 | *↵ | | 4 | *↵
|
5 | * @param series the series (zero-based index).↵ | | 5 | * @param row the row index (zero-based).↵
|
6 | * @param category the category (zero-based index).↵ | | 6 | * @param column the column index (zero-based).↵
|
7 | *↵ | | 7 | *↵
|
8 | * @return The start value (possibly null ).↵ | | 8 | * @return The mean value↵
|
9 | *↵ | | |
|
10 | * @see #getEndValue(int, int)↵ | | 9 | .↵
|
11 | */↵ | | 10 | */↵
|
12 | public Number getStartValue(int series, int category);↵ | | 11 | public Number getMeanValue(int row, int column);↵
|
|
13 | /**↵ | | 12 | /**↵
|
14 | * Returns the start value for the interval for a given series and category.↵ | | 13 | * Returns the mean value for an item.↵
|
15 | *↵ | | 14 | *↵
|
16 | * @param series the series key.↵ | | 15 | * @param rowKey the row key.↵
|
17 | * @param category the category key.↵ | | 16 | * @param columnKey the columnKey.↵
|
18 | *↵ | | 17 | *↵
|
19 | * @return The start value (possibly null ).↵ | | 18 | * @return The mean value↵
|
20 | *↵ | | |
|
21 | * @see #getEndValue(Comparable, Comparable)↵ | | 19 | .↵
|
22 | */↵ | | 20 | */↵
|
23 | public Number getStartValue(Comparable series, Comparable category);↵ | | 21 | public Number getMeanValue(Comparable rowKey, Comparable columnKey);↵
|
|
24 | /**↵ | | 22 | /**↵
|
25 | * Returns the end value for the interval for a given series and category.↵ | | 23 | * Returns the standard deviation value for an item.↵
|
26 | *↵ | | 24 | *↵
|
27 | * @param series the series (zero-based index).↵ | | 25 | * @param row the row index (zero-based).↵
|
28 | * @param category the category (zero-based index).↵ | | 26 | * @param column the column index (zero-based).↵
|
29 | *↵ | | 27 | *↵
|
30 | * @return The end value (possibly null ).↵ | | 28 | * @return The ↵
|
31 | *↵ | | |
|
32 | * @see #getStartValue(int, int)↵ | | 29 | standard deviation.↵
|
33 | */↵ | | 30 | */↵
|
34 | public Number getEndValue(int series, int category);↵ | | 31 | public Number getStdDevValue(int row, int column);↵
|
|
35 | /**↵ | | 32 | /**↵
|
36 | * Returns the end value for the interval for a given series and category.↵ | | 33 | * Returns the standard deviation value for an item.↵
|
37 | *↵ | | 34 | *↵
|
38 | * @param series the series key.↵ | | 35 | * @param rowKey the row key.↵
|
39 | * @param category the category key.↵ | | 36 | * @param columnKey the columnKey.↵
|
40 | *↵ | | 37 | *↵
|
41 | * @return The end value (possibly null ).↵ | | 38 | * @return The ↵
|
42 | *↵ | | |
|
43 | * @see #getStartValue(Comparable, Comparable)↵ | | 39 | standard deviation.↵
|
44 | */↵ | | 40 | */↵
|
45 | public Number getEndValue(Comparable series, Comparable category); | | 41 | public Number getStdDevValue(Comparable rowKey, Comparable columnKey);
|