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