All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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