public static enum ArpackGen.Ritz extends Enum<ArpackGen.Ritz>
| Enum Constant and Description |
|---|
LI
want the NEV eigenvalues of largest imaginary part.
|
LM
compute the NEV largest (in magnitude) eigenvalues.
|
LR
the NEV eigenvalues of largest real part.
|
SI
want the NEV eigenvalues of smallest imaginary part.
|
SM
compute the NEV smallest (in magnitude) eigenvalues.
|
SR
the NEV eigenvalues of smallest real part.
|
| Modifier and Type | Method and Description |
|---|---|
static ArpackGen.Ritz |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArpackGen.Ritz[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArpackGen.Ritz LM
public static final ArpackGen.Ritz SM
public static final ArpackGen.Ritz LR
public static final ArpackGen.Ritz SR
public static final ArpackGen.Ritz LI
public static final ArpackGen.Ritz SI
public static ArpackGen.Ritz[] values()
for (ArpackGen.Ritz c : ArpackGen.Ritz.values()) System.out.println(c);
public static ArpackGen.Ritz 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