io.deephaven.engine.table.MultiJoinTable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-engine-api Show documentation
Show all versions of deephaven-engine-api Show documentation
Engine API: Engine API module, suitable as a compile-time dependency for most queries
The newest version!
//
// Copyright (c) 2016-2024 Deephaven Data Labs and Patent Pending
//
package io.deephaven.engine.table;
import java.util.Collection;
public interface MultiJoinTable {
/**
* Get the output {@link Table table} from this multi-join table.
*
* @return The output {@link Table table}
*/
Table table();
/**
* Get the key column names from this multi-join table.
*
* @return The key column names as a collection of strings
*/
Collection keyColumns();
}