Package io.deephaven.api
Interface JoinAddition
- All Known Implementing Classes:
ColumnName,MatchPair
public interface JoinAddition
A join addition represents a
new column that should be added as the result of a join, brought
over from an existing column.-
Method Summary
Modifier and TypeMethodDescriptionThe existing column name, from the right table of a join operation.static List<JoinAddition>static List<JoinAddition>from(Collection<String> values) The new column name, to be added to the new table.static JoinAdditionof(ColumnName newColumn, ColumnName existingColumn) static JoinAddition
-
Method Details
-
of
-
parse
-
from
-
from
-
newColumn
ColumnName newColumn()The new column name, to be added to the new table.- Returns:
- the new column name
-
existingColumn
ColumnName existingColumn()The existing column name, from the right table of a join operation.- Returns:
- the existing column name
-