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