public static enum ARPACK.SymmOption extends java.lang.Enum<ARPACK.SymmOption>
| Enum Constant and Description |
|---|
BE
Computes nev eigenvalues, half from each end of the spectrum.
|
LA
The largest algebraic eigenvalues.
|
LM
The eigenvalues largest in magnitude.
|
SA
The smallest algebraic eigenvalues.
|
SM
The eigenvalues smallest in magnitude.
|
| Modifier and Type | Method and Description |
|---|---|
static ARPACK.SymmOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ARPACK.SymmOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ARPACK.SymmOption LA
public static final ARPACK.SymmOption SA
public static final ARPACK.SymmOption LM
public static final ARPACK.SymmOption SM
public static final ARPACK.SymmOption BE
public static ARPACK.SymmOption[] values()
for (ARPACK.SymmOption c : ARPACK.SymmOption.values()) System.out.println(c);
public static ARPACK.SymmOption 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 null