no.uib.cipr.matrix.sparse
Enum ArpackSym.Ritz

java.lang.Object
  extended by java.lang.Enum<ArpackSym.Ritz>
      extended by no.uib.cipr.matrix.sparse.ArpackSym.Ritz
All Implemented Interfaces:
Serializable, Comparable<ArpackSym.Ritz>
Enclosing class:
ArpackSym

public static enum ArpackSym.Ritz
extends Enum<ArpackSym.Ritz>


Enum Constant Summary
BE
          compute NEV eigenvalues, half from each end of the spectrum
LA
          compute the NEV largest (algebraic) eigenvalues.
LM
          compute the NEV largest (in magnitude) eigenvalues.
SA
          compute the NEV smallest (algebraic) eigenvalues.
SM
          compute the NEV smallest (in magnitude) eigenvalues.
 
Method Summary
static ArpackSym.Ritz valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ArpackSym.Ritz[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

LA

public static final ArpackSym.Ritz LA
compute the NEV largest (algebraic) eigenvalues.


SA

public static final ArpackSym.Ritz SA
compute the NEV smallest (algebraic) eigenvalues.


LM

public static final ArpackSym.Ritz LM
compute the NEV largest (in magnitude) eigenvalues.


SM

public static final ArpackSym.Ritz SM
compute the NEV smallest (in magnitude) eigenvalues.


BE

public static final ArpackSym.Ritz BE
compute NEV eigenvalues, half from each end of the spectrum

Method Detail

values

public static ArpackSym.Ritz[] 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 (ArpackSym.Ritz c : ArpackSym.Ritz.values())
    System.out.println(c);

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

valueOf

public static ArpackSym.Ritz 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 © 2015. All Rights Reserved.