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