public static enum NotConvergedException.Reason extends Enum<NotConvergedException.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 NotConvergedException.Reason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NotConvergedException.Reason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotConvergedException.Reason Iterations
public static final NotConvergedException.Reason Divergence
public static final NotConvergedException.Reason Breakdown
public static NotConvergedException.Reason[] values()
for (NotConvergedException.Reason c : NotConvergedException.Reason.values()) System.out.println(c);
public static NotConvergedException.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 © 2015. All Rights Reserved.