localsolverblackbox
public enum LSBBErrorCode extends java.lang.Enum<LSBBErrorCode>
| Enum Constant and Description |
|---|
Api
Code used for errors related to API functions.
|
Callback
Code used when an error is encountered in a user callback.
|
File
Code used when an error related to input/output operations occurs.
|
Internal
Internal LocalSolverBlackBox error.
|
License
Code used when a problem related to licensing occurs.
|
Model
Code used when a problem related to the structure of the model occurs.
|
Modeler
Code used when an error is encountered in the modeler.
|
Solver
Code used when a problem occurs during the resolution such a division by
zero or an index out of bounds.
|
| Modifier and Type | Method and Description |
|---|---|
static LSBBErrorCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LSBBErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LSBBErrorCode Api
public static final LSBBErrorCode File
public static final LSBBErrorCode Model
public static final LSBBErrorCode Callback
public static final LSBBErrorCode License
public static final LSBBErrorCode Solver
z <- x % y can be replaced by
z<-x % max(1,y). Examples of error messages:
public static final LSBBErrorCode Internal
public static final LSBBErrorCode Modeler
public static LSBBErrorCode[] values()
for (LSBBErrorCode c : LSBBErrorCode.values()) System.out.println(c);
public static LSBBErrorCode 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