protected static enum HistogramDataPoint.HistogramIndices extends Enum<HistogramDataPoint.HistogramIndices>
HistogramDataPoint contents in a file.| Enum Constant and Description |
|---|
COUNT |
MAXIMUM |
MEAN |
MINIMUM |
STANDARD_DEVIATION |
| Modifier and Type | Method and Description |
|---|---|
static HistogramDataPoint.HistogramIndices |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HistogramDataPoint.HistogramIndices[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HistogramDataPoint.HistogramIndices COUNT
public static final HistogramDataPoint.HistogramIndices MEAN
public static final HistogramDataPoint.HistogramIndices MINIMUM
public static final HistogramDataPoint.HistogramIndices MAXIMUM
public static final HistogramDataPoint.HistogramIndices STANDARD_DEVIATION
public static HistogramDataPoint.HistogramIndices[] values()
for (HistogramDataPoint.HistogramIndices c : HistogramDataPoint.HistogramIndices.values()) System.out.println(c);
public static HistogramDataPoint.HistogramIndices valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2014. All Rights Reserved.