public enum JobSolveStatus extends Enum<JobSolveStatus>
| Enum Constant and Description |
|---|
FEASIBLE_SOLUTION
Specifies that the algorithm found a feasible solution.
|
INFEASIBLE_OR_UNBOUNDED_SOLUTION
Specifies that the model is infeasible or unbounded.
|
INFEASIBLE_SOLUTION
Specifies that the algorithm proved that the model is infeasible.
|
OPTIMAL_SOLUTION
Specifies that the algorithm found an optimal solution.
|
UNBOUNDED_SOLUTION
Specifies that the algorithm proved the model unbounded.
|
UNKNOWN
Specifies that the algorithm has no information about the solution of the
model.
|
| Modifier and Type | Method and Description |
|---|---|
static JobSolveStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobSolveStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobSolveStatus UNKNOWN
public static final JobSolveStatus FEASIBLE_SOLUTION
public static final JobSolveStatus OPTIMAL_SOLUTION
public static final JobSolveStatus INFEASIBLE_SOLUTION
public static final JobSolveStatus UNBOUNDED_SOLUTION
public static final JobSolveStatus INFEASIBLE_OR_UNBOUNDED_SOLUTION
public static JobSolveStatus[] values()
for (JobSolveStatus c : JobSolveStatus.values()) System.out.println(c);
public static JobSolveStatus 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–2017 IBM Corporation. Licensed under the Apache License, Version 2.0.