public static enum DoubleNotConvergedException.Reason extends Enum<DoubleNotConvergedException.Reason>
| Enum Constant and Description |
|---|
Breakdown
The iterative process detected a breakdown
|
Divergence
Divergence detected
|
Iterations
Did not converge after a maximum number of iterations
|
| Modifier and Type | Method and Description |
|---|---|
static DoubleNotConvergedException.Reason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DoubleNotConvergedException.Reason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DoubleNotConvergedException.Reason Iterations
public static final DoubleNotConvergedException.Reason Divergence
public static final DoubleNotConvergedException.Reason Breakdown
public static DoubleNotConvergedException.Reason[] values()
for (DoubleNotConvergedException.Reason c : DoubleNotConvergedException.Reason.values()) System.out.println(c);
public static DoubleNotConvergedException.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 nullJump to the Parallel Colt Homepage