public static enum LanczosSolver.TimingSection extends Enum<LanczosSolver.TimingSection>
| Enum Constant and Description |
|---|
FINAL_EIGEN_CREATE |
ITERATE |
ORTHOGANLIZE |
TRIDIAG_DECOMP |
| Modifier and Type | Method and Description |
|---|---|
static LanczosSolver.TimingSection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LanczosSolver.TimingSection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LanczosSolver.TimingSection ITERATE
public static final LanczosSolver.TimingSection ORTHOGANLIZE
public static final LanczosSolver.TimingSection TRIDIAG_DECOMP
public static final LanczosSolver.TimingSection FINAL_EIGEN_CREATE
public static LanczosSolver.TimingSection[] values()
for (LanczosSolver.TimingSection c : LanczosSolver.TimingSection.values()) System.out.println(c);
public static LanczosSolver.TimingSection 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 © 2008–2016 The Apache Software Foundation. All rights reserved.