public static enum Statistics.Dimension extends Enum<Statistics.Dimension>
ALL, only one average value, or one standard deviation value
will be computed for an entire matrix.
For ROW, an average value, or a standard deviation, will be
computed for each row in the matrix.
For COLUMN, an average value, or a standard deviation, will be
computed for each column in the matrix.| Modifier and Type | Method and Description |
|---|---|
static Statistics.Dimension |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Statistics.Dimension[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Statistics.Dimension ALL
public static final Statistics.Dimension ROW
public static final Statistics.Dimension COLUMN
public static Statistics.Dimension[] values()
for (Statistics.Dimension c : Statistics.Dimension.values()) System.out.println(c);
public static Statistics.Dimension 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 © 2012. All Rights Reserved.