public static enum ConvergenceFailure.Reason extends Enum<ConvergenceFailure.Reason>
Enum Constant and Description |
---|
BREAKDOWN
Thrown when the iterative algorithm fails to proceed during its
iterations, due to, for example, division-by-zero.
|
MAX_ITERATIONS_EXCEEDED
Thrown if the iterative algorithm fails to converge to a solution
within a specified tolerance after the specified maximum number
of iterations.
|
Modifier and Type | Method and Description |
---|---|
static ConvergenceFailure.Reason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConvergenceFailure.Reason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConvergenceFailure.Reason BREAKDOWN
public static final ConvergenceFailure.Reason MAX_ITERATIONS_EXCEEDED
public static ConvergenceFailure.Reason[] values()
for (ConvergenceFailure.Reason c : ConvergenceFailure.Reason.values()) System.out.println(c);
public static ConvergenceFailure.Reason 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 © 2010-2020 NM FinTech Ltd.. All Rights Reserved.