Package | Description |
---|---|
com.spss.psapi.core |
This provides the base objects used by other parts of the API.
|
com.spss.psapi.task |
This provides objects that create and represent data mining tasks.
|
com.spss.psapi.transform |
This provides objects that perform data processing and model building.
|
Modifier and Type | Field and Description |
---|---|
static FileFormat |
FileFormat.BITMAP
Identifier for bitmap image format.
|
static FileFormat |
FileFormat.COGNOS_ACTIVE_REPORT
Identifier for Cognos Active Report format.
|
static FileFormat |
FileFormat.COMMA_DELIMITED
Identifier for comma-delimited text.
|
static FileFormat |
FileFormat.COMPOSITE_PROCESSOR
Identifier for the native
CompositeProcessor format. |
static FileFormat |
FileFormat.DOCUMENT_OUTPUT
Identifier for the native
DocumentOutput format. |
static FileFormat |
FileFormat.EMF
Identifier for Enhanced Metafile format.
|
static FileFormat |
FileFormat.EPS
Identifier for Encapsulated PostScript format.
|
static FileFormat |
FileFormat.EXTERNAL_MODULE_SPECIFICATION
Identifier for the native external module specification format.
|
static FileFormat |
FileFormat.HTML
Identifier for HTML format.
|
static FileFormat |
FileFormat.HTMLC
Identifier for HTMLC format.
|
static FileFormat |
FileFormat.JAR
Identifier for JAR (Java archive) format.
|
static FileFormat |
FileFormat.JPEG
Identifier for JPEG image format.
|
static FileFormat |
FileFormat.MODEL_OUTPUT
Identifier for the native
ModelOutput format. |
static FileFormat |
FileFormat.MODEL_OUTPUT_SET
Identifier for the native
ModelOutput set format. |
static FileFormat |
FileFormat.MS_EXCEL
Identifier for MS Excel format.
|
static FileFormat |
FileFormat.MS_EXCEL2007
Identifier for MS Excel 2007 format.
|
static FileFormat |
FileFormat.MS_EXCEL2007_M
Identifier for MS Excel 2007 macro-enabled format.
|
static FileFormat |
FileFormat.MS_POWERPOINT
Identifier for MS PowerPoint format.
|
static FileFormat |
FileFormat.MS_POWERPOINT2007
Identifier for MS PowerPoint format.
|
static FileFormat |
FileFormat.MS_WORD
Identifier for MS Word format.
|
static FileFormat |
FileFormat.MS_WORD2007
Identifier for MS Word 2007 format.
|
static FileFormat |
FileFormat.PASW_RULE
Identifier for PASW RULE format.
|
static FileFormat |
FileFormat.PDF
Identifier for PDF format.
|
static FileFormat |
FileFormat.PLAIN_TEXT
Identifier for plain text format.
|
static FileFormat |
FileFormat.PNG
Identifier for PNG image format.
|
static FileFormat |
FileFormat.PROCESSOR
Identifier for the native
Processor format. |
static FileFormat |
FileFormat.PROCESSOR_STREAM
Identifier for the native
ProcessorStream format. |
static FileFormat |
FileFormat.PROJECT
Identifier for the native Project format.
|
static FileFormat |
FileFormat.PUBLISHED_IMAGE
Identifier for the native image format produced by a Publisher node.
|
static FileFormat |
FileFormat.PUBLISHED_PARAMETERS
Identifier for the native image parameter format produced by a Publisher node.
|
static FileFormat |
FileFormat.RTF
Identifier for Rich Text Format.
|
static FileFormat |
FileFormat.SPSS_APPLICATION_VIEW
Identifier for SPSS application view format.
|
static FileFormat |
FileFormat.SPSS_DATA
Identifier for SPSS .sav data format.
|
static FileFormat |
FileFormat.SPSS_DATA_PROVIDER
Identifier for SPSS data provider format.
|
static FileFormat |
FileFormat.SPSS_SCENARIO
Identifier for SPSS scenario format.
|
static FileFormat |
FileFormat.SPSS_SCENARIO_TEMPLATE
Identifier for SPSS scenario template format.
|
static FileFormat |
FileFormat.SPSS_WEB_REPORT
Identifier for SPSS Web Report format.
|
static FileFormat |
FileFormat.SPV
Identifier for SPV format.
|
static FileFormat |
FileFormat.SPW
Identifier for SPW format.
|
static FileFormat |
FileFormat.STATE
Identifier for the native combined
ModelOutput and ProcessorStream format. |
static FileFormat |
FileFormat.TAB_DELIMITED
Identifier for tab-delimited text.
|
static FileFormat |
FileFormat.TIFF
Identifier for TIFF format.
|
static FileFormat |
FileFormat.UNKNOWN
Identifier for an unknown file format.
|
static FileFormat |
FileFormat.VIZ
Identifier for VIZ format.
|
static FileFormat |
FileFormat.VIZML
Identifier for VIZML format.
|
static FileFormat |
FileFormat.XML
Identifier for XML format.
|
static FileFormat |
FileFormat.ZIP
Identifier for Zip (compressed archive) format.
|
Modifier and Type | Method and Description |
---|---|
static FileFormat |
FileFormat.getEnum(java.lang.String name)
Returns the enumeration with the supplied name or
null if
no enumeration exists for the supplied name. |
static FileFormat |
FileFormat.getFileFormatForExtension(java.lang.String extension)
Returns the default file format for the supplied extension or
null
if no matching file format can be found. |
static FileFormat |
FileFormat.getFileFormatForMIMEType(java.lang.String mimeType)
Returns the file format for the supplied MIME type or
null
if no matching file format can be found. |
static FileFormat[] |
FileFormat.getValues()
Returns an array containing all the valid values for this enumeration class.
|
Modifier and Type | Method and Description |
---|---|
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.
|
void |
TaskRunner.exportDocumentToFile(DocumentOutput documentOutput,
java.lang.String filename,
FileFormat fileFormat)
Exports the stream description to a file using the specified file format.
|
void |
TaskRunner.exportModelSummaryToFile(ModelOutput modelOutput,
java.lang.String filename,
FileFormat fileFormat)
Exports the model summary to a file using the specified file format.
|
void |
TaskRunner.exportModelSummaryToFile(Processor node,
java.lang.String filename,
FileFormat fileFormat)
Exports the model summary in the supplied node to a file using the specified file format.
|
void |
TaskRunner.exportModelToFile(ModelOutput modelOutput,
java.lang.String filename,
FileFormat fileFormat)
Exports the model to a file using the specified file format.
|
void |
TaskRunner.exportModelToFile(Processor node,
java.lang.String filename,
FileFormat fileFormat)
Exports the model in the supplied node to a file using the specified file format.
|
void |
TaskRunner.exportOutputToFile(PropertiedObject object,
java.lang.String filename,
FileFormat fileFormat,
java.util.Map<?,?> options)
Exports the output content from the supplied object to the specified file and format.
|
void |
TaskRunner.exportStreamToFile(ProcessorStream stream,
java.lang.String filename,
FileFormat fileFormat)
Exports the stream description to a file using the specified file format.
|
Modifier and Type | Method and Description |
---|---|
FileFormat |
ExportFormatException.getFileFormat()
Returns the unsupported export format.
|
Modifier and Type | Method and Description |
---|---|
boolean |
ProcessorStream.isExportable(FileFormat format)
Returns
true if this stream can be exported using the
supplied FileFormat or false otherwise. |
boolean |
BuiltObject.isExportable(FileFormat fileFormat)
Returns
true if this object can be exported using the
supplied FileFormat or false otherwise. |
Constructor and Description |
---|
ExportFormatException(PropertiedObject object,
FileFormat fileFormat)
Deprecated.
|
ExportFormatException(java.lang.String message,
PropertiedObject object,
FileFormat fileFormat)
Constructs an
ExportFormatException . |
(C) Copyright IBM Corp. 1994, 2015. All Rights Reserved.