jmarkov.solvers
Enum MtjSolver.IterSolvers

java.lang.Object
  extended by java.lang.Enum<MtjSolver.IterSolvers>
      extended by jmarkov.solvers.MtjSolver.IterSolvers
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MtjSolver.IterSolvers>
Enclosing class:
MtjSolver

public static enum MtjSolver.IterSolvers
extends java.lang.Enum<MtjSolver.IterSolvers>


Enum Constant Summary
BiCG
           
BiCGstab
           
CGS
           
GMRES
           
QMR
           
 
Method Summary
 java.lang.String getName()
           
static MtjSolver.IterSolvers valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MtjSolver.IterSolvers[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

BiCG

public static final MtjSolver.IterSolvers BiCG

BiCGstab

public static final MtjSolver.IterSolvers BiCGstab

CGS

public static final MtjSolver.IterSolvers CGS

GMRES

public static final MtjSolver.IterSolvers GMRES

QMR

public static final MtjSolver.IterSolvers QMR
Method Detail

values

public static final MtjSolver.IterSolvers[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(MtjSolver.IterSolvers c : MtjSolver.IterSolvers.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static MtjSolver.IterSolvers valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

getName

public java.lang.String getName()