Package | Description |
---|---|
org.knime.base.data.append.column | |
org.knime.base.data.append.row | |
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.filter.row |
Contains row filter for
DataTable objects which uses
the FilterRowGenerator interface to dynamically ask for included or
excluded rows during itertation. |
org.knime.base.data.join |
Implementation of a DataTable that joins to underlying tables based on their
row key (like a Database join).
|
org.knime.base.data.nominal |
Utility package for retrieving nominal values from a DataTable.
|
org.knime.base.data.normalize |
This package contains the utility classes for normalization of DataRows.
|
org.knime.base.data.replace | |
org.knime.base.data.sort | |
org.knime.base.data.statistics |
Statistics3Table computes statistics for tables,
also offers helper methods to create BufferedDataTables from that.. |
org.knime.base.node.io.arffreader |
Contains the implementation of a node which reads ARFF files.
|
org.knime.base.node.io.filereader |
Contains a node implementation that reads in data from an ASCII file.
|
org.knime.base.node.io.fixedwidthfr | |
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.sota.logic |
Contains the logic classes of SOTA.
|
org.knime.base.node.mine.subgroupminer.freqitemset |
This package contains the necessary data structures for the subgroup mining.
|
org.knime.base.node.parallel.appender | |
org.knime.base.node.preproc.filter.row |
Contains a node filtering out rows from an input data table,
including only those rows into the output/result table that match a certain
criteria.
|
org.knime.base.node.preproc.missingval |
Implemenation of the node that treats missing values.
|
org.knime.base.node.preproc.pmml.missingval |
Package containing base and helper classes for missing value replacement.
|
org.knime.base.node.util | |
org.knime.core.data | |
org.knime.core.data.append | |
org.knime.core.data.container |
Implementation of a
DataContainer . |
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.node.port.database | |
org.knime.core.node.port.database.reader |
Modifier and Type | Class and Description |
---|---|
class |
AppendedColumnRowIterator
The Iterator implementation for an
AppendedColumnTable . |
Modifier and Type | Method and Description |
---|---|
(package private) RowIterator |
AppendedColumnTable.getBaseIterator()
Get new iterator over the underlying table.
|
RowIterator |
AppendedColumnTable.iterator()
Returns a row iterator which returns each row one-by-one from the table.
|
Modifier and Type | Class and Description |
---|---|
class |
AppendedRowsIterator
Deprecated.
|
(package private) static class |
AppendedRowsRowInput.RowInputIterator
Deprecated.
Iterator on
RowInput . |
Modifier and Type | Method and Description |
---|---|
RowIterator |
AppendedRowsTable.iterator()
Deprecated.
Returns a row iterator which returns each row one-by-one from the table.
|
Modifier and Type | Method and Description |
---|---|
Pair<RowIterator,DataTableSpec> |
AppendedRowsIterator.PairSupplier.get()
Deprecated.
|
Constructor and Description |
---|
PairSupplier(Pair<RowIterator,DataTableSpec> pair)
Deprecated.
|
Modifier and Type | Class and Description |
---|---|
(package private) class |
CloseableFilterColumnRowIterator
Filter column row iterator needed to wrap the filter column's original row
iterator.
|
(package private) class |
FilterColumnRowIterator
Filter column row iterator needed to wrap the filter column's original row
iterator.
|
Modifier and Type | Method and Description |
---|---|
RowIterator |
FilterColumnTable.iterator()
Returns a row iterator which returns each row one-by-one from the table.
|
Constructor and Description |
---|
FilterColumnRowIterator(RowIterator it,
int[] columns)
Creates a new filter iterator using the original row iterator and an
array of column indices.
|
Modifier and Type | Class and Description |
---|---|
(package private) class |
FilterRowIterator
This class wraps the
RowIterator which
includes only DataRow s which satify the
FilterRowGenerator criteria. |
Modifier and Type | Method and Description |
---|---|
RowIterator |
FilterRowTable.iterator()
Returns a row iterator which returns each row one-by-one from the table.
|
Constructor and Description |
---|
FilterRowIterator(RowIterator it,
FilterRowGenerator gen)
Creates a new filter row iterator wrapping a row iterator and using the
filter row generator for checking each row.
|
Modifier and Type | Class and Description |
---|---|
(package private) class |
InMemoryIterator
This iterator joins two tables (given by a
JoinedTable ) in memory and is therfore
magnituded faster than the standard joiner. |
(package private) class |
JoinedTableRowIterator
What is worth to notice about the order: Ideally, the order in both tables is
the same.
|
Modifier and Type | Method and Description |
---|---|
RowIterator |
JoinedTable.iterator()
Deprecated.
Returns a row iterator which returns each row one-by-one from the table.
|
Modifier and Type | Method and Description |
---|---|
RowIterator |
NominalTable.iterator() |
Modifier and Type | Class and Description |
---|---|
class |
AffineTransRowIterator
RowIterator that wraps another iterator and performs an affine
transformation, i.e.
|
(package private) static class |
AffineTransRowIterator.RowInputIterator
Iterator on
RowInput . |
Modifier and Type | Method and Description |
---|---|
RowIterator |
AffineTransTable.iterator()
Returns a row iterator which returns each row one-by-one from the table.
|
Modifier and Type | Class and Description |
---|---|
class |
ReplacedColumnsRowIterator |
Modifier and Type | Method and Description |
---|---|
RowIterator |
ReplacedColumnsTable.iterator()
Returns a row iterator which returns each row one-by-one from the table.
|
Constructor and Description |
---|
ReplacedColumnsRowIterator(RowIterator it,
ReplacedCellsFactory fac,
DataType[] validateTypes,
int[] columns)
Creates a new replaced column iterator.
|
Modifier and Type | Method and Description |
---|---|
RowIterator |
SortedTable.iterator()
Returns a row iterator which returns each row one-by-one from the table.
|
Modifier and Type | Method and Description |
---|---|
RowIterator |
StatisticsTable.iterator()
Deprecated.
Returns the row iterator of the original data table.
|
Modifier and Type | Class and Description |
---|---|
class |
ARFFRowIterator |
Modifier and Type | Method and Description |
---|---|
RowIterator |
ARFFTable.iterator()
Returns a row iterator which returns each row one-by-one from the table.
|
Modifier and Type | Class and Description |
---|---|
(package private) class |
FileReaderPreviewRowIterator
The iterator for the
FileReaderPreviewTable . |
(package private) class |
FileRowIterator
Row iterator for the
FileTable . |
Modifier and Type | Method and Description |
---|---|
RowIterator |
FileReaderPreviewTable.iterator()
Returns a row iterator which returns each row one-by-one from the table.
|
Modifier and Type | Class and Description |
---|---|
class |
FixedWidthPreviewRowIterator |
class |
FixedWidthRowIterator |
Modifier and Type | Class and Description |
---|---|
class |
BasisFunctionIterator
Iterator over all
BasisFunctionLearnerRow s within the
model. |
(package private) class |
BasisFunctionPredictorRowIterator
Class wraps a row iterator in order to exents the given
DataRow elements by on cell (resp. |
Constructor and Description |
---|
BasisFunctionPredictorRowIterator(RowIterator rowIt,
Map<RowKey,DataCell> map)
Creates a new row iterator used for the basisfunction predictor node
which extends the input rows by a new, additional class label column.
|
Modifier and Type | Method and Description |
---|---|
RowIterator |
FuzzyHierarchyFilterRowContainer.iterator()
Returns a row iterator which returns each row one-by-one from the table.
|
Modifier and Type | Method and Description |
---|---|
RowIterator |
FrequentItemSetTable.iterator()
Deprecated.
Returns a row iterator which returns each row one-by-one from the table.
|
Modifier and Type | Method and Description |
---|---|
RowIterator |
CombinedTable.iterator()
Returns a row iterator which returns each row one-by-one from the table.
|
Modifier and Type | Class and Description |
---|---|
class |
RowFilterIterator
Row iterator of the row filter table.
|
Modifier and Type | Method and Description |
---|---|
RowIterator |
RowFilterTable.iterator()
Returns a row iterator which returns each row one-by-one from the table.
|
Modifier and Type | Class and Description |
---|---|
(package private) class |
MissingValueHandling2TableIterator
Deprecated.
|
(package private) class |
MissingValueHandling3TableIterator
Deprecated.
See new Missing node that incorporates a PMML outport in package
org.knime.base.node.preproc.pmml.missingval
|
Modifier and Type | Method and Description |
---|---|
(package private) RowIterator |
MissingValueHandling3Table.getInternalIterator()
Deprecated.
Get RowIterator of underlying table.
|
(package private) RowIterator |
MissingValueHandling2Table.getInternalIterator()
Deprecated.
Get RowIterator of underlying table.
|
RowIterator |
MissingValueHandling3Table.iterator()
Deprecated.
Returns a row iterator which returns each row one-by-one from the table.
|
RowIterator |
MissingValueHandling2Table.iterator()
Deprecated.
Returns a row iterator which returns each row one-by-one from the table.
|
Modifier and Type | Class and Description |
---|---|
class |
WindowedDataTableIterator
Iterator over a data table that provides windows over the individual columns.
|
Modifier and Type | Method and Description |
---|---|
RowIterator |
MissingCellReplacingDataTable.iterator()
Returns a row iterator which returns each row one-by-one from the table.
|
Modifier and Type | Method and Description |
---|---|
RowIterator |
DefaultDataArray.iterator()
Returns a row iterator which returns each row one-by-one from the table.
|
RowIterator |
DataArray.iterator() |
Modifier and Type | Class and Description |
---|---|
class |
AutoconvertRowIterator
Decorator for a row iterator that transparently converts a certain column using a
DataCellTypeConverter . |
Modifier and Type | Method and Description |
---|---|
RowIterator |
DataTable.iterator()
Returns a row iterator which returns each row one-by-one from the table.
|
Modifier and Type | Method and Description |
---|---|
RowIterator |
AppendedRowsTable.iterator()
Returns a row iterator which returns each row one-by-one from the table.
|
Modifier and Type | Method and Description |
---|---|
Pair<RowIterator,DataTableSpec> |
AppendedRowsIterator.PairSupplier.get()
Deprecated.
|
Constructor and Description |
---|
PairSupplier(Pair<RowIterator,DataTableSpec> pair)
Deprecated.
|
Modifier and Type | Class and Description |
---|---|
(package private) static class |
Buffer.FromFileIterator
Super class of all file iterators.
|
(package private) class |
BufferFromFileIteratorVersion1x
(Obsolete) File iterator to read files written by a
Buffer . |
(package private) class |
BufferFromFileIteratorVersion20
File iterator to read stream written by a
Buffer . |
class |
CloseableRowIterator
A
row iterator that can be closed in order to save
resources. |
(package private) class |
JoinTableIterator
Internal iterator class that concatenates two rows.
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultRowIterator
Specific implementation for a
RowIterator that iterates over a
generic DataTable . |
Modifier and Type | Method and Description |
---|---|
RowIterator |
DefaultTable.iterator()
Deprecated.
Returns a row iterator which returns each row one-by-one from the table.
|
Modifier and Type | Method and Description |
---|---|
RowIterator |
DatabaseReaderConnection.RowIteratorConnection.iterator() |
Modifier and Type | Class and Description |
---|---|
class |
DBRowIteratorImpl
RowIterator via a database ResultSet.
|
Modifier and Type | Method and Description |
---|---|
protected RowIterator |
DBReaderImpl.createDBRowIterator(DataTableSpec spec,
DatabaseConnectionSettings conn,
BinaryObjectCellFactory blobFactory,
boolean useDbRowId,
ResultSet result,
long startCounter) |
protected RowIterator |
DBReaderImpl.createDBRowIterator(DataTableSpec spec,
DatabaseQueryConnectionSettings conn,
BinaryObjectCellFactory blobFactory,
boolean useDbRowId,
ResultSet result) |
RowIterator |
RowIteratorConnection.iterator() |
RowIterator |
DBRowIterator.iterator() |
Constructor and Description |
---|
RowIteratorConnection(Connection conn,
Statement stmt,
DataTableSpec spec,
RowIterator iterator) |
KNIME GmbH, Konstanz, Germany
You may not modify, publish, transmit, transfer or sell, reproduce, create derivative works from, distribute, perform, display, or in any way exploit any of the content, in whole or in part, except as otherwise expressly permitted in writing by the copyright owner or as specified in the license file distributed with this product.