public enum EigenRange extends java.lang.Enum<EigenRange>
| Enum Constant and Description |
|---|
ALL
All eigenvalues will be found.
|
INDEX
The IL-th through IU-th eigenvalues will be found.
|
VALUE
All eigenvalues in the half-open interval (VL,VU]
will be found.
|
| Modifier and Type | Method and Description |
|---|---|
byte |
lapack()
Returns the byte value for LAPACK.
|
static EigenRange |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EigenRange[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EigenRange ALL
public static final EigenRange VALUE
public static final EigenRange INDEX
public static EigenRange[] values()
for (EigenRange c : EigenRange.values()) System.out.println(c);
public static EigenRange 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 byte lapack()