| Enum Constant and Description |
|---|
COL_MAJOR
Column major layout.
|
ROW_MAJOR
Row major layout.
|
| Modifier and Type | Method and Description |
|---|---|
int |
blas()
Returns the byte value for BLAS.
|
int |
lapack()
Returns the byte value for LAPACK.
|
static Layout |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Layout[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Layout ROW_MAJOR
public static final Layout COL_MAJOR
public static Layout[] values()
for (Layout c : Layout.values()) System.out.println(c);
public static Layout valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int blas()
public int lapack()