javax.datamining.task.apply
Interface DataSetApplyTaskFactory

All Superinterfaces:
Factory

public interface DataSetApplyTaskFactory
extends Factory

A factory class that creates instances of DataSetApplyTask. @exception

Author:
JSR-73 Java Data Mining Expert Group
See Also:
Factory

Method Summary
 DataSetApplyTask create(java.lang.String applyDataName, java.lang.String modelName, java.lang.String applySettingsName, java.lang.String applyOutputDestinationURI)
          Creates an instance of DataSetApplyTask with the specified input data, the model to apply, the specification of output, and the location of the output.
 

Method Detail

create

public DataSetApplyTask create(java.lang.String applyDataName,
                               java.lang.String modelName,
                               java.lang.String applySettingsName,
                               java.lang.String applyOutputDestinationURI)
                        throws JDMException
Creates an instance of DataSetApplyTask with the specified input data, the model to apply, the specification of output, and the location of the output. Both the input and the output are physical data sets.

Parameters:
applyDataName - The name of a physical data (either table or file) to be used as input for apply.
modelName - The name of the model to be used for apply.
applySettingsName - The specification of apply output.
applyOutputDestinationURI - A URI where the result of apply output is stored with the name specified within it.
Returns:
DataSetApplyTask
Throws:
JDMException