|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use DataType | |
---|---|
org.knime.base.data.append.column | |
org.knime.base.data.bitvector | This package contains classes responsible for the representation and conversion of bit vectors. |
org.knime.base.data.filter.column | Contains column filter for DataTable objects which
includes or excludes a certain number of columns from a given data table. |
org.knime.base.data.replace | |
org.knime.base.node.io.def | (Obsolete) Node that produces predefined DataTables. |
org.knime.base.node.io.filereader | Contains a node implementation that reads in data from an ASCII file. |
org.knime.base.node.mine.bayes.naivebayes.datamodel | This package implements the naive bayes algorithm for numerical and nominal attributes. |
org.knime.base.node.mine.bfn | Contains abstract and util classes to train and perform prediction to rule models, also called BasisFunction models. |
org.knime.base.node.mine.bfn.fuzzy | Contains the learner and predictor to train fuzzy rules and apply them to unknown data. |
org.knime.base.node.mine.bfn.radial | Contains the PNN learner and predictor. |
org.knime.base.node.mine.sota.logic | Contains the logic classes of SOTA. |
org.knime.base.node.preproc.binner | Contains a node to bin/group a number of numeric columns into a string column by predefined intervals. |
org.knime.base.node.preproc.cellsplit | Contains the implementation of a node that splits (and replaces) a values in a column into multiple new ones. |
org.knime.base.node.preproc.colconvert.stringtonumber | Node to convert StringValue columns to NumberValue columns. |
org.knime.base.node.preproc.filter.column | Contains the filter column node which can be used the extract certain columns from the input data table. |
org.knime.base.node.preproc.groupby.aggregation | Contains helper classes that perform the aggregation. |
org.knime.base.node.preproc.rename | Node that allows to rename column names or change the type. |
org.knime.base.node.preproc.rowkey | This package contains all classes of the RowKey node which provides the following function: Replacing of the current rowkey with the values of a column Creating a column with the row key values |
org.knime.base.node.viz.histogram.util | Contains utility classes which performe binning or which are used in dialogs to select the aggregation columns. |
org.knime.core.data | Contains the interface definitions of the DataCell
and DataTable and related
classes, used to store and access the actual data. |
org.knime.core.data.collection | Definitions for KNIME collection types and default implementations. |
org.knime.core.data.container |
Implementation of a DataContainer . |
org.knime.core.data.date | Definition of date and time in KNIME. |
org.knime.core.data.def | Provides default implementations for all (except
DataTable ) abstract
classes in the data package.The default implementations of classes derived from DataCell just store their
values in members of the appropriate java type (like
DoubleCell has a private
member of Java type double, etc.).The default implementation of DataTable
is deprecated and shouldn't be used. |
org.knime.core.data.vector.bitvector | |
org.knime.core.data.vector.bytevector | |
org.knime.core.node.config | Contains a utility class Config to store
a general state (i.e. |
org.knime.core.node.tableview | Node implementation of a table view. |
org.knime.core.node.util | Contains a set of utility classes that may be used in different (so far visual) contexts. |
Uses of DataType in org.knime.base.data.append.column |
---|
Methods in org.knime.base.data.append.column that return DataType | |
---|---|
(package private) DataType[] |
AppendedColumnTable.getAppendedColumnClasses()
Get the class values of the appended columns. |
Uses of DataType in org.knime.base.data.bitvector |
---|
Fields in org.knime.base.data.bitvector declared as DataType | |
---|---|
static DataType |
BitVectorCell.TYPE
Deprecated. Convenience access member for DataType.getType(BitVectorCell.class) . |
Uses of DataType in org.knime.base.data.filter.column |
---|
Constructors in org.knime.base.data.filter.column with parameters of type DataType | |
---|---|
FilterColumnTable(DataTable data,
DataType type)
Inits a new filter column table based on a DataTable and one
type (DataCell ))
using Class to extract these columns. |
Uses of DataType in org.knime.base.data.replace |
---|
Constructors in org.knime.base.data.replace with parameters of type DataType | |
---|---|
ReplacedColumnsRowIterator(RowIterator it,
ReplacedCellsFactory fac,
DataType[] validateTypes,
int[] columns)
Creates a new replaced column iterator. |
Uses of DataType in org.knime.base.node.io.def |
---|
Constructors in org.knime.base.node.io.def with parameters of type DataType | |
---|---|
DefaultTableNodeFactory(DataRow[] rows,
String[] columnNames,
DataType[] columnTypes)
We provide the same constructors as the DefaultTable . |
|
DefaultTableNodeModel(DataRow[] rows,
String[] columnNames,
DataType[] columnTypes)
|
Uses of DataType in org.knime.base.node.io.filereader |
---|
Methods in org.knime.base.node.io.filereader that return DataType | |
---|---|
DataType |
XMLPropsReader.getColumnType(int index)
Returns column type as DataType at index. |
DataType |
SmilesTypeHelper.getSmilesType()
Returns the Smiles type. |
Methods in org.knime.base.node.io.filereader with parameters of type DataType | |
---|---|
void |
ColProperty.changeColumnType(DataType newType)
Sets a new column type for this column. |
DataCell |
DataCellFactory.createDataCellOfType(DataType type,
String data)
Creates a DataCell of the specified type from the data passed. |
Uses of DataType in org.knime.base.node.mine.bayes.naivebayes.datamodel |
---|
Methods in org.knime.base.node.mine.bayes.naivebayes.datamodel that return DataType | |
---|---|
DataType |
NaiveBayesModel.getClassColumnDataType()
|
Uses of DataType in org.knime.base.node.mine.bfn |
---|
Methods in org.knime.base.node.mine.bfn that return DataType | |
---|---|
abstract DataType |
BasisFunctionLearnerNodeModel.getModelType()
|
Methods in org.knime.base.node.mine.bfn with parameters of type DataType | |
---|---|
static DataTableSpec |
BasisFunctionFactory.createModelSpec(DataTableSpec inSpec,
String[] dataColumns,
String[] targetColumns,
DataType type)
Creates a model spec based on the data input spec by extracting all DoubleCell columns and the specified
target column. |
Constructors in org.knime.base.node.mine.bfn with parameters of type DataType | |
---|---|
BasisFunctionFactory(DataTableSpec spec,
String[] targetColumns,
DataType type,
int distance)
Creates new basisfunction factory with the given spec to extract min/max value for all numeric columns. |
Uses of DataType in org.knime.base.node.mine.bfn.fuzzy |
---|
Methods in org.knime.base.node.mine.bfn.fuzzy that return DataType | |
---|---|
DataType |
FuzzyBasisFunctionLearnerNodeModel.getModelType()
|
Uses of DataType in org.knime.base.node.mine.bfn.radial |
---|
Methods in org.knime.base.node.mine.bfn.radial that return DataType | |
---|---|
DataType |
RadialBasisFunctionLearnerNodeModel.getModelType()
|
Uses of DataType in org.knime.base.node.mine.sota.logic |
---|
Methods in org.knime.base.node.mine.sota.logic with parameters of type DataType | |
---|---|
static boolean |
SotaUtil.isFuzzyIntervalType(DataType type)
Returns true if given DataType is a FuzzyIntervalType,
otherwise false . |
static boolean |
SotaUtil.isIntType(DataType type)
Returns true if given DataType is a IntType, otherwise
false . |
static boolean |
SotaUtil.isNumberType(DataType type)
Returns true if given DataType is a DoubleType or an
IntType, otherwise false . |
static boolean |
SotaUtil.isStringType(DataType type)
Returns true if given DataType is a StringTyoe, otherwise
false . |
Uses of DataType in org.knime.base.node.preproc.binner |
---|
Constructors in org.knime.base.node.preproc.binner with parameters of type DataType | |
---|---|
BinnerNodeDialogPane.IntervalItemPanel(BinnerNodeDialogPane.IntervalPanel parent,
boolean leftOpen,
Double left,
boolean rightOpen,
Double right,
String bin,
DataType type)
|
|
BinnerNodeDialogPane.IntervalItemPanel(BinnerNodeDialogPane.IntervalPanel parent,
Double left,
Double right,
String bin,
DataType type)
|
|
BinnerNodeDialogPane.IntervalPanel(String column,
String appendColumn,
Component parent,
DataType type)
Create new interval panel. |
Uses of DataType in org.knime.base.node.preproc.cellsplit |
---|
Methods in org.knime.base.node.preproc.cellsplit that return DataType | |
---|---|
(package private) DataType |
CellSplitterSettings.getTypeOfColumn(int colIdx)
Return the type of a column previously added. |
Methods in org.knime.base.node.preproc.cellsplit with parameters of type DataType | |
---|---|
(package private) void |
CellSplitterSettings.addColumnOfType(DataType type)
Adds the type of a new column at the end of the column list. |
(package private) void |
CellSplitterSettings.replaceTypeOfColumn(int colIdx,
DataType newType)
Replaces the type of an already found column. |
Uses of DataType in org.knime.base.node.preproc.colconvert.stringtonumber |
---|
Fields in org.knime.base.node.preproc.colconvert.stringtonumber declared as DataType | |
---|---|
static DataType[] |
StringToNumberNodeModel.POSSIBLETYPES
The possible types that the string can be converted to. |
Uses of DataType in org.knime.base.node.preproc.filter.column |
---|
Methods in org.knime.base.node.preproc.filter.column that return DataType | |
---|---|
DataType |
FilterColumnPanel.getType(String name)
Returns the data type for the given cell retrieving it from the initial DataTableSpec . |
Uses of DataType in org.knime.base.node.preproc.groupby.aggregation |
---|
Methods in org.knime.base.node.preproc.groupby.aggregation that return DataType | |
---|---|
DataType |
ColumnAggregator.getDataType()
|
protected DataType |
NumericOperators.MinOperator.getDataType(DataType origType)
|
protected DataType |
NumericOperators.MaxOperator.getDataType(DataType origType)
|
protected DataType |
NumericOperators.MeanOperator.getDataType(DataType origType)
|
protected DataType |
NumericOperators.SumOperator.getDataType(DataType origType)
|
protected DataType |
NumericOperators.VarianceOperator.getDataType(DataType origType)
|
protected abstract DataType |
AggregationOperator.getDataType(DataType origType)
|
protected DataType |
Operators.FirstOperator.getDataType(DataType origType)
|
protected DataType |
Operators.LastOperator.getDataType(DataType origType)
|
protected DataType |
Operators.ModeOperator.getDataType(DataType origType)
|
protected DataType |
Operators.ConcatenateOperator.getDataType(DataType origType)
|
protected DataType |
Operators.UniqueConcatenateOperator.getDataType(DataType origType)
|
protected DataType |
Operators.UniqueCountOperator.getDataType(DataType origType)
|
protected DataType |
Operators.UniqueConcatenateWithCountOperator.getDataType(DataType origType)
|
protected DataType |
Operators.CountOperator.getDataType(DataType origType)
|
protected DataType |
Operators.ListCellOperator.getDataType(DataType origType)
|
protected DataType |
Operators.SetCellOperator.getDataType(DataType origType)
|
Methods in org.knime.base.node.preproc.groupby.aggregation with parameters of type DataType | |
---|---|
protected DataType |
NumericOperators.MinOperator.getDataType(DataType origType)
|
protected DataType |
NumericOperators.MaxOperator.getDataType(DataType origType)
|
protected DataType |
NumericOperators.MeanOperator.getDataType(DataType origType)
|
protected DataType |
NumericOperators.SumOperator.getDataType(DataType origType)
|
protected DataType |
NumericOperators.VarianceOperator.getDataType(DataType origType)
|
protected abstract DataType |
AggregationOperator.getDataType(DataType origType)
|
protected DataType |
Operators.FirstOperator.getDataType(DataType origType)
|
protected DataType |
Operators.LastOperator.getDataType(DataType origType)
|
protected DataType |
Operators.ModeOperator.getDataType(DataType origType)
|
protected DataType |
Operators.ConcatenateOperator.getDataType(DataType origType)
|
protected DataType |
Operators.UniqueConcatenateOperator.getDataType(DataType origType)
|
protected DataType |
Operators.UniqueCountOperator.getDataType(DataType origType)
|
protected DataType |
Operators.UniqueConcatenateWithCountOperator.getDataType(DataType origType)
|
protected DataType |
Operators.CountOperator.getDataType(DataType origType)
|
protected DataType |
Operators.ListCellOperator.getDataType(DataType origType)
|
protected DataType |
Operators.SetCellOperator.getDataType(DataType origType)
|
Uses of DataType in org.knime.base.node.preproc.rename |
---|
Methods in org.knime.base.node.preproc.rename with parameters of type DataType | |
---|---|
(package private) static Set<Class<? extends DataValue>> |
RenameColumnSetting.constructPossibleTypes(DataType type)
Construct a set with all types a given type can be cast to. |
Uses of DataType in org.knime.base.node.preproc.rowkey |
---|
Methods in org.knime.base.node.preproc.rowkey with parameters of type DataType | |
---|---|
static ColumnRearranger |
RowKeyUtil.createColumnRearranger(DataTableSpec inSpec,
String newColName,
DataType type)
Creates the ColumnRearranger that appends a new column with the
values of the row id to a data table. |
Uses of DataType in org.knime.base.node.viz.histogram.util |
---|
Methods in org.knime.base.node.viz.histogram.util that return DataType | |
---|---|
DataType |
AggregationColumnFilterPanel.getType(String name)
Returns the data type for the given cell retrieving it from the initial DataTableSpec . |
Uses of DataType in org.knime.core.data |
---|
Methods in org.knime.core.data that return DataType | |
---|---|
static DataType |
DataType.cloneChangePreferredValue(DataType from,
Class<? extends DataValue> preferred)
Clones the given DataType but changes its preferred value
class to the passed preferred value. |
DataType |
DataType.getCollectionElementType()
Get the type of the elements in collection or null if
this type does not represent a collection. |
static DataType |
DataType.getCommonSuperType(DataType type1,
DataType type2)
Returns a type which is compatible to only those values, both given types are compatible to, i.e. |
DataType |
DataColumnSpec.getType()
Returns the column type which is a subclass of DataType . |
DataType |
DataCell.getType()
Returns this cell's DataType . |
static DataType |
DataType.getType(Class<? extends DataCell> cell)
Returns the runtime DataType for a
DataCell
implementation. |
static DataType |
DataType.getType(Class<? extends DataCell> cellImplementsCollectionDataValue,
DataType collectionElementType)
Implementation of getType(Class) dedicated for special cell
classes that represent collections of DataCell . |
static DataType |
DataType.load(ConfigRO config)
Loads a DataType from a given
ConfigRO . |
Methods in org.knime.core.data with parameters of type DataType | |
---|---|
static DataType |
DataType.cloneChangePreferredValue(DataType from,
Class<? extends DataValue> preferred)
Clones the given DataType but changes its preferred value
class to the passed preferred value. |
static DataColumnSpec[] |
DataTableSpec.createColumnSpecs(String[] names,
DataType[] types)
Static helper method to create a DataColumnSpec array from the
given names and types. |
static DataType |
DataType.getCommonSuperType(DataType type1,
DataType type2)
Returns a type which is compatible to only those values, both given types are compatible to, i.e. |
static DataType |
DataType.getType(Class<? extends DataCell> cellImplementsCollectionDataValue,
DataType collectionElementType)
Implementation of getType(Class) dedicated for special cell
classes that represent collections of DataCell . |
boolean |
DataType.isASuperTypeOf(DataType type)
Returns true if this type is a supertype of the
passed type, that is, the argument is compatible to all DataValue
classes of this type (and may be more). |
void |
DataColumnSpecCreator.setType(DataType type)
Set (new) column type. |
Constructors in org.knime.core.data with parameters of type DataType | |
---|---|
DataColumnSpec(String name,
String[] elNames,
DataType type,
DataColumnDomain domain,
DataColumnProperties props,
SizeHandler sizeHdl,
ColorHandler colorHdl,
ShapeHandler shapeHdl)
Constructor taking all properties of this column spec as arguments. |
|
DataColumnSpecCreator(String name,
DataType type)
Initializes the creator with the given column name and type. |
|
DataTableSpec(String[] names,
DataType[] types)
Creates a new DataTableSpec based on a list of names and
types. |
|
DataTableSpec(String name,
String[] names,
DataType[] types)
Creates a new DataTableSpec based on a list of names and
types. |
Uses of DataType in org.knime.core.data.collection |
---|
Methods in org.knime.core.data.collection that return DataType | |
---|---|
static DataType |
ListCell.getCollectionType(DataType elementType)
Convenience method to determine the type of collection. |
static DataType |
SetCell.getCollectionType(DataType elementType)
Convenience method to determine the type of collection. |
DataType |
BlobSupportDataCellList.getElementType()
|
DataType |
BlobSupportDataCellSet.getElementType()
|
DataType |
CollectionDataValue.getElementType()
Get the common super type of all elements in this collection. |
DataType |
ListCell.getElementType()
Get the common super type of all elements in this collection. |
DataType |
SetCell.getElementType()
Get the common super type of all elements in this collection. |
static DataType |
CollectionCellFactory.getElementType(DataTableSpec tableSpec,
int[] cols)
Determines the super type of the specified columns. |
static DataType |
CollectionCellFactory.getElementType(DataType[] colType)
Determines the super type of all types passed. |
Methods in org.knime.core.data.collection with parameters of type DataType | |
---|---|
static DataType |
ListCell.getCollectionType(DataType elementType)
Convenience method to determine the type of collection. |
static DataType |
SetCell.getCollectionType(DataType elementType)
Convenience method to determine the type of collection. |
static DataType |
CollectionCellFactory.getElementType(DataType[] colType)
Determines the super type of all types passed. |
Uses of DataType in org.knime.core.data.container |
---|
Methods in org.knime.core.data.container that return DataType | |
---|---|
(package private) DataType |
BlobWrapperDataCell.getBlobDataType()
|
(package private) DataType |
CellClassInfo.getCollectionElementType()
|
(package private) DataType |
CellClassInfo.getDataType()
Get the DataType of the underlying cell. |
Methods in org.knime.core.data.container with parameters of type DataType | |
---|---|
(package private) static CellClassInfo |
CellClassInfo.get(Class<? extends DataCell> cellClass,
DataType collectionElementType)
Same as CellClassInfo.get(DataCell) , only with resolved arguments. |
Uses of DataType in org.knime.core.data.date |
---|
Fields in org.knime.core.data.date declared as DataType | |
---|---|
static DataType |
DateAndTimeCell.TYPE
DataType of this cell. |
Uses of DataType in org.knime.core.data.def |
---|
Fields in org.knime.core.data.def declared as DataType | |
---|---|
static DataType |
LongCell.TYPE
Convenience access member for DataType.getType(LongCell.class) . |
static DataType |
ComplexNumberCell.TYPE
Convenience access method for DataType.getType(ComplexNumberCell.class). |
static DataType |
FuzzyNumberCell.TYPE
Convenience access member for DataType.getType(FuzzyNumberCell.class) . |
static DataType |
TimestampCell.TYPE
Deprecated. Convenience access member for DataType.getType(TimestampCell.class) . |
static DataType |
IntervalCell.TYPE
Convenience access member for DataType.getType(IntervalCell.class) . |
static DataType |
StringCell.TYPE
Convenience access member for DataType.getType(StringCell.class) . |
static DataType |
DoubleCell.TYPE
Convenience access member for DataType.getType(DoubleCell.class) . |
static DataType |
IntCell.TYPE
Convenience access member for DataType.getType(IntCell.class) . |
static DataType |
FuzzyIntervalCell.TYPE
Convenience access member for DataType.getType(FuzzyIntervalCell.class) . |
Constructors in org.knime.core.data.def with parameters of type DataType | |
---|---|
DefaultTable(DataRow[] rows,
String[] columnNames,
DataType[] columnTypes)
Deprecated. Creates a new table object from an array of DataRow
objects, and an array of column names and types. |
Uses of DataType in org.knime.core.data.vector.bitvector |
---|
Fields in org.knime.core.data.vector.bitvector declared as DataType | |
---|---|
static DataType |
SparseBitVectorCell.TYPE
Convenience access member for DataType.getType(SparseBitVectorCell.class) . |
static DataType |
DenseBitVectorCell.TYPE
Convenience access member for DataType.getType(DenseBitVectorCell.class) . |
Uses of DataType in org.knime.core.data.vector.bytevector |
---|
Fields in org.knime.core.data.vector.bytevector declared as DataType | |
---|---|
static DataType |
SparseByteVectorCell.TYPE
Convenience access member for DataType.getType(SparseByteVectorCell.class) . |
static DataType |
DenseByteVectorCell.TYPE
Convenience access member for DataType.getType(DenseByteVectorCell.class) . |
Uses of DataType in org.knime.core.node.config |
---|
Methods in org.knime.core.node.config that return DataType | |
---|---|
DataType |
Config.getDataType(String key)
Return DataType for key. |
DataType |
ConfigRO.getDataType(String key)
Return DataType for key. |
DataType |
Config.getDataType(String key,
DataType def)
Return a DataType elements or null for key, or the default value if not available. |
DataType |
ConfigRO.getDataType(String key,
DataType def)
Return a DataType elements or null for key, or the default value if not available. |
DataType[] |
Config.getDataTypeArray(String key)
Returns an array of DataType objects which can be null. |
DataType[] |
ConfigRO.getDataTypeArray(String key)
Returns an array of DataType objects which can be null. |
DataType[] |
Config.getDataTypeArray(String key,
DataType... v)
Returns the array of DataType objects for the given key or if not available the given array. |
DataType[] |
ConfigRO.getDataTypeArray(String key,
DataType... v)
Returns the array of DataType objects for the given key or if not available the given array. |
Methods in org.knime.core.node.config with parameters of type DataType | |
---|---|
void |
Config.addDataType(String key,
DataType type)
Adds this DataType object value to the Config by the given key. |
void |
ConfigWO.addDataType(String key,
DataType type)
Adds this DataType object value to the Config by the given key. |
void |
Config.addDataTypeArray(String key,
DataType... values)
Adds an array of DataType objects to this Config. |
void |
ConfigWO.addDataTypeArray(String key,
DataType... values)
Adds an array of DataType objects to this Config. |
DataType |
Config.getDataType(String key,
DataType def)
Return a DataType elements or null for key, or the default value if not available. |
DataType |
ConfigRO.getDataType(String key,
DataType def)
Return a DataType elements or null for key, or the default value if not available. |
DataType[] |
Config.getDataTypeArray(String key,
DataType... v)
Returns the array of DataType objects for the given key or if not available the given array. |
DataType[] |
ConfigRO.getDataTypeArray(String key,
DataType... v)
Returns the array of DataType objects for the given key or if not available the given array. |
Uses of DataType in org.knime.core.node.tableview |
---|
Methods in org.knime.core.node.tableview that return types with arguments of type DataType | |
---|---|
Map<DataType,String[]> |
TableContentView.getTypeRendererMap()
Creates a new map containing DataType<->available renderer identifiers. |
Methods in org.knime.core.node.tableview with parameters of type DataType | |
---|---|
void |
TableContentView.changeRenderer(DataType type,
String ident)
Changes the renderer in all columns whose type is equal to type . |
Uses of DataType in org.knime.core.node.util |
---|
Methods in org.knime.core.node.util that return DataType | |
---|---|
DataType |
ColumnFilterPanel.getType(String name)
Returns the data type for the given cell retrieving it from the initial DataTableSpec . |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |