public static enum Matrix.Layout extends Enum<Matrix.Layout>
| Modifier and Type | Method and Description |
|---|---|
static Matrix.Layout |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Matrix.Layout[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Matrix.Layout BY_ROW
public static final Matrix.Layout BY_COLUMN
public static Matrix.Layout[] values()
for (Matrix.Layout c : Matrix.Layout.values()) System.out.println(c);
public static Matrix.Layout 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 null