Package | Description |
---|---|
com.spss.psapi.data |
This provides support for metadata such as the names, values and types of data.
|
com.spss.psapi.expr |
This provides support for parsing CLEM expressions.
|
com.spss.psapi.extensions.common |
This provides definitions that are used to manage streams, documents and models in scripting, and for extensions using the CLEF Java API.
|
com.spss.psapi.extensions.common.spi | |
com.spss.psapi.extensions.common.spi2 |
This defines SPI (Service Provider Interface) definitions that are implemented by
an extension.
|
com.spss.psapi.extensions.ui.spi | |
com.spss.psapi.interaction |
This provides classes used for interactive modeling.
|
com.spss.psapi.model |
This provides support for accessing information about data mining models.
|
com.spss.psapi.transform |
This provides objects that perform data processing and model building.
|
Modifier and Type | Method and Description |
---|---|
DataModel |
DataModelFactory.createDataModel()
Returns an empty
DataModel . |
DataModel |
DataModelFactory.extendDataModel(Column[] columns,
DataModel initialDataModel)
Returns a
DataModel consisting of the columns appended to the
supplied data model. |
DataModel |
DataModelFactory.extendDataModel(Column column,
DataModel initialDataModel)
Returns a
DataModel consisting of the column appended to the
supplied data model. |
DataModel |
DataModelFactory.extendDataModel(DataModel addition,
DataModel initialDataModel)
Returns a
DataModel consisting of the initial data model with
the additions appended. |
DataModel |
DataModelFactory.extractDataModel(MeasureType[] measureTypes,
DataModel initialDataModel)
Returns a
DataModel consisting of columns in the
source data model that have the supplied measure type(s). |
DataModel |
DataModelFactory.extractDataModel(ModelingRole[] modelingRoles,
DataModel initialDataModel)
Returns a
DataModel consisting of columns in the
source data model that have the supplied modeling role(s). |
DataModel |
DataModelFactory.extractDataModel(StorageType[] storageTypes,
DataModel initialDataModel)
Returns a
DataModel consisting of columns in the
source data model that have the supplied storage type(s). |
DataModel |
DataModelFactory.extractDataModel(java.lang.String[] names,
DataModel initialDataModel)
Returns a
DataModel consisting of the named columns extracted from the
source data model. |
DataModel |
DataModelException.getDataModel()
Returns the data model that was being used to convert the values.
|
DataModel |
DataModel.modifyColumns(java.util.Collection<Column> modifiedColumns)
Creates and returns a new data model based on this data model with the specified columns
modified.
|
DataModel |
DataModel.removeColumns(java.util.Collection<java.lang.String> columnNames)
Creates and returns a new data model based on this data model with the specified columns
modified.
|
DataModel |
DataModelFactory.removeFromDataModel(MeasureType[] measureTypes,
DataModel initialDataModel)
Returns a
DataModel consisting of the source data model with
columns of the supplied measure type(s) removed. |
DataModel |
DataModelFactory.removeFromDataModel(ModelingRole[] modelingRoles,
DataModel initialDataModel)
Returns a
DataModel consisting of the source data model with
columns of the supplied modeling roles(s) removed. |
DataModel |
DataModelFactory.removeFromDataModel(StorageType[] storageTypes,
DataModel initialDataModel)
Returns a
DataModel consisting of the source data model with
columns of the supplied storage type(s) removed. |
DataModel |
DataModelFactory.removeFromDataModel(java.lang.String[] names,
DataModel initialDataModel)
Returns a
DataModel consisting of the source data model with the named columns removed. |
DataModel |
DataModel.renameColumns(java.util.Map<java.lang.String,java.lang.String> modifiedNames)
Creates and returns a new data model based on this data model with the specified columns
renamed.
|
DataModel |
DataModelFactory.toDataModel(Column[] columns)
Returns a
DataModel containing the supplied columns. |
DataModel |
DataModelFactory.xmlToDataModel(java.lang.String xml)
Returns a
DataModel defined by the supplied XML string. |
Modifier and Type | Method and Description |
---|---|
RowSet |
RowSetFactory.createRow(java.util.List values,
DataModel dataModel)
Returns a RowSet consisting of a single row of values which are supplied
as a list.
|
RowSet |
RowSetFactory.createRow(java.lang.Object[] values,
DataModel dataModel)
Returns a RowSet consisting of a single row of values which are supplied
as a list.
|
java.lang.String |
DataModelFactory.dataModelToXML(DataModel dataModel)
Returns an XML format string containing the supplied data model in a
serializable format.
|
DataModel |
DataModelFactory.extendDataModel(Column[] columns,
DataModel initialDataModel)
Returns a
DataModel consisting of the columns appended to the
supplied data model. |
DataModel |
DataModelFactory.extendDataModel(Column column,
DataModel initialDataModel)
Returns a
DataModel consisting of the column appended to the
supplied data model. |
DataModel |
DataModelFactory.extendDataModel(DataModel addition,
DataModel initialDataModel)
Returns a
DataModel consisting of the initial data model with
the additions appended. |
DataModel |
DataModelFactory.extractDataModel(MeasureType[] measureTypes,
DataModel initialDataModel)
Returns a
DataModel consisting of columns in the
source data model that have the supplied measure type(s). |
DataModel |
DataModelFactory.extractDataModel(ModelingRole[] modelingRoles,
DataModel initialDataModel)
Returns a
DataModel consisting of columns in the
source data model that have the supplied modeling role(s). |
DataModel |
DataModelFactory.extractDataModel(StorageType[] storageTypes,
DataModel initialDataModel)
Returns a
DataModel consisting of columns in the
source data model that have the supplied storage type(s). |
DataModel |
DataModelFactory.extractDataModel(java.lang.String[] names,
DataModel initialDataModel)
Returns a
DataModel consisting of the named columns extracted from the
source data model. |
DataModel |
DataModelFactory.removeFromDataModel(MeasureType[] measureTypes,
DataModel initialDataModel)
Returns a
DataModel consisting of the source data model with
columns of the supplied measure type(s) removed. |
DataModel |
DataModelFactory.removeFromDataModel(ModelingRole[] modelingRoles,
DataModel initialDataModel)
Returns a
DataModel consisting of the source data model with
columns of the supplied modeling roles(s) removed. |
DataModel |
DataModelFactory.removeFromDataModel(StorageType[] storageTypes,
DataModel initialDataModel)
Returns a
DataModel consisting of the source data model with
columns of the supplied storage type(s) removed. |
DataModel |
DataModelFactory.removeFromDataModel(java.lang.String[] names,
DataModel initialDataModel)
Returns a
DataModel consisting of the source data model with the named columns removed. |
Constructor and Description |
---|
ColumnCountException(DataModel dataModel,
java.util.List values)
Deprecated.
|
ColumnCountException(java.lang.String message,
DataModel dataModel,
java.util.List values)
Creates a
ColumnCountException . |
DataModelException(DataModel dataModel)
Deprecated.
|
DataModelException(java.lang.String message,
DataModel dataModel)
Creates a DataModelException.
|
InvalidColumnValueException(DataModel dataModel,
java.lang.String columnName,
java.lang.Object value)
Deprecated.
|
InvalidColumnValueException(java.lang.String message,
DataModel dataModel,
java.lang.String columnName,
java.lang.Object value)
Creates an
InvalidColumnValueException . |
UnknownColumnException(DataModel dataModel,
java.lang.String columnName)
Deprecated.
|
UnknownColumnException(java.lang.String message,
DataModel dataModel,
java.lang.String columnName)
Creates an
UnknownColumnException . |
Modifier and Type | Method and Description |
---|---|
Expression |
Parser.parseExpression(java.lang.String expressionString,
DataModel dataModel)
Attempts to parse the
String argument to an Expression . |
Modifier and Type | Method and Description |
---|---|
DataModel |
DataProviderException.getDataModel()
Gets the data model
|
Modifier and Type | Method and Description |
---|---|
java.util.List<DataModel> |
AslContext.getInputDataModels()
Returns an unmodifiable list of the input data models.
|
Modifier and Type | Method and Description |
---|---|
void |
DataProviderException.setDataModel(DataModel dataModel)
Sets the data model
|
Constructor and Description |
---|
DataProviderException(int severity,
java.lang.String detail,
DataModel dataModel)
Creates a DataProviderException instance with one diagnostic entry and a data model
|
Modifier and Type | Method and Description |
---|---|
DataModel |
DataModelProvider.getOutputDataModel(DataModel inputDataModel,
Properties properties,
ExtensionObject extensionObject,
SystemSession session)
Returns the output data model for a given input data model,
set of properties and the object (typically a node) who output data model is
being computed.
|
Modifier and Type | Method and Description |
---|---|
com.spss.ae.aslhelpers.AslFunction |
AslFunctionProvider.generateASL(Properties properties,
ExtensionObject extensionObject,
SystemSession session,
ASLCompiler compiler,
com.spss.ae.aslhelpers.AslFunction input,
DataModel inputFields,
DataModel splitFields)
Deprecated.
|
com.spss.ae.aslhelpers.AslFunction |
AslFunctionProvider2.generateASL(Properties properties,
ExtensionObject extensionObject,
SystemSession session,
ASLCompiler compiler,
com.spss.ae.aslhelpers.AslFunction input,
DataModel inputFields,
DataModel splitFields,
AslFunctionProvider2.Reporter reporter)
Deprecated.
|
DataModel |
DataModelProvider.getOutputDataModel(DataModel inputDataModel,
Properties properties,
ExtensionObject extensionObject,
SystemSession session)
Returns the output data model for a given input data model,
set of properties and the object (typically a node) who output data model is
being computed.
|
Modifier and Type | Method and Description |
---|---|
DataModel |
NodeDelegate.getOutputDataModel(DataModel inputDataModel,
Properties properties,
NodeContext nodeContext)
Returns the output data model for a given input data model and
set of properties.
|
Modifier and Type | Method and Description |
---|---|
DataModel |
NodeDelegate.getOutputDataModel(DataModel inputDataModel,
Properties properties,
NodeContext nodeContext)
Returns the output data model for a given input data model and
set of properties.
|
Modifier and Type | Method and Description |
---|---|
void |
PropertyControl.dataModelUpdated(DataModel dataModel)
Called to notify the control that the data model seen by the control is updated.
|
Modifier and Type | Method and Description |
---|---|
DataModel |
DecisionListModelInteractor.getDataModel()
Returns a data model which describes the available fields in this modelling session.
|
Modifier and Type | Method and Description |
---|---|
DataModel |
ModelDetail.getInputDataModel()
Returns the input data model required by the model.
|
DataModel |
ModelDetail.getOutputDataModel()
Returns the output data model produced by the model.
|
Modifier and Type | Method and Description |
---|---|
DataModel |
DataWriter.getExportDataModel()
Returns the
DataModel being exported by this node. |
DataModel |
Processor.getInputDataModel()
Returns the
DataModel coming into this node. |
DataModel |
PublishedImage.getOutputDataModel()
Returns a data model which describes the fields exported by the image.
|
DataModel |
Processor.getOutputDataModel()
Returns the
DataModel output by this node. |
Copyright © 2014 Integral Solutions Ltd. All Rights Reserved.