|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of KettleStepException in org.pentaho.di.lineage |
---|
Methods in org.pentaho.di.lineage that throw KettleStepException | |
---|---|
void |
TransDataLineage.calculateLineage()
Using the transformation, we will calculate the data lineage for each field in each step. |
Uses of KettleStepException in org.pentaho.di.trans |
---|
Methods in org.pentaho.di.trans that throw KettleStepException | |
---|---|
void |
TransMeta.analyseImpact(List<DatabaseImpact> impact,
ProgressMonitorListener monitor)
Determines the impact of the different steps in a transformation on databases, tables and field. |
StepMeta |
TransMeta.findMappingInputStep(String stepname)
Finds the mapping input step with the specified name. |
StepMeta |
TransMeta.findMappingOutputStep(String stepname)
Finds the mapping output step with the specified name. |
RowMetaInterface |
TransMeta.getPrevInfoFields(StepMeta stepMeta)
Find the informational fields coming from an informational step into the step specified. |
RowMetaInterface |
TransMeta.getPrevInfoFields(String stepname)
Find the informational fields coming from an informational step into the step specified. |
RowMetaInterface |
TransMeta.getPrevStepFields(StepMeta stepMeta)
Find the fields that are entering a certain step. |
RowMetaInterface |
TransMeta.getPrevStepFields(StepMeta stepMeta,
ProgressMonitorListener monitor)
Find the fields that are entering a certain step. |
RowMetaInterface |
TransMeta.getPrevStepFields(String stepname)
Find the fields that are entering a step with a certain name. |
List<SQLStatement> |
TransMeta.getSQLStatements()
Builds a list of all the SQL statements that this transformation needs in order to work properly. |
List<SQLStatement> |
TransMeta.getSQLStatements(ProgressMonitorListener monitor)
Builds a list of all the SQL statements that this transformation needs in order to work properly. |
String |
TransMeta.getSQLStatementsString()
Get the SQL statements (needed to run this transformation) as a single String. |
RowMetaInterface |
TransMeta.getStepFields(StepMeta stepMeta)
Returns the fields that are emitted by a certain step. |
RowMetaInterface |
TransMeta.getStepFields(StepMeta[] stepMeta)
Gets the fields for each of the specified steps and merges them into a single set |
RowMetaInterface |
TransMeta.getStepFields(StepMeta stepMeta,
ProgressMonitorListener monitor)
Returns the fields that are emitted by a certain step. |
RowMetaInterface |
TransMeta.getStepFields(StepMeta stepMeta,
StepMeta targetStep,
ProgressMonitorListener monitor)
Returns the fields that are emitted by a certain step. |
RowMetaInterface |
TransMeta.getStepFields(String stepname)
Returns the fields that are emitted by a certain step name. |
RowMetaInterface |
TransMeta.getThisStepFields(StepMeta stepMeta,
StepMeta nextStep,
RowMetaInterface row)
Returns the fields that are emitted by a step. |
RowMetaInterface |
TransMeta.getThisStepFields(StepMeta stepMeta,
StepMeta nextStep,
RowMetaInterface row,
ProgressMonitorListener monitor)
Returns the fields that are emitted by a step. |
RowMetaInterface |
TransMeta.getThisStepFields(String stepname,
RowMetaInterface row)
Return the fields that are emitted by a step with a certain name. |
Uses of KettleStepException in org.pentaho.di.trans.step |
---|
Methods in org.pentaho.di.trans.step that throw KettleStepException | |
---|---|
void |
StepMetaInterface.analyseImpact(List<DatabaseImpact> impact,
TransMeta transMeta,
StepMeta stepMeta,
RowMetaInterface prev,
String[] input,
String[] output,
RowMetaInterface info)
Each step must be able to report on the impact it has on a database, table field, etc. |
void |
BaseStepMeta.analyseImpact(List<DatabaseImpact> impact,
TransMeta transMeta,
StepMeta stepMeta,
RowMetaInterface prev,
String[] input,
String[] output,
RowMetaInterface info)
Each step must be able to report on the impact it has on a database, table field, etc. |
void |
RowAdapter.errorRowWrittenEvent(RowMetaInterface rowMeta,
Object[] row)
Empty method implementing the RowListener.errorRowWrittenEvent interface method |
void |
RowListener.errorRowWrittenEvent(RowMetaInterface rowMeta,
Object[] row)
This method is called when the error handling of a row is writing a row to the error stream. |
RowSet |
BaseStep.findInputRowSet(String sourceStep)
Find input row set. |
RowSet |
BaseStep.findOutputRowSet(String targetStep)
Find output row set. |
void |
StepMetaInterface.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
Get the fields that are emitted by this step |
void |
BaseStepMeta.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
Gets the fields. |
Object[] |
BaseStep.getRowFrom(RowSet rowSet)
Gets the row from. |
SQLStatement |
StepMetaInterface.getSQLStatements(TransMeta transMeta,
StepMeta stepMeta,
RowMetaInterface prev)
Standard method to return an SQLStatement object with SQL statements that the step needs in order to work correctly. |
SQLStatement |
BaseStepMeta.getSQLStatements(TransMeta transMeta,
StepMeta stepMeta,
RowMetaInterface prev)
Standard method to return one or more SQLStatement objects that the step needs in order to work correctly. |
void |
StepInterface.initBeforeStart()
This method is executed by Trans right before the threads start and right after initialization. !!! A plugin implementing this method should make sure to also call super.initBeforeStart(); !!! |
void |
BaseStep.initBeforeStart()
This method is executed by Trans right before the threads start and right after initialization. |
void |
BaseStep.putError(RowMetaInterface rowMeta,
Object[] row,
long nrErrors,
String errorDescriptions,
String fieldNames,
String errorCodes)
Put error. |
void |
BaseStep.putRow(RowMetaInterface rowMeta,
Object[] row)
putRow is used to copy a row, to the alternate rowset(s) This should get priority over everything else! (synchronized) If distribute is true, a row is copied only once to the output rowsets, otherwise copies are sent to each rowset! |
void |
BaseStep.putRowTo(RowMetaInterface rowMeta,
Object[] row,
RowSet rowSet)
putRowTo is used to put a row in a certain specific RowSet. |
void |
RowAdapter.rowReadEvent(RowMetaInterface rowMeta,
Object[] row)
Empty method implementing the RowListener.rowReadEvent interface method |
void |
RowListener.rowReadEvent(RowMetaInterface rowMeta,
Object[] row)
This method is called when a row is read from another step |
void |
RowAdapter.rowWrittenEvent(RowMetaInterface rowMeta,
Object[] row)
Empty method implementing the RowListener.rowWrittenEvent interface method |
void |
RowListener.rowWrittenEvent(RowMetaInterface rowMeta,
Object[] row)
This method is called when a row is written to another step (even if there is no next step) |
Uses of KettleStepException in org.pentaho.di.trans.steps.abort |
---|
Methods in org.pentaho.di.trans.steps.abort that throw KettleStepException | |
---|---|
void |
AbortMeta.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.accessinput |
---|
Methods in org.pentaho.di.trans.steps.accessinput that throw KettleStepException | |
---|---|
void |
AccessInputMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.addsequence |
---|
Methods in org.pentaho.di.trans.steps.addsequence that throw KettleStepException | |
---|---|
void |
AddSequenceMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.addxml |
---|
Methods in org.pentaho.di.trans.steps.addxml that throw KettleStepException | |
---|---|
void |
AddXMLMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.aggregaterows |
---|
Methods in org.pentaho.di.trans.steps.aggregaterows that throw KettleStepException | |
---|---|
void |
AggregateRowsMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.analyticquery |
---|
Methods in org.pentaho.di.trans.steps.analyticquery that throw KettleStepException | |
---|---|
void |
AnalyticQuery.clearQueue()
|
void |
AnalyticQueryMeta.getFields(RowMetaInterface r,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
void |
AnalyticQuery.processQueue()
|
void |
AnalyticQuery.processQueueObjectAt(int i)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.append |
---|
Methods in org.pentaho.di.trans.steps.append that throw KettleStepException | |
---|---|
void |
AppendMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.autodoc |
---|
Methods in org.pentaho.di.trans.steps.autodoc that throw KettleStepException | |
---|---|
void |
AutoDocMeta.getFields(RowMetaInterface rowMeta,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.blockingstep |
---|
Methods in org.pentaho.di.trans.steps.blockingstep that throw KettleStepException | |
---|---|
void |
BlockingStepMeta.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.blockuntilstepsfinish |
---|
Methods in org.pentaho.di.trans.steps.blockuntilstepsfinish that throw KettleStepException | |
---|---|
void |
BlockUntilStepsFinishMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.calculator |
---|
Methods in org.pentaho.di.trans.steps.calculator that throw KettleStepException | |
---|---|
void |
CalculatorMeta.getFields(RowMetaInterface row,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.checksum |
---|
Methods in org.pentaho.di.trans.steps.checksum that throw KettleStepException | |
---|---|
void |
CheckSumMeta.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.clonerow |
---|
Methods in org.pentaho.di.trans.steps.clonerow that throw KettleStepException | |
---|---|
void |
CloneRowMeta.getFields(RowMetaInterface rowMeta,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.closure |
---|
Methods in org.pentaho.di.trans.steps.closure that throw KettleStepException | |
---|---|
void |
ClosureGeneratorMeta.getFields(RowMetaInterface row,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.columnexists |
---|
Methods in org.pentaho.di.trans.steps.columnexists that throw KettleStepException | |
---|---|
void |
ColumnExistsMeta.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.combinationlookup |
---|
Methods in org.pentaho.di.trans.steps.combinationlookup that throw KettleStepException | |
---|---|
void |
CombinationLookupMeta.getFields(RowMetaInterface row,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.concatfields |
---|
Methods in org.pentaho.di.trans.steps.concatfields that throw KettleStepException | |
---|---|
void |
ConcatFieldsMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
void |
ConcatFieldsMeta.getFieldsModifyInput(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.constant |
---|
Methods in org.pentaho.di.trans.steps.constant that throw KettleStepException | |
---|---|
void |
ConstantMeta.getFields(RowMetaInterface rowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.creditcardvalidator |
---|
Methods in org.pentaho.di.trans.steps.creditcardvalidator that throw KettleStepException | |
---|---|
void |
CreditCardValidatorMeta.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.csvinput |
---|
Methods in org.pentaho.di.trans.steps.csvinput that throw KettleStepException | |
---|---|
void |
CsvInputMeta.getFields(RowMetaInterface rowMeta,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.cubeinput |
---|
Methods in org.pentaho.di.trans.steps.cubeinput that throw KettleStepException | |
---|---|
void |
CubeInputMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.databasejoin |
---|
Methods in org.pentaho.di.trans.steps.databasejoin that throw KettleStepException | |
---|---|
void |
DatabaseJoinMeta.analyseImpact(List<DatabaseImpact> impact,
TransMeta transMeta,
StepMeta stepMeta,
RowMetaInterface prev,
String[] input,
String[] output,
RowMetaInterface info)
|
void |
DatabaseJoinMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.databaselookup |
---|
Methods in org.pentaho.di.trans.steps.databaselookup that throw KettleStepException | |
---|---|
void |
DatabaseLookupMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.datagrid |
---|
Methods in org.pentaho.di.trans.steps.datagrid that throw KettleStepException | |
---|---|
void |
DataGridMeta.getFields(RowMetaInterface rowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.dbproc |
---|
Methods in org.pentaho.di.trans.steps.dbproc that throw KettleStepException | |
---|---|
void |
DBProcMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.delay |
---|
Methods in org.pentaho.di.trans.steps.delay that throw KettleStepException | |
---|---|
void |
DelayMeta.getFields(RowMetaInterface rowMeta,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.delete |
---|
Methods in org.pentaho.di.trans.steps.delete that throw KettleStepException | |
---|---|
void |
DeleteMeta.analyseImpact(List<DatabaseImpact> impact,
TransMeta transMeta,
StepMeta stepMeta,
RowMetaInterface prev,
String[] input,
String[] output,
RowMetaInterface info)
|
void |
DeleteMeta.getFields(RowMetaInterface rowMeta,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.denormaliser |
---|
Methods in org.pentaho.di.trans.steps.denormaliser that throw KettleStepException | |
---|---|
void |
DenormaliserMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.detectlastrow |
---|
Methods in org.pentaho.di.trans.steps.detectlastrow that throw KettleStepException | |
---|---|
void |
DetectLastRowMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.dimensionlookup |
---|
Methods in org.pentaho.di.trans.steps.dimensionlookup that throw KettleStepException | |
---|---|
void |
DimensionLookupMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.dummytrans |
---|
Methods in org.pentaho.di.trans.steps.dummytrans that throw KettleStepException | |
---|---|
void |
DummyTransMeta.getFields(RowMetaInterface rowMeta,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.dynamicsqlrow |
---|
Methods in org.pentaho.di.trans.steps.dynamicsqlrow that throw KettleStepException | |
---|---|
void |
DynamicSQLRowMeta.analyseImpact(List<DatabaseImpact> impact,
TransMeta transMeta,
StepMeta stepMeta,
RowMetaInterface prev,
String[] input,
String[] output,
RowMetaInterface info)
|
void |
DynamicSQLRowMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.elasticsearchbulk |
---|
Methods in org.pentaho.di.trans.steps.elasticsearchbulk that throw KettleStepException | |
---|---|
void |
ElasticSearchBulkMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.excelinput |
---|
Methods in org.pentaho.di.trans.steps.excelinput that throw KettleStepException | |
---|---|
void |
ExcelInputMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.execprocess |
---|
Methods in org.pentaho.di.trans.steps.execprocess that throw KettleStepException | |
---|---|
void |
ExecProcessMeta.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.execsqlrow |
---|
Methods in org.pentaho.di.trans.steps.execsqlrow that throw KettleStepException | |
---|---|
void |
ExecSQLRowMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.fileexists |
---|
Methods in org.pentaho.di.trans.steps.fileexists that throw KettleStepException | |
---|---|
void |
FileExistsMeta.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.filelocked |
---|
Methods in org.pentaho.di.trans.steps.filelocked that throw KettleStepException | |
---|---|
void |
FileLockedMeta.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.filesfromresult |
---|
Methods in org.pentaho.di.trans.steps.filesfromresult that throw KettleStepException | |
---|---|
void |
FilesFromResultMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.filestoresult |
---|
Methods in org.pentaho.di.trans.steps.filestoresult that throw KettleStepException | |
---|---|
void |
FilesToResultMeta.getFields(RowMetaInterface rowMeta,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.filterrows |
---|
Methods in org.pentaho.di.trans.steps.filterrows that throw KettleStepException | |
---|---|
void |
FilterRowsMeta.getFields(RowMetaInterface rowMeta,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.fixedinput |
---|
Methods in org.pentaho.di.trans.steps.fixedinput that throw KettleStepException | |
---|---|
void |
FixedInputMeta.getFields(RowMetaInterface rowMeta,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.flattener |
---|
Methods in org.pentaho.di.trans.steps.flattener that throw KettleStepException | |
---|---|
void |
FlattenerMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.formula |
---|
Methods in org.pentaho.di.trans.steps.formula that throw KettleStepException | |
---|---|
void |
FormulaMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.fuzzymatch |
---|
Methods in org.pentaho.di.trans.steps.fuzzymatch that throw KettleStepException | |
---|---|
void |
FuzzyMatchMeta.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.getfilenames |
---|
Methods in org.pentaho.di.trans.steps.getfilenames that throw KettleStepException | |
---|---|
void |
GetFileNamesMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.getfilesrowscount |
---|
Methods in org.pentaho.di.trans.steps.getfilesrowscount that throw KettleStepException | |
---|---|
void |
GetFilesRowsCountMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.getpreviousrowfield |
---|
Methods in org.pentaho.di.trans.steps.getpreviousrowfield that throw KettleStepException | |
---|---|
void |
GetPreviousRowFieldMeta.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.getrepositorynames |
---|
Methods in org.pentaho.di.trans.steps.getrepositorynames that throw KettleStepException | |
---|---|
void |
GetRepositoryNamesMeta.getFields(RowMetaInterface row,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.getslavesequence |
---|
Methods in org.pentaho.di.trans.steps.getslavesequence that throw KettleStepException | |
---|---|
void |
GetSlaveSequenceMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.getsubfolders |
---|
Methods in org.pentaho.di.trans.steps.getsubfolders that throw KettleStepException | |
---|---|
void |
GetSubFoldersMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.gettablenames |
---|
Methods in org.pentaho.di.trans.steps.gettablenames that throw KettleStepException | |
---|---|
void |
GetTableNamesMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.getvariable |
---|
Methods in org.pentaho.di.trans.steps.getvariable that throw KettleStepException | |
---|---|
void |
GetVariableMeta.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.getxmldata |
---|
Methods in org.pentaho.di.trans.steps.getxmldata that throw KettleStepException | |
---|---|
void |
GetXMLDataMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.gpbulkloader |
---|
Methods in org.pentaho.di.trans.steps.gpbulkloader that throw KettleStepException | |
---|---|
void |
GPBulkLoaderMeta.analyseImpact(List<DatabaseImpact> impact,
TransMeta transMeta,
StepMeta stepMeta,
RowMetaInterface prev,
String[] input,
String[] output,
RowMetaInterface info)
|
void |
GPBulkLoaderMeta.getFields(RowMetaInterface rowMeta,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
SQLStatement |
GPBulkLoaderMeta.getSQLStatements(TransMeta transMeta,
StepMeta stepMeta,
RowMetaInterface prev)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.http |
---|
Methods in org.pentaho.di.trans.steps.http that throw KettleStepException | |
---|---|
void |
HTTPMeta.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.httppost |
---|
Methods in org.pentaho.di.trans.steps.httppost that throw KettleStepException | |
---|---|
void |
HTTPPOSTMeta.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.injector |
---|
Methods in org.pentaho.di.trans.steps.injector that throw KettleStepException | |
---|---|
void |
InjectorMeta.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.insertupdate |
---|
Methods in org.pentaho.di.trans.steps.insertupdate that throw KettleStepException | |
---|---|
void |
InsertUpdateMeta.analyseImpact(List<DatabaseImpact> impact,
TransMeta transMeta,
StepMeta stepMeta,
RowMetaInterface prev,
String[] input,
String[] output,
RowMetaInterface info)
|
void |
InsertUpdateMeta.getFields(RowMetaInterface rowMeta,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
SQLStatement |
InsertUpdateMeta.getSQLStatements(TransMeta transMeta,
StepMeta stepMeta,
RowMetaInterface prev)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.janino |
---|
Methods in org.pentaho.di.trans.steps.janino that throw KettleStepException | |
---|---|
void |
JaninoMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.joinrows |
---|
Methods in org.pentaho.di.trans.steps.joinrows that throw KettleStepException | |
---|---|
void |
JoinRowsMeta.getFields(RowMetaInterface rowMeta,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.jsoninput |
---|
Methods in org.pentaho.di.trans.steps.jsoninput that throw KettleStepException | |
---|---|
void |
JsonInputMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.jsonoutput |
---|
Methods in org.pentaho.di.trans.steps.jsonoutput that throw KettleStepException | |
---|---|
void |
JsonOutputMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.ldapinput |
---|
Methods in org.pentaho.di.trans.steps.ldapinput that throw KettleStepException | |
---|---|
void |
LDAPInputMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.ldifinput |
---|
Methods in org.pentaho.di.trans.steps.ldifinput that throw KettleStepException | |
---|---|
void |
LDIFInputMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.loadfileinput |
---|
Methods in org.pentaho.di.trans.steps.loadfileinput that throw KettleStepException | |
---|---|
void |
LoadFileInputMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.luciddbbulkloader |
---|
Methods in org.pentaho.di.trans.steps.luciddbbulkloader that throw KettleStepException | |
---|---|
void |
LucidDBBulkLoaderMeta.analyseImpact(List<DatabaseImpact> impact,
TransMeta transMeta,
StepMeta stepMeta,
RowMetaInterface prev,
String[] input,
String[] output,
RowMetaInterface info)
|
void |
LucidDBBulkLoaderMeta.getFields(RowMetaInterface rowMeta,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
SQLStatement |
LucidDBBulkLoaderMeta.getSQLStatements(TransMeta transMeta,
StepMeta stepMeta,
RowMetaInterface prev)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.luciddbstreamingloader |
---|
Methods in org.pentaho.di.trans.steps.luciddbstreamingloader that throw KettleStepException | |
---|---|
void |
LucidDBStreamingLoaderMeta.analyseImpact(List<DatabaseImpact> impact,
TransMeta transMeta,
StepMeta stepMeta,
RowMetaInterface prev,
String[] input,
String[] output,
RowMetaInterface info)
|
String |
LucidDBStreamingLoaderMeta.getCreateTableAsStatement(RowMetaInterface prev)
|
String |
LucidDBStreamingLoaderMeta.getDMLStatement(VariableSpace space,
RowMetaInterface prev)
Create DML Sql Statements for remote_rows |
void |
LucidDBStreamingLoaderMeta.getFields(RowMetaInterface rowMeta,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
SQLStatement |
LucidDBStreamingLoaderMeta.getSQLStatements(TransMeta transMeta,
StepMeta stepMeta,
RowMetaInterface prev)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.mailinput |
---|
Methods in org.pentaho.di.trans.steps.mailinput that throw KettleStepException | |
---|---|
void |
MailInputMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.mailvalidator |
---|
Methods in org.pentaho.di.trans.steps.mailvalidator that throw KettleStepException | |
---|---|
void |
MailValidatorMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.mapping |
---|
Methods in org.pentaho.di.trans.steps.mapping that throw KettleStepException | |
---|---|
void |
MappingMeta.getFields(RowMetaInterface row,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.mappinginput |
---|
Methods in org.pentaho.di.trans.steps.mappinginput that throw KettleStepException | |
---|---|
void |
MappingInputMeta.getFields(RowMetaInterface row,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.mappingoutput |
---|
Methods in org.pentaho.di.trans.steps.mappingoutput that throw KettleStepException | |
---|---|
void |
MappingOutputMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.mergejoin |
---|
Methods in org.pentaho.di.trans.steps.mergejoin that throw KettleStepException | |
---|---|
void |
MergeJoinMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.mergerows |
---|
Methods in org.pentaho.di.trans.steps.mergerows that throw KettleStepException | |
---|---|
void |
MergeRowsMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.metainject |
---|
Methods in org.pentaho.di.trans.steps.metainject that throw KettleStepException | |
---|---|
void |
MetaInjectMeta.getFields(RowMetaInterface rowMeta,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.mondrianinput |
---|
Methods in org.pentaho.di.trans.steps.mondrianinput that throw KettleStepException | |
---|---|
void |
MondrianInputMeta.analyseImpact(List<DatabaseImpact> impact,
TransMeta transMeta,
StepMeta stepMeta,
RowMetaInterface prev,
String[] input,
String[] output,
RowMetaInterface info)
|
void |
MondrianInputMeta.getFields(RowMetaInterface row,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.monetdbbulkloader |
---|
Methods in org.pentaho.di.trans.steps.monetdbbulkloader that throw KettleStepException | |
---|---|
void |
MonetDBBulkLoaderMeta.analyseImpact(List<DatabaseImpact> impact,
TransMeta transMeta,
StepMeta stepMeta,
RowMetaInterface prev,
String[] input,
String[] output,
RowMetaInterface info)
|
void |
MonetDBBulkLoaderMeta.getFields(RowMetaInterface rowMeta,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
SQLStatement |
MonetDBBulkLoaderMeta.getSQLStatements(TransMeta transMeta,
StepMeta stepMeta,
RowMetaInterface prev,
boolean autoSchema,
MonetDBBulkLoaderData data,
boolean safeMode)
|
RowMetaInterface |
MonetDBBulkLoaderMeta.updateFields(TransMeta transMeta,
String stepname,
MonetDBBulkLoaderData data)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.multimerge |
---|
Methods in org.pentaho.di.trans.steps.multimerge that throw KettleStepException | |
---|---|
void |
MultiMergeJoinMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.mysqlbulkloader |
---|
Methods in org.pentaho.di.trans.steps.mysqlbulkloader that throw KettleStepException | |
---|---|
void |
MySQLBulkLoaderMeta.analyseImpact(List<DatabaseImpact> impact,
TransMeta transMeta,
StepMeta stepMeta,
RowMetaInterface prev,
String[] input,
String[] output,
RowMetaInterface info)
|
void |
MySQLBulkLoaderMeta.getFields(RowMetaInterface rowMeta,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
SQLStatement |
MySQLBulkLoaderMeta.getSQLStatements(TransMeta transMeta,
StepMeta stepMeta,
RowMetaInterface prev)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.normaliser |
---|
Methods in org.pentaho.di.trans.steps.normaliser that throw KettleStepException | |
---|---|
void |
NormaliserMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.numberrange |
---|
Methods in org.pentaho.di.trans.steps.numberrange that throw KettleStepException | |
---|---|
void |
NumberRangeMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.olapinput |
---|
Methods in org.pentaho.di.trans.steps.olapinput that throw KettleStepException | |
---|---|
void |
OlapInputMeta.analyseImpact(List<DatabaseImpact> impact,
TransMeta transMeta,
StepMeta stepMeta,
RowMetaInterface prev,
String[] input,
String[] output,
RowMetaInterface info)
|
void |
OlapInputMeta.getFields(RowMetaInterface row,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.orabulkloader |
---|
Methods in org.pentaho.di.trans.steps.orabulkloader that throw KettleStepException | |
---|---|
void |
OraBulkLoaderMeta.analyseImpact(List<DatabaseImpact> impact,
TransMeta transMeta,
StepMeta stepMeta,
RowMetaInterface prev,
String[] input,
String[] output,
RowMetaInterface info)
|
void |
OraBulkLoaderMeta.getFields(RowMetaInterface rowMeta,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
SQLStatement |
OraBulkLoaderMeta.getSQLStatements(TransMeta transMeta,
StepMeta stepMeta,
RowMetaInterface prev)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.parallelgzipcsv |
---|
Methods in org.pentaho.di.trans.steps.parallelgzipcsv that throw KettleStepException | |
---|---|
void |
ParGzipCsvInputMeta.getFields(RowMetaInterface rowMeta,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.pgbulkloader |
---|
Methods in org.pentaho.di.trans.steps.pgbulkloader that throw KettleStepException | |
---|---|
void |
PGBulkLoaderMeta.analyseImpact(List<DatabaseImpact> impact,
TransMeta transMeta,
StepMeta stepMeta,
RowMetaInterface prev,
String[] input,
String[] output,
RowMetaInterface info)
|
void |
PGBulkLoaderMeta.getFields(RowMetaInterface rowMeta,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
SQLStatement |
PGBulkLoaderMeta.getSQLStatements(TransMeta transMeta,
StepMeta stepMeta,
RowMetaInterface prev)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.prioritizestreams |
---|
Methods in org.pentaho.di.trans.steps.prioritizestreams that throw KettleStepException | |
---|---|
void |
PrioritizeStreamsMeta.getFields(RowMetaInterface rowMeta,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.propertyinput |
---|
Methods in org.pentaho.di.trans.steps.propertyinput that throw KettleStepException | |
---|---|
void |
PropertyInputMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.randomccnumber |
---|
Methods in org.pentaho.di.trans.steps.randomccnumber that throw KettleStepException | |
---|---|
void |
RandomCCNumberGeneratorMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.randomvalue |
---|
Methods in org.pentaho.di.trans.steps.randomvalue that throw KettleStepException | |
---|---|
void |
RandomValueMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.regexeval |
---|
Methods in org.pentaho.di.trans.steps.regexeval that throw KettleStepException | |
---|---|
void |
RegexEvalMeta.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.replacestring |
---|
Methods in org.pentaho.di.trans.steps.replacestring that throw KettleStepException | |
---|---|
void |
ReplaceStringMeta.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.reservoirsampling |
---|
Methods in org.pentaho.di.trans.steps.reservoirsampling that throw KettleStepException | |
---|---|
void |
ReservoirSamplingMeta.getFields(RowMetaInterface row,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
Generates row meta data to represent the fields output by this step |
Uses of KettleStepException in org.pentaho.di.trans.steps.rest |
---|
Methods in org.pentaho.di.trans.steps.rest that throw KettleStepException | |
---|---|
void |
RestMeta.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.rowgenerator |
---|
Methods in org.pentaho.di.trans.steps.rowgenerator that throw KettleStepException | |
---|---|
void |
RowGeneratorMeta.getFields(RowMetaInterface row,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.rowsfromresult |
---|
Methods in org.pentaho.di.trans.steps.rowsfromresult that throw KettleStepException | |
---|---|
void |
RowsFromResultMeta.getFields(RowMetaInterface r,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.rowstoresult |
---|
Methods in org.pentaho.di.trans.steps.rowstoresult that throw KettleStepException | |
---|---|
void |
RowsToResultMeta.getFields(RowMetaInterface rowMeta,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.rssinput |
---|
Methods in org.pentaho.di.trans.steps.rssinput that throw KettleStepException | |
---|---|
void |
RssInputMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.rssoutput |
---|
Methods in org.pentaho.di.trans.steps.rssoutput that throw KettleStepException | |
---|---|
String |
RssOutput.buildFilename()
|
String |
RssOutputMeta.buildFilename(VariableSpace space,
int stepnr)
|
String[] |
RssOutputMeta.getFiles(VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.rules |
---|
Methods in org.pentaho.di.trans.steps.rules that throw KettleStepException | |
---|---|
void |
RulesMeta.getFields(RowMetaInterface row,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
boolean |
Rules.runtimeInit()
|
Uses of KettleStepException in org.pentaho.di.trans.steps.salesforcedelete |
---|
Methods in org.pentaho.di.trans.steps.salesforcedelete that throw KettleStepException | |
---|---|
void |
SalesforceDeleteMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.salesforceinput |
---|
Methods in org.pentaho.di.trans.steps.salesforceinput that throw KettleStepException | |
---|---|
void |
SalesforceInputMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Constructors in org.pentaho.di.trans.steps.salesforceinput that throw KettleStepException | |
---|---|
SalesforceInputField(Node fnode)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.salesforceinsert |
---|
Methods in org.pentaho.di.trans.steps.salesforceinsert that throw KettleStepException | |
---|---|
void |
SalesforceInsertMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.salesforceupdate |
---|
Methods in org.pentaho.di.trans.steps.salesforceupdate that throw KettleStepException | |
---|---|
void |
SalesforceUpdateMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.salesforceupsert |
---|
Methods in org.pentaho.di.trans.steps.salesforceupsert that throw KettleStepException | |
---|---|
void |
SalesforceUpsertMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.samplerows |
---|
Methods in org.pentaho.di.trans.steps.samplerows that throw KettleStepException | |
---|---|
void |
SampleRowsMeta.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.sapinput |
---|
Methods in org.pentaho.di.trans.steps.sapinput that throw KettleStepException | |
---|---|
void |
SapInputMeta.getFields(RowMetaInterface row,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.sasinput |
---|
Methods in org.pentaho.di.trans.steps.sasinput that throw KettleStepException | |
---|---|
void |
SasInputMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.script |
---|
Methods in org.pentaho.di.trans.steps.script that throw KettleStepException | |
---|---|
void |
ScriptMeta.getFields(RowMetaInterface row,
String originStepname,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
void |
ScriptDummy.initBeforeStart()
|
Uses of KettleStepException in org.pentaho.di.trans.steps.scriptvalues_mod |
---|
Methods in org.pentaho.di.trans.steps.scriptvalues_mod that throw KettleStepException | |
---|---|
void |
ScriptValuesMetaMod.getFields(RowMetaInterface row,
String originStepname,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
void |
ScriptValuesModDummy.initBeforeStart()
|
Uses of KettleStepException in org.pentaho.di.trans.steps.selectvalues |
---|
Methods in org.pentaho.di.trans.steps.selectvalues that throw KettleStepException | |
---|---|
void |
SelectValuesMeta.getDeleteFields(RowMetaInterface inputRowMeta)
|
void |
SelectValuesMeta.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
void |
SelectValuesMeta.getSelectFields(RowMetaInterface inputRowMeta,
String name)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.singlethreader |
---|
Methods in org.pentaho.di.trans.steps.singlethreader that throw KettleStepException | |
---|---|
void |
SingleThreaderMeta.getFields(RowMetaInterface row,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.socketreader |
---|
Methods in org.pentaho.di.trans.steps.socketreader that throw KettleStepException | |
---|---|
void |
SocketReaderMeta.getFields(RowMetaInterface rowMeta,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.socketwriter |
---|
Methods in org.pentaho.di.trans.steps.socketwriter that throw KettleStepException | |
---|---|
void |
SocketWriterMeta.getFields(RowMetaInterface rowMeta,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.sort |
---|
Methods in org.pentaho.di.trans.steps.sort that throw KettleStepException | |
---|---|
void |
SortRowsMeta.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.sortedmerge |
---|
Methods in org.pentaho.di.trans.steps.sortedmerge that throw KettleStepException | |
---|---|
void |
SortedMergeMeta.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.splitfieldtorows |
---|
Methods in org.pentaho.di.trans.steps.splitfieldtorows that throw KettleStepException | |
---|---|
void |
SplitFieldToRowsMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.sql |
---|
Methods in org.pentaho.di.trans.steps.sql that throw KettleStepException | |
---|---|
void |
ExecSQLMeta.analyseImpact(List<DatabaseImpact> impact,
TransMeta transMeta,
StepMeta stepMeta,
RowMeta prev,
String[] input,
String[] output,
RowMeta info)
|
void |
ExecSQLMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.ssh |
---|
Methods in org.pentaho.di.trans.steps.ssh that throw KettleStepException | |
---|---|
void |
SSHMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.stepmeta |
---|
Methods in org.pentaho.di.trans.steps.stepmeta that throw KettleStepException | |
---|---|
void |
StepMetastructureMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.stepsmetrics |
---|
Methods in org.pentaho.di.trans.steps.stepsmetrics that throw KettleStepException | |
---|---|
void |
StepsMetricsMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.streamlookup |
---|
Methods in org.pentaho.di.trans.steps.streamlookup that throw KettleStepException | |
---|---|
void |
StreamLookupMeta.getFields(RowMetaInterface row,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.stringcut |
---|
Methods in org.pentaho.di.trans.steps.stringcut that throw KettleStepException | |
---|---|
void |
StringCutMeta.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.stringoperations |
---|
Methods in org.pentaho.di.trans.steps.stringoperations that throw KettleStepException | |
---|---|
void |
StringOperationsMeta.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.switchcase |
---|
Methods in org.pentaho.di.trans.steps.switchcase that throw KettleStepException | |
---|---|
void |
SwitchCaseMeta.getFields(RowMetaInterface rowMeta,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.symmetriccrypto.secretkeygenerator |
---|
Methods in org.pentaho.di.trans.steps.symmetriccrypto.secretkeygenerator that throw KettleStepException | |
---|---|
void |
SecretKeyGeneratorMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.symmetriccrypto.symmetriccryptotrans |
---|
Methods in org.pentaho.di.trans.steps.symmetriccrypto.symmetriccryptotrans that throw KettleStepException | |
---|---|
void |
SymmetricCryptoTransMeta.getFields(RowMetaInterface rowMeta,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.synchronizeaftermerge |
---|
Methods in org.pentaho.di.trans.steps.synchronizeaftermerge that throw KettleStepException | |
---|---|
void |
SynchronizeAfterMergeMeta.analyseImpact(List<DatabaseImpact> impact,
TransMeta transMeta,
StepMeta stepMeta,
RowMetaInterface prev,
String[] input,
String[] output,
RowMetaInterface info)
|
SQLStatement |
SynchronizeAfterMergeMeta.getSQLStatements(TransMeta transMeta,
StepMeta stepMeta,
RowMetaInterface prev)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.systemdata |
---|
Methods in org.pentaho.di.trans.steps.systemdata that throw KettleStepException | |
---|---|
void |
SystemDataMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.tableexists |
---|
Methods in org.pentaho.di.trans.steps.tableexists that throw KettleStepException | |
---|---|
void |
TableExistsMeta.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.tableinput |
---|
Methods in org.pentaho.di.trans.steps.tableinput that throw KettleStepException | |
---|---|
void |
TableInputMeta.analyseImpact(List<DatabaseImpact> impact,
TransMeta transMeta,
StepMeta stepMeta,
RowMetaInterface prev,
String[] input,
String[] output,
RowMetaInterface info)
|
void |
TableInputMeta.getFields(RowMetaInterface row,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.tableoutput |
---|
Methods in org.pentaho.di.trans.steps.tableoutput that throw KettleStepException | |
---|---|
void |
TableOutputMeta.getFields(RowMetaInterface row,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.terafast |
---|
Methods in org.pentaho.di.trans.steps.terafast that throw KettleStepException | |
---|---|
void |
TeraFastMeta.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
Gets the fields. |
Uses of KettleStepException in org.pentaho.di.trans.steps.textfileinput |
---|
Methods in org.pentaho.di.trans.steps.textfileinput that throw KettleStepException | |
---|---|
void |
TextFileInputMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.textfileoutput |
---|
Methods in org.pentaho.di.trans.steps.textfileoutput that throw KettleStepException | |
---|---|
void |
TextFileOutputMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.uniquerows |
---|
Methods in org.pentaho.di.trans.steps.uniquerows that throw KettleStepException | |
---|---|
void |
UniqueRowsMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.uniquerowsbyhashset |
---|
Methods in org.pentaho.di.trans.steps.uniquerowsbyhashset that throw KettleStepException | |
---|---|
void |
UniqueRowsByHashSetMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.univariatestats |
---|
Methods in org.pentaho.di.trans.steps.univariatestats that throw KettleStepException | |
---|---|
void |
UnivariateStatsMeta.getFields(RowMetaInterface row,
String origin,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
Generates row meta data to represent the fields output by this step |
Uses of KettleStepException in org.pentaho.di.trans.steps.update |
---|
Methods in org.pentaho.di.trans.steps.update that throw KettleStepException | |
---|---|
void |
UpdateMeta.analyseImpact(List<DatabaseImpact> impact,
TransMeta transMeta,
StepMeta stepMeta,
RowMetaInterface prev,
String[] input,
String[] output,
RowMetaInterface info)
|
void |
UpdateMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.userdefinedjavaclass |
---|
Methods in org.pentaho.di.trans.steps.userdefinedjavaclass that throw KettleStepException | |
---|---|
RowSet |
UserDefinedJavaClass.findInputRowSet(String sourceStep)
|
RowSet |
TransformClassBase.findInputRowSet(String sourceStep)
|
RowSet |
UserDefinedJavaClass.findInputRowSetImpl(String sourceStep)
|
RowSet |
UserDefinedJavaClass.findOutputRowSet(String targetStep)
|
RowSet |
TransformClassBase.findOutputRowSet(String targetStep)
|
RowSet |
UserDefinedJavaClass.findOutputRowSetImpl(String targetStep)
|
FieldHelper |
TransformClassBase.get(TransformClassBase.Fields type,
String name)
|
static void |
TransformClassBase.getFields(boolean clearResultFields,
RowMetaInterface row,
String originStepname,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space,
List<?> fields)
|
void |
UserDefinedJavaClassMeta.getFields(RowMetaInterface row,
String originStepname,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Object[] |
UserDefinedJavaClass.getRowFrom(RowSet rowSet)
|
Object[] |
TransformClassBase.getRowFrom(RowSet rowSet)
|
Object[] |
UserDefinedJavaClass.getRowFromImpl(RowSet rowSet)
|
String |
UserDefinedJavaClassDef.getTransformedSource()
|
void |
UserDefinedJavaClass.initBeforeStart()
|
void |
TransformClassBase.initBeforeStart()
|
void |
UserDefinedJavaClass.initBeforeStartImpl()
|
void |
UserDefinedJavaClass.openRemoteInputStepSocketsOnce()
|
void |
TransformClassBase.openRemoteInputStepSocketsOnce()
|
void |
UserDefinedJavaClass.openRemoteInputStepSocketsOnceImpl()
|
void |
UserDefinedJavaClass.openRemoteOutputStepSocketsOnce()
|
void |
TransformClassBase.openRemoteOutputStepSocketsOnce()
|
void |
UserDefinedJavaClass.openRemoteOutputStepSocketsOnceImpl()
|
void |
UserDefinedJavaClass.putError(RowMetaInterface rowMeta,
Object[] row,
long nrErrors,
String errorDescriptions,
String fieldNames,
String errorCodes)
|
void |
TransformClassBase.putError(RowMetaInterface rowMeta,
Object[] row,
long nrErrors,
String errorDescriptions,
String fieldNames,
String errorCodes)
|
void |
UserDefinedJavaClass.putErrorImpl(RowMetaInterface rowMeta,
Object[] row,
long nrErrors,
String errorDescriptions,
String fieldNames,
String errorCodes)
|
void |
UserDefinedJavaClass.putRow(RowMetaInterface row,
Object[] data)
|
void |
TransformClassBase.putRow(RowMetaInterface row,
Object[] data)
|
void |
UserDefinedJavaClass.putRowImpl(RowMetaInterface row,
Object[] data)
|
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)
|
Constructors in org.pentaho.di.trans.steps.userdefinedjavaclass that throw KettleStepException | |
---|---|
TransformClassBase(UserDefinedJavaClass parent,
UserDefinedJavaClassMeta meta,
UserDefinedJavaClassData data)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.webserviceavailable |
---|
Methods in org.pentaho.di.trans.steps.webserviceavailable that throw KettleStepException | |
---|---|
void |
WebServiceAvailableMeta.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.webservices |
---|
Methods in org.pentaho.di.trans.steps.webservices that throw KettleStepException | |
---|---|
void |
WebServiceMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.webservices.wsdl |
---|
Methods in org.pentaho.di.trans.steps.webservices.wsdl that throw KettleStepException | |
---|---|
WsdlOperation |
Wsdl.getOperation(String operationName)
Find the specified operation in the WSDL definition. |
List<WsdlOperation> |
Wsdl.getOperations()
Get a list of all operations defined in this WSDL. |
Uses of KettleStepException in org.pentaho.di.trans.steps.xbaseinput |
---|
Methods in org.pentaho.di.trans.steps.xbaseinput that throw KettleStepException | |
---|---|
void |
XBaseInputMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
RowMetaInterface |
XBaseInputMeta.getOutputFields(FileInputList files,
String name)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.xmljoin |
---|
Methods in org.pentaho.di.trans.steps.xmljoin that throw KettleStepException | |
---|---|
void |
XMLJoinMeta.getFields(RowMetaInterface row,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.xsdvalidator |
---|
Methods in org.pentaho.di.trans.steps.xsdvalidator that throw KettleStepException | |
---|---|
void |
XsdValidatorMeta.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.xslt |
---|
Methods in org.pentaho.di.trans.steps.xslt that throw KettleStepException | |
---|---|
void |
XsltMeta.getFields(RowMetaInterface inputRowMeta,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.trans.steps.yamlinput |
---|
Methods in org.pentaho.di.trans.steps.yamlinput that throw KettleStepException | |
---|---|
void |
YamlInputMeta.getFields(RowMetaInterface r,
String name,
RowMetaInterface[] info,
StepMeta nextStep,
VariableSpace space)
|
Uses of KettleStepException in org.pentaho.di.ui.trans.steps.sasinput |
---|
Methods in org.pentaho.di.ui.trans.steps.sasinput that throw KettleStepException | |
---|---|
void |
SasInputDialog.getInfo(SasInputMeta meta)
|
Uses of KettleStepException in org.pentaho.di.ui.trans.steps.xbaseinput |
---|
Methods in org.pentaho.di.ui.trans.steps.xbaseinput that throw KettleStepException | |
---|---|
void |
XBaseInputDialog.getInfo(XBaseInputMeta meta)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |