org.apache.mahout.math.decomposer.lanczos
Enum LanczosSolver.TimingSection
java.lang.Object
java.lang.Enum<LanczosSolver.TimingSection>
org.apache.mahout.math.decomposer.lanczos.LanczosSolver.TimingSection
- All Implemented Interfaces:
- Serializable, Comparable<LanczosSolver.TimingSection>
- Enclosing class:
- LanczosSolver
public static enum LanczosSolver.TimingSection
- extends Enum<LanczosSolver.TimingSection>
ITERATE
public static final LanczosSolver.TimingSection ITERATE
ORTHOGANLIZE
public static final LanczosSolver.TimingSection ORTHOGANLIZE
TRIDIAG_DECOMP
public static final LanczosSolver.TimingSection TRIDIAG_DECOMP
FINAL_EIGEN_CREATE
public static final LanczosSolver.TimingSection FINAL_EIGEN_CREATE
values
public static LanczosSolver.TimingSection[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (LanczosSolver.TimingSection c : LanczosSolver.TimingSection.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static LanczosSolver.TimingSection valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
Copyright © 2008–2014 The Apache Software Foundation. All rights reserved.