|
2.17.2: 2011-06-17 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<HistogramPlot.YAggregate> net.sf.basedb.util.plot.HistogramPlot.YAggregate
public static enum HistogramPlot.YAggregate
Defines what to to plot on the y axis in a histogram plot.
Enum Constant Summary | |
---|---|
COUNT
Plot the number of spots falling into each bin. |
|
HILOMAXMIN
Plot a high/low bar for each bin with the maximum and minimum values. |
|
HILOSTDEV
Plot a high/low bar for each bin with the mean +/- 1 standard deviation. |
|
MAX
Plot the maximum of all y-values for spots falling into each bin. |
|
MEAN
Plot the mean of all y-values for spots falling into each bin. |
|
MIN
Plot the minimum of all y-values for spots falling into each bin. |
|
STDEV
Plot the standard deviation of all y-values for spots falling into each bin. |
|
SUM
Plot the sum of all y-values for spots falling into each bin. |
Method Summary | |
---|---|
abstract float |
getMaxY(HistogramPlot.HistogramBin bin)
|
float |
getMinY(HistogramPlot.HistogramBin bin)
|
static HistogramPlot.YAggregate |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static HistogramPlot.YAggregate[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final HistogramPlot.YAggregate COUNT
public static final HistogramPlot.YAggregate SUM
public static final HistogramPlot.YAggregate MEAN
public static final HistogramPlot.YAggregate MAX
public static final HistogramPlot.YAggregate MIN
public static final HistogramPlot.YAggregate STDEV
public static final HistogramPlot.YAggregate HILOSTDEV
public static final HistogramPlot.YAggregate HILOMAXMIN
Method Detail |
---|
public static HistogramPlot.YAggregate[] values()
for (HistogramPlot.YAggregate c : HistogramPlot.YAggregate.values()) System.out.println(c);
public static HistogramPlot.YAggregate valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic abstract float getMaxY(HistogramPlot.HistogramBin bin)
public float getMinY(HistogramPlot.HistogramBin bin)
|
2.17.2: 2011-06-17 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |