Package | Description |
---|---|
com.spss.psapi.interaction |
This provides classes used for interactive modeling.
|
com.spss.psapi.session |
This provides support for the construction and use of data mining sessions.
|
com.spss.psapi.task |
This provides objects that create and represent data mining tasks.
|
Modifier and Type | Method and Description |
---|---|
Task |
DecisionListTaskFactory.createEvaluateModelTask(DecisionListModel model,
DecisionListTaskFactory.Partition[] partitions)
Creates a task which will evaluate a model against a specified set of data partitions.
|
Task |
DecisionListTaskFactory.createExtendModelTask(DecisionListModel model,
DecisionListTaskFactory.Partition partition,
java.util.Map buildSettings)
Creates a task which will extend a model against a specified data partition.
|
Task |
DecisionListTaskFactory.createExtendModelTask(DecisionListModel model,
DecisionListTaskFactory.Partition partition,
PropertiedObject buildSettings)
Creates a task which will extend a model against a specified data partition.
|
Modifier and Type | Method and Description |
---|---|
ExecutionHandle |
DecisionListModelInteractor.runTask(Task task)
Executes the supplied task synchronously and waits for it to complete.
|
ExecutionHandle |
DecisionListModelInteractor.spawnTask(Task task)
Executes the supplied task asynchronously.
|
Modifier and Type | Method and Description |
---|---|
ExecutionHandle |
Session.runTask(Task task)
Executes the supplied task synchronously and waits for it to complete.
|
ExecutionHandle |
Session.spawnTask(Task task)
Executes the supplied task asynchronously.
|
Modifier and Type | Method and Description |
---|---|
Task |
TaskFactory.createDeleteFileTask(java.lang.String filePath)
Create a task that delete the file using the specified file path.
|
Task |
TaskFactory.createDownloadFileTask(java.lang.String path,
java.io.OutputStream outputStream)
Creates a task that copies the content of a file on server to the
specified output stream.
|
Task |
TaskFactory.createDropTableTask(ServerDatabaseConnection conn,
java.lang.String tableName)
Create a task that drop the table using the specified table name.
|
Task |
TaskFactory.createExportDocumentTask(DocumentOutput document,
java.io.OutputStream outputStream,
FileFormat fileFormat)
Creates a task that exports a
DocumentOutput object
to an output stream using the specified FileFormat name. |
Task |
TaskFactory.createExportModelTask(ModelOutput model,
java.io.OutputStream outputStream,
FileFormat fileFormat)
Creates a task that exports a
ModelOutput object
to an output stream using the specified FileFormat name. |
Task |
TaskFactory.createExportModelTask(Processor modelApplier,
java.io.OutputStream outputStream,
FileFormat fileFormat)
Creates a task that exports a
Processor node
to an output stream using the specified FileFormat name. |
Task |
TaskFactory.createExportStreamTask(ProcessorStream stream,
java.io.OutputStream outputStream,
FileFormat fileFormat)
Creates a task that export a stream description to an output stream using specified file format.
|
Task |
TaskFactory.createImportPMMLModelTask(java.io.InputStream inputStream)
Creates a task that imports a
ModelOutput object from an input stream. |
Task |
TaskFactory.createOpenDocumentTask(java.io.InputStream inputStream)
Creates a task that reads a
DocumentOutput object from an input stream. |
Task |
TaskFactory.createOpenDocumentTask(java.io.InputStream inputStream,
boolean autoManage)
Creates a task that reads a
DocumentOutput object from an input stream. |
Task |
TaskFactory.createOpenModelTask(java.io.InputStream inputStream)
Creates a task that reads a
ModelOutput object from an input stream. |
Task |
TaskFactory.createOpenModelTask(java.io.InputStream inputStream,
boolean autoManage)
Creates a task that reads a
ModelOutput object from an input stream. |
Task |
TaskFactory.createOpenProcessorTask(java.io.InputStream inputStream,
ProcessorStream stream)
Creates a task that reads a
Processor object from an input stream
and inserts it into the supplied ProcessorStream . |
Task |
TaskFactory.createOpenStreamTask(java.io.InputStream inputStream)
Creates a task that reads a
ProcessorStream object from an input stream. |
Task |
TaskFactory.createOpenStreamTask(java.io.InputStream inputStream,
boolean autoManage)
Creates a task that reads a
ProcessorStream object from an input stream. |
Task |
TaskFactory.createSaveDocumentTask(DocumentOutput document,
java.io.OutputStream outputStream)
Creates a task that saves a
DocumentOutput object to an output stream. |
Task |
TaskFactory.createSaveModelTask(ModelOutput model,
java.io.OutputStream outputStream)
Creates a task that saves a
ModelOutput object to an output stream. |
Task |
TaskFactory.createSaveProcessorTask(Processor node,
java.io.OutputStream outputStream)
Creates a task that saves a
Processor object to an output stream. |
Task |
TaskFactory.createSaveStreamTask(ProcessorStream stream,
java.io.OutputStream outputStream)
Creates a task that saves a
ProcessorStream object to an output stream. |
Task |
TaskFactory.createUpdatePMMLModelTask(ModelOutput modelOutput,
java.io.InputStream inputStream)
Creates a task that updates the
ModelOutput object with PMML read from an input stream. |
Task |
TaskFactory.createUploadFileTask(java.lang.String path,
java.io.InputStream inputStream)
Creates a task that copies the content of the specified input stream
to a file on server, replacing any existing file content.
|
Task |
TaskFactory.createValidateStreamTask(Processor node)
Creates a task that validate a stream and get required fields, the result of the task is
StreamValidationResult , which could be got from task.getResult(). |
Task |
ExecutionHandle.getTask()
Returns the
Task being executed. |
Copyright © 2014 Integral Solutions Ltd. All Rights Reserved.