ilog.concert
Class IloNumVarType

java.lang.Object
  |
  +--ilog.concert.IloNumVarType

public abstract class IloNumVarType
extends java.lang.Object

Objects of this class represent the type of a modeling variable. Three types are defined: Float, Int, and Bool.


Field Summary
static IloNumVarType Bool
          Boolean or, equivalently, binary variable type.
static IloNumVarType Float
          Floating point or, equivalently, continuous variable type.
static IloNumVarType Int
          Integer variable type.
 
Constructor Summary
IloNumVarType()
           
 
Method Summary
abstract  int getTypeValue()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

Float

public static final IloNumVarType Float
Floating point or, equivalently, continuous variable type.

Int

public static final IloNumVarType Int
Integer variable type.

Bool

public static final IloNumVarType Bool
Boolean or, equivalently, binary variable type.
Constructor Detail

IloNumVarType

public IloNumVarType()
Method Detail

getTypeValue

public abstract int getTypeValue()