|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of RowSet in org.pentaho.di.core |
---|
Classes in org.pentaho.di.core that implement RowSet | |
---|---|
class |
BlockingBatchingRowSet
Contains a buffer of rows. |
class |
BlockingListeningRowSet
Contains a buffer of rows. |
class |
BlockingRowSet
Contains a buffer of rows. |
class |
QueueRowSet
A simplified rowset for steps for single threaded execution. |
class |
SingleRowRowSet
A simplified rowset for steps that always only need to only have a single row on input... |
Methods in org.pentaho.di.core with parameters of type RowSet | |
---|---|
void |
RowSetListener.isEmpty(RowSet rowSet)
|
Uses of RowSet in org.pentaho.di.trans |
---|
Methods in org.pentaho.di.trans that return RowSet | |
---|---|
RowSet |
Trans.findRowSet(String rowsetname)
Finds the RowSet with the specified name. |
RowSet |
Trans.findRowSet(String from,
int fromcopy,
String to,
int tocopy)
Finds the RowSet between two steps (or copies of steps). |
RowSet |
RowProducer.getRowSet()
|
Methods in org.pentaho.di.trans that return types with arguments of type RowSet | |
---|---|
List<RowSet> |
Trans.getRowsets()
Gets the rowsets for the transformation. |
Methods in org.pentaho.di.trans with parameters of type RowSet | |
---|---|
void |
RowProducer.setRowSet(RowSet rowSet)
|
Constructors in org.pentaho.di.trans with parameters of type RowSet | |
---|---|
RowProducer(StepInterface stepInterface,
RowSet rowSet)
|
Uses of RowSet in org.pentaho.di.trans.step |
---|
Methods in org.pentaho.di.trans.step that return RowSet | |
---|---|
RowSet |
BaseStep.findInputRowSet(String sourceStep)
Find input row set. |
RowSet |
BaseStep.findInputRowSet(String from,
int fromcopy,
String to,
int tocopy)
Find input row set. |
RowSet |
BaseStep.findOutputRowSet(String targetStep)
Find output row set. |
RowSet |
BaseStep.findOutputRowSet(String from,
int fromcopy,
String to,
int tocopy)
Find an output rowset in a running transformation. |
Methods in org.pentaho.di.trans.step that return types with arguments of type RowSet | |
---|---|
List<RowSet> |
StepInterface.getInputRowSets()
|
List<RowSet> |
BaseStep.getInputRowSets()
|
List<RowSet> |
StepInterface.getOutputRowSets()
|
List<RowSet> |
BaseStep.getOutputRowSets()
|
Methods in org.pentaho.di.trans.step with parameters of type RowSet | |
---|---|
Object[] |
BaseStep.getRowFrom(RowSet rowSet)
Gets the row from. |
void |
BaseStep.putRowTo(RowMetaInterface rowMeta,
Object[] row,
RowSet rowSet)
putRowTo is used to put a row in a certain specific RowSet. |
Method parameters in org.pentaho.di.trans.step with type arguments of type RowSet | |
---|---|
void |
BaseStep.setInputRowSets(List<RowSet> inputRowSets)
|
void |
BaseStep.setOutputRowSets(List<RowSet> outputRowSets)
|
Uses of RowSet in org.pentaho.di.trans.steps.append |
---|
Fields in org.pentaho.di.trans.steps.append declared as RowSet | |
---|---|
RowSet |
AppendData.headRowSet
|
RowSet |
AppendData.tailRowSet
|
Uses of RowSet in org.pentaho.di.trans.steps.filterrows |
---|
Fields in org.pentaho.di.trans.steps.filterrows declared as RowSet | |
---|---|
RowSet |
FilterRowsData.falseRowSet
|
RowSet |
FilterRowsData.trueRowSet
|
Uses of RowSet in org.pentaho.di.trans.steps.javafilter |
---|
Fields in org.pentaho.di.trans.steps.javafilter declared as RowSet | |
---|---|
RowSet |
JavaFilterData.falseRowSet
|
RowSet |
JavaFilterData.trueRowSet
|
Uses of RowSet in org.pentaho.di.trans.steps.joinrows |
---|
Fields in org.pentaho.di.trans.steps.joinrows declared as RowSet | |
---|---|
RowSet[] |
JoinRowsData.rs
|
Uses of RowSet in org.pentaho.di.trans.steps.mergejoin |
---|
Fields in org.pentaho.di.trans.steps.mergejoin declared as RowSet | |
---|---|
RowSet |
MergeJoinData.oneRowSet
|
RowSet |
MergeJoinData.twoRowSet
|
Uses of RowSet in org.pentaho.di.trans.steps.mergerows |
---|
Fields in org.pentaho.di.trans.steps.mergerows declared as RowSet | |
---|---|
RowSet |
MergeRowsData.oneRowSet
|
RowSet |
MergeRowsData.twoRowSet
|
Uses of RowSet in org.pentaho.di.trans.steps.multimerge |
---|
Fields in org.pentaho.di.trans.steps.multimerge declared as RowSet | |
---|---|
RowSet[] |
MultiMergeJoinData.rowSets
|
Uses of RowSet in org.pentaho.di.trans.steps.prioritizestreams |
---|
Fields in org.pentaho.di.trans.steps.prioritizestreams declared as RowSet | |
---|---|
RowSet |
PrioritizeStreamsData.currentRowSet
|
RowSet[] |
PrioritizeStreamsData.rowSets
|
Uses of RowSet in org.pentaho.di.trans.steps.script |
---|
Methods in org.pentaho.di.trans.steps.script that return types with arguments of type RowSet | |
---|---|
List<RowSet> |
ScriptInterface.getInputRowSets()
|
List<RowSet> |
ScriptDummy.getInputRowSets()
|
List<RowSet> |
ScriptInterface.getOutputRowSets()
|
List<RowSet> |
ScriptDummy.getOutputRowSets()
|
Uses of RowSet in org.pentaho.di.trans.steps.scriptvalues_mod |
---|
Methods in org.pentaho.di.trans.steps.scriptvalues_mod that return types with arguments of type RowSet | |
---|---|
List<RowSet> |
ScriptValuesModDummy.getInputRowSets()
|
List<RowSet> |
ScriptValuesModDummy.getOutputRowSets()
|
Uses of RowSet in org.pentaho.di.trans.steps.sortedmerge |
---|
Methods in org.pentaho.di.trans.steps.sortedmerge that return RowSet | |
---|---|
RowSet |
RowSetRow.getRowSet()
|
Methods in org.pentaho.di.trans.steps.sortedmerge with parameters of type RowSet | |
---|---|
void |
RowSetRow.setRowSet(RowSet rowSet)
|
Constructors in org.pentaho.di.trans.steps.sortedmerge with parameters of type RowSet | |
---|---|
RowSetRow(RowSet rowSet,
RowMetaInterface rowMeta,
Object[] rowData)
|
Uses of RowSet in org.pentaho.di.trans.steps.switchcase |
---|
Fields in org.pentaho.di.trans.steps.switchcase declared as RowSet | |
---|---|
RowSet |
SwitchCaseData.defaultRowSet
|
RowSet |
SwitchCaseData.nullRowSet
|
Uses of RowSet in org.pentaho.di.trans.steps.tableinput |
---|
Fields in org.pentaho.di.trans.steps.tableinput declared as RowSet | |
---|---|
RowSet |
TableInputData.rowSet
|
Uses of RowSet in org.pentaho.di.trans.steps.textfileinput |
---|
Fields in org.pentaho.di.trans.steps.textfileinput declared as RowSet | |
---|---|
RowSet |
TextFileInputData.rowSet
|
Uses of RowSet in org.pentaho.di.trans.steps.userdefinedjavaclass |
---|
Methods in org.pentaho.di.trans.steps.userdefinedjavaclass that return RowSet | |
---|---|
RowSet |
TransformClassBase.findInfoRowSet(String tag)
|
RowSet |
UserDefinedJavaClass.findInputRowSet(String sourceStep)
|
RowSet |
TransformClassBase.findInputRowSet(String sourceStep)
|
RowSet |
UserDefinedJavaClass.findInputRowSet(String from,
int fromcopy,
String to,
int tocopy)
|
RowSet |
TransformClassBase.findInputRowSet(String from,
int fromcopy,
String to,
int tocopy)
|
RowSet |
UserDefinedJavaClass.findInputRowSetImpl(String sourceStep)
|
RowSet |
UserDefinedJavaClass.findInputRowSetImpl(String from,
int fromcopy,
String to,
int tocopy)
|
RowSet |
UserDefinedJavaClass.findOutputRowSet(String targetStep)
|
RowSet |
TransformClassBase.findOutputRowSet(String targetStep)
|
RowSet |
UserDefinedJavaClass.findOutputRowSet(String from,
int fromcopy,
String to,
int tocopy)
|
RowSet |
TransformClassBase.findOutputRowSet(String from,
int fromcopy,
String to,
int tocopy)
|
RowSet |
UserDefinedJavaClass.findOutputRowSetImpl(String targetStep)
|
RowSet |
UserDefinedJavaClass.findOutputRowSetImpl(String from,
int fromcopy,
String to,
int tocopy)
|
RowSet |
TransformClassBase.findTargetRowSet(String tag)
|
Methods in org.pentaho.di.trans.steps.userdefinedjavaclass that return types with arguments of type RowSet | |
---|---|
List<RowSet> |
UserDefinedJavaClass.getInputRowSets()
|
List<RowSet> |
TransformClassBase.getInputRowSets()
|
List<RowSet> |
UserDefinedJavaClass.getInputRowSetsImpl()
|
List<RowSet> |
UserDefinedJavaClass.getOutputRowSets()
|
List<RowSet> |
TransformClassBase.getOutputRowSets()
|
List<RowSet> |
UserDefinedJavaClass.getOutputRowSetsImpl()
|
Methods in org.pentaho.di.trans.steps.userdefinedjavaclass with parameters of type RowSet | |
---|---|
Object[] |
UserDefinedJavaClass.getRowFrom(RowSet rowSet)
|
Object[] |
TransformClassBase.getRowFrom(RowSet rowSet)
|
Object[] |
UserDefinedJavaClass.getRowFromImpl(RowSet rowSet)
|
void |
UserDefinedJavaClass.putRowTo(RowMetaInterface rowMeta,
Object[] row,
RowSet rowSet)
|
void |
TransformClassBase.putRowTo(RowMetaInterface rowMeta,
Object[] row,
RowSet rowSet)
|
void |
UserDefinedJavaClass.putRowToImpl(RowMetaInterface rowMeta,
Object[] row,
RowSet rowSet)
|
Method parameters in org.pentaho.di.trans.steps.userdefinedjavaclass with type arguments of type RowSet | |
---|---|
void |
UserDefinedJavaClass.setInputRowSets(List<RowSet> inputRowSets)
|
void |
TransformClassBase.setInputRowSets(List<RowSet> inputRowSets)
|
void |
UserDefinedJavaClass.setInputRowSetsImpl(List<RowSet> inputRowSets)
|
void |
UserDefinedJavaClass.setOutputRowSets(List<RowSet> outputRowSets)
|
void |
TransformClassBase.setOutputRowSets(List<RowSet> outputRowSets)
|
void |
UserDefinedJavaClass.setOutputRowSetsImpl(List<RowSet> outputRowSets)
|
Uses of RowSet in org.pentaho.di.trans.steps.xmljoin |
---|
Fields in org.pentaho.di.trans.steps.xmljoin declared as RowSet | |
---|---|
RowSet |
XMLJoinData.SourceRowSet
|
RowSet |
XMLJoinData.TargetRowSet
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |