Package org.pentaho.di.core.row
Class RowBuffer
- java.lang.Object
-
- org.pentaho.di.core.row.RowBuffer
-
public class RowBuffer extends Object
This class contains a list of data rows as well as the RowMetaInterface to describe it.- Author:
- matt
-
-
Constructor Summary
Constructors Constructor Description RowBuffer(RowMetaInterface rowMeta)
RowBuffer(RowMetaInterface rowMeta, List<Object[]> buffer)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Object[]>
getBuffer()
RowMetaInterface
getRowMeta()
void
setBuffer(List<Object[]> buffer)
void
setRowMeta(RowMetaInterface rowMeta)
-
-
-
Constructor Detail
-
RowBuffer
public RowBuffer(RowMetaInterface rowMeta, List<Object[]> buffer)
- Parameters:
rowMeta
-buffer
-
-
RowBuffer
public RowBuffer(RowMetaInterface rowMeta)
- Parameters:
rowMeta
-
-
-
Method Detail
-
getRowMeta
public RowMetaInterface getRowMeta()
- Returns:
- the rowMeta
-
setRowMeta
public void setRowMeta(RowMetaInterface rowMeta)
- Parameters:
rowMeta
- the rowMeta to set
-
-