public static enum ExtendedGARCH.Solver extends Enum<ExtendedGARCH.Solver>
Enum Constant and Description |
---|
NELDER_MEAD
The Nelder-Mead direct search polytope algorithm.
|
QUASI_NEWTON
A quasi-Newton type solver based on Powell's TOLMIN method.
|
Modifier and Type | Method and Description |
---|---|
static ExtendedGARCH.Solver |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExtendedGARCH.Solver[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExtendedGARCH.Solver NELDER_MEAD
NelderMead
.public static final ExtendedGARCH.Solver QUASI_NEWTON
MinConGenLin
.public static ExtendedGARCH.Solver[] values()
for (ExtendedGARCH.Solver c : ExtendedGARCH.Solver.values()) System.out.println(c);
public static ExtendedGARCH.Solver 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 © 2020 Rogue Wave Software. All rights reserved.