public static enum IloCplex.Callback.Context.Info extends java.lang.Enum<IloCplex.Callback.Context.Info>
IloCplex.Callback.Context.getIntInfo(Info), IloCplex.Callback.Context.getLongInfo(Info),
IloCplex.Callback.Context.getDoubleInfo(Info).
Refer to Callback context in
the Reference Manual of the Callable Library (C API)
for further details about these values.| Enum Constant and Description |
|---|
AfterCutLoop
See
CPXCALLBACKINFO_AFTERCUTLOOP in the callable library reference manual. |
BestBound
See
CPXCALLBACKINFO_BEST_BND in the callable library reference manual. |
BestSolution
See
CPXCALLBACKINFO_BEST_SOL in the callable library reference manual. |
CandidateSource
See
CPXCALLBACKINFO_CANDIDATE_SOURCE in the callable library reference manual. |
DeterministicTime
See
CPXCALLBACKINFO_DETTIME in the callable library reference manual. |
Feasible
See
CPXCALLBACKINFO_FEASIBLE in the callable library reference manual. |
IterationCount
See
CPXCALLBACKINFO_ITCOUNT in the callable library reference manual. |
NodeCount
See
CPXCALLBACKINFO_NODECOUNT in the callable library reference manual. |
NodeDepth
See
CPXCALLBACKINFO_NODEDEPTH in the callable library reference manual. |
NodesLeft
See
CPXCALLBACKINFO_NODESLEFT in the callable library reference manual. |
NodeUID
See
CPXCALLBACKINFO_NODEUID in the callable library reference manual. |
Restarts
See
CPXCALLBACKINFO_RESTARTS in the callable library reference manual. |
ThreadId
See
CPXCALLBACKINFO_THREADID in the callable library reference manual. |
Threads
See
CPXCALLBACKINFO_THREADS in the callable library reference manual. |
Time
See
CPXCALLBACKINFO_TIME in the callable library reference manual. |
| Modifier and Type | Method and Description |
|---|---|
static IloCplex.Callback.Context.Info |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IloCplex.Callback.Context.Info[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IloCplex.Callback.Context.Info ThreadId
CPXCALLBACKINFO_THREADID in the callable library reference manual.public static final IloCplex.Callback.Context.Info NodeCount
CPXCALLBACKINFO_NODECOUNT in the callable library reference manual.public static final IloCplex.Callback.Context.Info IterationCount
CPXCALLBACKINFO_ITCOUNT in the callable library reference manual.public static final IloCplex.Callback.Context.Info BestSolution
CPXCALLBACKINFO_BEST_SOL in the callable library reference manual.public static final IloCplex.Callback.Context.Info BestBound
CPXCALLBACKINFO_BEST_BND in the callable library reference manual.public static final IloCplex.Callback.Context.Info Threads
CPXCALLBACKINFO_THREADS in the callable library reference manual.public static final IloCplex.Callback.Context.Info Feasible
CPXCALLBACKINFO_FEASIBLE in the callable library reference manual.public static final IloCplex.Callback.Context.Info Time
CPXCALLBACKINFO_TIME in the callable library reference manual.public static final IloCplex.Callback.Context.Info DeterministicTime
CPXCALLBACKINFO_DETTIME in the callable library reference manual.public static final IloCplex.Callback.Context.Info NodeUID
CPXCALLBACKINFO_NODEUID in the callable library reference manual.public static final IloCplex.Callback.Context.Info NodeDepth
CPXCALLBACKINFO_NODEDEPTH in the callable library reference manual.public static final IloCplex.Callback.Context.Info CandidateSource
CPXCALLBACKINFO_CANDIDATE_SOURCE in the callable library reference manual.public static final IloCplex.Callback.Context.Info Restarts
CPXCALLBACKINFO_RESTARTS in the callable library reference manual.public static final IloCplex.Callback.Context.Info AfterCutLoop
CPXCALLBACKINFO_AFTERCUTLOOP in the callable library reference manual.public static final IloCplex.Callback.Context.Info NodesLeft
CPXCALLBACKINFO_NODESLEFT in the callable library reference manual.public static IloCplex.Callback.Context.Info[] values()
public static IloCplex.Callback.Context.Info valueOf(java.lang.String name)
java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullname - the name of the enum constant to be returned.