
tech.tablesaw.joining.JoinStrategy Maven / Gradle / Ivy
The newest version!
package tech.tablesaw.joining;
import tech.tablesaw.api.Table;
interface JoinStrategy {
Table performJoin(
Table table1,
Table table2,
JoinType joinType,
boolean allowDuplicates,
boolean keepAllJoinKeyColumns,
int[] leftJoinColumnIndexes,
String... table2JoinColumnNames);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy