public static enum SVD.Algorithm extends Enum<SVD.Algorithm>
Enum Constant and Description |
---|
ANY |
COLT |
JAMA |
MATLAB |
OCTAVE |
SVDLIBC |
SVDLIBJ |
Modifier and Type | Method and Description |
---|---|
static SVD.Algorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SVD.Algorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SVD.Algorithm SVDLIBC
public static final SVD.Algorithm SVDLIBJ
public static final SVD.Algorithm MATLAB
public static final SVD.Algorithm OCTAVE
public static final SVD.Algorithm JAMA
public static final SVD.Algorithm COLT
public static final SVD.Algorithm ANY
public static SVD.Algorithm[] values()
for (SVD.Algorithm c : SVD.Algorithm.values()) System.out.println(c);
public static SVD.Algorithm 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 nullCopyright © 2012. All Rights Reserved.