public enum Diag extends java.lang.Enum<Diag>
| Enum Constant and Description |
|---|
NON_UNIT
Non-unit triangular.
|
UNIT
Unit triangular.
|
| Modifier and Type | Method and Description |
|---|---|
int |
blas()
Returns the byte value for BLAS.
|
byte |
lapack()
Returns the byte value for LAPACK.
|
static Diag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Diag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Diag NON_UNIT
public static final Diag UNIT
public static Diag[] values()
for (Diag c : Diag.values()) System.out.println(c);
public static Diag 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 byte lapack()