localsolverblackbox
public enum LSBBOperator extends java.lang.Enum<LSBBOperator>
LSBBModel,
LSBBExpression| Enum Constant and Description |
|---|
Bool
Boolean decision.
|
Call
Call a particular function.
|
Const
Constant.
|
Float
Float decision.
|
Int
Integer decision variable.
|
NativeFunction
Native function.
|
| Modifier and Type | Method and Description |
|---|---|
static LSBBOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LSBBOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LSBBOperator Bool
public static final LSBBOperator Int
public static final LSBBOperator Float
public static final LSBBOperator Const
public static final LSBBOperator NativeFunction
LSBBModel.createNativeFunction(localsolverblackbox.LSBBNativeFunction).LSBBNativeFunctionpublic static final LSBBOperator Call
public static LSBBOperator[] values()
for (LSBBOperator c : LSBBOperator.values()) System.out.println(c);
public static LSBBOperator 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