MultiJoinInput
A MultiJoinInput is an object that contains a table and a list of columns to match and add, and is used as an input for a Multi-Join.
Methods
Parameters
| Parameter | Type | Description |
|---|---|---|
| inputTable | Table | The table to add to the MultiJoin. |
| columnsToMatch | JoinMatch[] | An array of |
| columnsToMatch | String[] | The key columns, in string format (e.g., "ResultKey=SourceKey" or "KeyInBoth"). |
| columnsToMatch | Collection<? extends JoinMatch> | A collection of |
| columnsToMatch | String... | The key columns, in string format (e.g., "ResultKey=SourceKey" or "KeyInBoth"). |
| ColumnsToAdd | JoinAddition[] | An array of |
| ColumnsToAdd | String[] | The columns to add, in string format (e.g., "ResultColumn=SourceColumn" or "SourceColumnToAddWithSameName"); empty for all columns. |
| ColumnsToAdd | Collection<? extends JoinAddition> | A collection of |
Returns
A MultiJoinInput object.