|
||||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES |
DataTable
) abstract
classes in the data package.DataCell
just store their
values in members of the appropriate java type (like
DoubleCell
has a private
member of Java type double, etc.).DataTable
is deprecated and shouldn't be used.
See:
Description
Class Summary | |
---|---|
ComplexNumberCell | A data cell implementation holding a complex number value by storing this value in two double member variables. |
DefaultCellIterator | Default implementation of an iterator over the DataCell s of a
DataRow. |
DefaultRow | Default row for DataCell s which keeps a row identifier
and an array of DataCell objects. |
DefaultRowIterator | Specific implementation for a RowIterator that iterates over a
generic DataTable . |
DefaultTable | Deprecated. DefaultTable will hold the entire data in main memory and should therefore not be used anymore. |
DoubleCell | A data cell implementation holding a double value by storing this value in a
private double member. |
FuzzyIntervalCell | A data cell implementation holding a fuzzy interval as value by storing this
value in four private double members, two for the min/max
values of the support, and two for the min/max values of the core of the
fuzzy interval. |
FuzzyNumberCell | A data cell implementation holding a Fuzzy number by storing this value in
three private double members, that is one for the core and two
for the min/max of the support. |
IntCell | A data cell implementation holding an integer value by storing this value in
a private int member. |
IntervalCell | A DataCell implementation holding a numeric interval as value
by storing left and right bound. |
JoinedRow | Row that concatenates two given rows. |
LongCell | |
StringCell | A data cell implementation holding a string value by storing this value in a
private String member. |
TimestampCell | Deprecated. Date and time in KNIME is represented by
DateAndTimeValue and
DateAndTimeCell . |
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.
Rather use the DataContainer
(or in the NodeModel
's execute method, the
BufferedDataTable
.
|
||||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES |