Package | Description |
---|---|
org.pentaho.di.compatibility |
Contains all classes that make up the possible Value types: ValueString, ValueNumber, ..., the interface and the Value class itself.
|
org.pentaho.di.core.row |
Modifier and Type | Method and Description |
---|---|
Row |
Row.Clone()
Returns an exact copy of this row.
|
static Row |
Row.getRow(byte[] data,
Row metadata) |
Modifier and Type | Method and Description |
---|---|
void |
Row.addRow(Row r)
Add all the values of row r to the Row.
|
int |
Row.compare(Row r)
Compare 2 complete rows of values with each other.
|
int |
Row.compare(Row r,
boolean caseInsensitive)
Compare 2 complete rows of values with each other
|
int |
Row.compare(Row r,
int[] fieldnrs,
boolean[] ascending)
Compare 2 rows with each other using certain values in the rows and also considering an ascending clause.
|
int |
Row.compare(Row r,
int[] fieldnrs,
boolean[] ascending,
boolean[] caseInsensitive) |
int |
Row.compare(Row r,
int[] fieldnrs1,
int[] fieldnrs2,
boolean[] ascending,
boolean[] caseInsensitive)
Compare 2 rows with each other using certain values in the rows and also considering an ascending clause.
|
int |
Row.compare(Row r,
int fieldnr,
boolean sort_desc)
Compare 2 rows with each other using one value in the rows and also considering an ascending clause.
|
int |
Row.compareTo(Row obj) |
static byte[] |
Row.extractData(Row row) |
static Row |
Row.getRow(byte[] data,
Row metadata) |
void |
Row.mergeData(Row r)
Merge the data of row r to this Row.
|
void |
Row.mergeRow(Row r)
Merge the values of row r to this Row.
|
Modifier and Type | Method and Description |
---|---|
static void |
Row.sortRows(List<Row> rows,
int[] fieldNrs,
boolean[] ascDesc) |
Constructor and Description |
---|
Row(DataInputStream dis,
int size,
Row meta)
Read a number of Values without meta-data into a row.
|
Row(DataInputStream dis,
Row meta)
Read a number of Values without meta-data into a row.
|
Row(Row r)
Creates a new row as a duplicate of the given row.
|
Modifier and Type | Method and Description |
---|---|
static Row |
RowMeta.createOriginalRow(RowMetaInterface rowMeta,
Object[] rowData) |