Package | Description |
---|---|
com.spss.psapi.data |
This provides support for metadata such as the names, values and types of data.
|
Modifier and Type | Field and Description |
---|---|
static MeasureType |
MeasureType.AUTOMATIC
Indicates that the column value will be auto-selected as
RANGE or DISCRETE according to its storage. |
static MeasureType |
MeasureType.COLLECTION
Indicates that the column value should be interpreted as a collection of values.
|
static MeasureType |
MeasureType.DISCRETE
Indicates that the column value is like
SET but can be treated as FLAG if there are only two values. |
static MeasureType |
MeasureType.FLAG
Indicates that the column value is one of two values.
|
static MeasureType |
MeasureType.GEOSPATIAL
Indicates that the column value should be interpreted as a geospatial value.
|
static MeasureType |
MeasureType.ORDERED_SET
Indicates that the column value is like
SET but with an implied order on the values. |
static MeasureType |
MeasureType.RANGE
Indicates that the column value lies between two points on a scale.
|
static MeasureType |
MeasureType.SET
Indicates that the column value is one of a (small) set of discrete values.
|
static MeasureType |
MeasureType.TYPELESS
Indicates that the column can have any value compatible with its storage.
|
Modifier and Type | Method and Description |
---|---|
static MeasureType |
MeasureType.getEnum(java.lang.String name)
Returns the enumeration with the supplied name or
null if
no enumeration exists for the supplied name. |
MeasureType |
Column.getMeasureType()
Returns the measure type for the column.
|
MeasureType |
DataModel.getMeasureType(java.lang.String name)
Returns the measure type for values in the named column.
|
MeasureType |
CollectionType.getValueMeasure()
Returns the measurement for the values within the collection.
|
static MeasureType[] |
MeasureType.getValues()
Returns an array containing all the valid values for this enumeration class.
|
Modifier and Type | Method and Description |
---|---|
CollectionType |
DataModelFactory.createCollectionType(MeasureType valueMeasure)
Creates a new
CollectionType object. |
Column |
DataModelFactory.createColumn(java.lang.String name,
java.lang.String label,
StorageType storageType,
MeasureType measureType,
ModelingRole modelingRole)
Returns a
Column with the supplied attributes. |
Column |
DataModelFactory.createModelOutputColumn(java.lang.String prefix,
java.lang.String basename,
StorageType storageType,
MeasureType measureType,
ModelOutputMetadata modelOutputMetadata)
Returns a new
Column with the specified type metadata and
associated model output metadata. |
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.removeFromDataModel(MeasureType[] measureTypes,
DataModel initialDataModel)
Returns a
DataModel consisting of the source data model with
columns of the supplied measure type(s) removed. |
(C) Copyright IBM Corp. 1994, 2015. All Rights Reserved.