Uses of Class
com.jstatcom.engine.EngineTypes

Packages that use EngineTypes
com.jstatcom.engine Abstract implementation of the engine communication as well as the procedure call. 
com.jstatcom.engine.gauss GAUSS communication that uses an installed version of the software. 
com.jstatcom.engine.grte Gauss Runtime Engine / Gauss Engine communication. 
com.jstatcom.engine.matlab New enhanced Matlab communication. 
com.jstatcom.engine.mlab Older Matlab communication. 
com.jstatcom.engine.ox Ox communication. 
com.jstatcom.engine.rstat R communication, see www.r-project.org. 
com.jstatcom.engine.stub Communication to arbitrary system libraries without JNI wrappers. 
 

Uses of EngineTypes in com.jstatcom.engine
 

Fields in com.jstatcom.engine declared as EngineTypes
static EngineTypes EngineTypes.GAUSS
          Reference to the GAUSS engine type.
static EngineTypes EngineTypes.GRTE
          Reference to the Gauss Runtime Engine type.
static EngineTypes EngineTypes.MATLAB
          Reference to the newer Matlab Engine type.
static EngineTypes EngineTypes.MLAB
          Reference to the older Matlab Engine type.
static EngineTypes EngineTypes.OX
          Reference to the Ox Engine type.
static EngineTypes EngineTypes.RSTAT
          Reference to the R Engine type.
static EngineTypes EngineTypes.STUB
          Reference to the Stub Engine type.
 

Methods in com.jstatcom.engine that return EngineTypes
 EngineTypes ConfigHolder.getEngineType()
          Returns the engine type associated with this.
static EngineTypes EngineTypes.valueOf(java.lang.String name)
          Gets the type for the given name.
 

Methods in com.jstatcom.engine with parameters of type EngineTypes
static ConfigHolder ConfigHolder.valueOf(EngineTypes engineType)
          Static initializer to return an instance of ConfigHolder.
 

Uses of EngineTypes in com.jstatcom.engine.gauss
 

Subclasses of EngineTypes in com.jstatcom.engine.gauss
 class GaussEngineType
          GaussEngineType holds information about the GaussEngine and works as a factory to create an instance of GAUSS.
 

Uses of EngineTypes in com.jstatcom.engine.grte
 

Subclasses of EngineTypes in com.jstatcom.engine.grte
 class GRTEType
          GRTEType holds information about the GRTEngine and works as a factory to create an instance of a GRTE workspace.
 

Uses of EngineTypes in com.jstatcom.engine.matlab
 

Subclasses of EngineTypes in com.jstatcom.engine.matlab
 class MatlabEngineType
          Holds information about the MatlabEngine.
 

Uses of EngineTypes in com.jstatcom.engine.mlab
 

Subclasses of EngineTypes in com.jstatcom.engine.mlab
 class MLabEngineType
          MLabEngineType holds information about the MLabEngine.
 class StubMlabEngineType
          MLabEngineType holds information about the MLabEngine.
 

Uses of EngineTypes in com.jstatcom.engine.ox
 

Subclasses of EngineTypes in com.jstatcom.engine.ox
 class OxEngineType
          Holds information about the OxEngine and binds different classes together as a Mediator.
 

Uses of EngineTypes in com.jstatcom.engine.rstat
 

Subclasses of EngineTypes in com.jstatcom.engine.rstat
 class RStatEngineType
          Holds information about the RStatEngine.
 

Uses of EngineTypes in com.jstatcom.engine.stub
 

Subclasses of EngineTypes in com.jstatcom.engine.stub
 class StubEngineType
          StubEngineType holds information about the StubEngine It is a Singleton.