public static enum AbstractMatlabIO.Orientation extends Enum<AbstractMatlabIO.Orientation>
| Enum Constant and Description |
|---|
COLUMN
Each column is a single data sample.
|
ROW
Each row is a single data sample.
|
| Modifier and Type | Method and Description |
|---|---|
static AbstractMatlabIO.Orientation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractMatlabIO.Orientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractMatlabIO.Orientation ROW
public static final AbstractMatlabIO.Orientation COLUMN
public static AbstractMatlabIO.Orientation[] values()
for (AbstractMatlabIO.Orientation c : AbstractMatlabIO.Orientation.values()) System.out.println(c);
public static AbstractMatlabIO.Orientation 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.