public enum PCAImplementation extends java.lang.Enum<PCAImplementation>
| Enum Constant and Description |
|---|
JAMA |
MTJ_EVD_DENSEMATRIX |
MTJ_EVD_SYMMMATRIX |
MTJ_SVD_DENSEMATRIX |
| Modifier and Type | Method and Description |
|---|---|
static PCAImplementation |
getFastestImplementation() |
static PCAImplementation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PCAImplementation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PCAImplementation MTJ_EVD_DENSEMATRIX
public static final PCAImplementation MTJ_EVD_SYMMMATRIX
public static final PCAImplementation MTJ_SVD_DENSEMATRIX
public static final PCAImplementation JAMA
public static PCAImplementation[] values()
for (PCAImplementation c : PCAImplementation.values()) System.out.println(c);
public static PCAImplementation 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 static PCAImplementation getFastestImplementation()