Enum Class OptimizationResultBase.Status
java.lang.Object
java.lang.Enum<OptimizationResultBase.Status>
neqsim.process.util.optimizer.OptimizationResultBase.Status
- All Implemented Interfaces:
Serializable, Comparable<OptimizationResultBase.Status>, Constable
- Enclosing class:
OptimizationResultBase
Status of the optimization run.
- Version:
- 1.0
- Author:
- NeqSim Development Team
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionOptimization was cancelled.Optimization converged successfully.Optimization failed due to error.Optimization is still running.No feasible solution found (all constraints violated).Optimization did not converge within iteration limit.Not yet started. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static OptimizationResultBase.Status[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CONVERGED
Optimization converged successfully. -
MAX_ITERATIONS_REACHED
Optimization did not converge within iteration limit. -
INFEASIBLE
No feasible solution found (all constraints violated). -
FAILED
Optimization failed due to error. -
CANCELLED
Optimization was cancelled. -
IN_PROGRESS
Optimization is still running. -
NOT_STARTED
Not yet started.
-
-
Constructor Details
-
Status
private Status()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-