Uses of Class
com.jstatcom.engine.LoadTypes

Packages that use LoadTypes
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 LoadTypes in com.jstatcom.engine
 

Methods in com.jstatcom.engine with parameters of type LoadTypes
 void Engine.load(java.lang.String module, LoadTypes loadType, JSCData... args)
          Loads an engine specific type that is defined by a load type.
 void PCall.load(java.lang.String module, LoadTypes loadType, JSCData[] args)
          Adapter to Engine.load that uses engine().
 

Uses of LoadTypes in com.jstatcom.engine.gauss
 

Subclasses of LoadTypes in com.jstatcom.engine.gauss
 class GaussLoadTypes
          This class contains all module types that can be loaded by a GAUSS engine.
 

Methods in com.jstatcom.engine.gauss with parameters of type LoadTypes
 void GaussEngine.load(java.lang.String loadName, LoadTypes loadType, JSCData... args)
          Loads a module according to the load type.
 

Uses of LoadTypes in com.jstatcom.engine.grte
 

Subclasses of LoadTypes in com.jstatcom.engine.grte
 class GRTELoadTypes
          This class contains all module types that can be loaded by a GRTE engine.
 

Methods in com.jstatcom.engine.grte with parameters of type LoadTypes
 void GRTEngine.load(java.lang.String loadName, LoadTypes loadType, JSCData... args)
          Loads a module according to the load type.
 

Uses of LoadTypes in com.jstatcom.engine.matlab
 

Subclasses of LoadTypes in com.jstatcom.engine.matlab
 class MatlabLoadTypes
          This class contains all module types that can be loaded by a MatlabEngine.
 

Methods in com.jstatcom.engine.matlab with parameters of type LoadTypes
 void MatlabEngine.load(java.lang.String module, LoadTypes loadType, JSCData... args)
          Sets the name of the native library to be used or loads an executable.
 

Uses of LoadTypes in com.jstatcom.engine.mlab
 

Subclasses of LoadTypes in com.jstatcom.engine.mlab
 class MLabLoadTypes
          This class contains all module types that can be loaded by a MLab engine.
 class StubMlabLoadTypes
          This class contains all module types that can be loaded by a MLab engine.
 

Methods in com.jstatcom.engine.mlab with parameters of type LoadTypes
 void StubMlabEngine.load(java.lang.String module, LoadTypes loadType, JSCData... args)
          Sets the name of the native library to be used or loads an executable.
 void MLabEngine.load(java.lang.String module, LoadTypes loadType, JSCData... args)
          Sets the name of the native library to be used or loads an executable.
 

Uses of LoadTypes in com.jstatcom.engine.ox
 

Subclasses of LoadTypes in com.jstatcom.engine.ox
 class OxLoadTypes
          The types that can be loaded by the OxEngine.
 

Methods in com.jstatcom.engine.ox with parameters of type LoadTypes
 void OxEngine.load(java.lang.String loadName, LoadTypes loadType, JSCData... args)
          Loads a module according to the load type.
 

Uses of LoadTypes in com.jstatcom.engine.rstat
 

Subclasses of LoadTypes in com.jstatcom.engine.rstat
 class RStatLoadTypes
          This class contains all module types that can be loaded by a RStatEngine.
 

Methods in com.jstatcom.engine.rstat with parameters of type LoadTypes
 void RStatEngine.load(java.lang.String module, LoadTypes loadType, JSCData... args)
          Loads an R module, two cases are available: 1) loadType == RStatLoadTypes.RPACKAGE calls library(module) in R, the module must be installed for R 2) loadType == RStatLoadTypes.USERCODE expands module to a pathname relative to .
 

Uses of LoadTypes in com.jstatcom.engine.stub
 

Subclasses of LoadTypes in com.jstatcom.engine.stub
 class StubLoadTypes
          This class contains all module types that can be loaded by a Stub engine.
 

Methods in com.jstatcom.engine.stub with parameters of type LoadTypes
 void StubEngine.load(java.lang.String module, LoadTypes loadType, JSCData... args)
          Sets the name of the native library to be used.