public static enum NotConvergedException.Reason extends java.lang.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(java.lang.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(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