java.io.deephaven.proto.backplane.grpc.RangeJoinTablesRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-proto-backplane-grpc Show documentation
Show all versions of deephaven-proto-backplane-grpc Show documentation
The Deephaven proto-backplane-grpc
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: deephaven/proto/table.proto
// Protobuf Java Version: 3.25.3
package io.deephaven.proto.backplane.grpc;
public interface RangeJoinTablesRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest)
com.google.protobuf.MessageOrBuilder {
/**
* .io.deephaven.proto.backplane.grpc.Ticket result_id = 1;
* @return Whether the resultId field is set.
*/
boolean hasResultId();
/**
* .io.deephaven.proto.backplane.grpc.Ticket result_id = 1;
* @return The resultId.
*/
io.deephaven.proto.backplane.grpc.Ticket getResultId();
/**
* .io.deephaven.proto.backplane.grpc.Ticket result_id = 1;
*/
io.deephaven.proto.backplane.grpc.TicketOrBuilder getResultIdOrBuilder();
/**
* .io.deephaven.proto.backplane.grpc.TableReference left_id = 2;
* @return Whether the leftId field is set.
*/
boolean hasLeftId();
/**
* .io.deephaven.proto.backplane.grpc.TableReference left_id = 2;
* @return The leftId.
*/
io.deephaven.proto.backplane.grpc.TableReference getLeftId();
/**
* .io.deephaven.proto.backplane.grpc.TableReference left_id = 2;
*/
io.deephaven.proto.backplane.grpc.TableReferenceOrBuilder getLeftIdOrBuilder();
/**
* .io.deephaven.proto.backplane.grpc.TableReference right_id = 3;
* @return Whether the rightId field is set.
*/
boolean hasRightId();
/**
* .io.deephaven.proto.backplane.grpc.TableReference right_id = 3;
* @return The rightId.
*/
io.deephaven.proto.backplane.grpc.TableReference getRightId();
/**
* .io.deephaven.proto.backplane.grpc.TableReference right_id = 3;
*/
io.deephaven.proto.backplane.grpc.TableReferenceOrBuilder getRightIdOrBuilder();
/**
* repeated string exact_match_columns = 4;
* @return A list containing the exactMatchColumns.
*/
java.util.List
getExactMatchColumnsList();
/**
* repeated string exact_match_columns = 4;
* @return The count of exactMatchColumns.
*/
int getExactMatchColumnsCount();
/**
* repeated string exact_match_columns = 4;
* @param index The index of the element to return.
* @return The exactMatchColumns at the given index.
*/
java.lang.String getExactMatchColumns(int index);
/**
* repeated string exact_match_columns = 4;
* @param index The index of the value to return.
* @return The bytes of the exactMatchColumns at the given index.
*/
com.google.protobuf.ByteString
getExactMatchColumnsBytes(int index);
/**
*
* Provide detailed range match parameters for the range join (alternative to providing `range_match`)
*
*
* string left_start_column = 5;
* @return The leftStartColumn.
*/
java.lang.String getLeftStartColumn();
/**
*
* Provide detailed range match parameters for the range join (alternative to providing `range_match`)
*
*
* string left_start_column = 5;
* @return The bytes for leftStartColumn.
*/
com.google.protobuf.ByteString
getLeftStartColumnBytes();
/**
* .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule range_start_rule = 6;
* @return The enum numeric value on the wire for rangeStartRule.
*/
int getRangeStartRuleValue();
/**
* .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule range_start_rule = 6;
* @return The rangeStartRule.
*/
io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule getRangeStartRule();
/**
* string right_range_column = 7;
* @return The rightRangeColumn.
*/
java.lang.String getRightRangeColumn();
/**
* string right_range_column = 7;
* @return The bytes for rightRangeColumn.
*/
com.google.protobuf.ByteString
getRightRangeColumnBytes();
/**
* .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule range_end_rule = 8;
* @return The enum numeric value on the wire for rangeEndRule.
*/
int getRangeEndRuleValue();
/**
* .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule range_end_rule = 8;
* @return The rangeEndRule.
*/
io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule getRangeEndRule();
/**
* string left_end_column = 9;
* @return The leftEndColumn.
*/
java.lang.String getLeftEndColumn();
/**
* string left_end_column = 9;
* @return The bytes for leftEndColumn.
*/
com.google.protobuf.ByteString
getLeftEndColumnBytes();
/**
* repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10;
*/
java.util.List
getAggregationsList();
/**
* repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10;
*/
io.deephaven.proto.backplane.grpc.Aggregation getAggregations(int index);
/**
* repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10;
*/
int getAggregationsCount();
/**
* repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10;
*/
java.util.List extends io.deephaven.proto.backplane.grpc.AggregationOrBuilder>
getAggregationsOrBuilderList();
/**
* repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10;
*/
io.deephaven.proto.backplane.grpc.AggregationOrBuilder getAggregationsOrBuilder(
int index);
/**
*
* Specifies the range match parameters as a parseable string. Providing `range_match` in the GRPC call is the
* alternative to detailed range match parameters provided in the `left_start_column`, `range_start_rule`,
* `right_range_column`, `range_end_rule`, and `left_end_column` fields.
*
*
* string range_match = 11;
* @return The rangeMatch.
*/
java.lang.String getRangeMatch();
/**
*
* Specifies the range match parameters as a parseable string. Providing `range_match` in the GRPC call is the
* alternative to detailed range match parameters provided in the `left_start_column`, `range_start_rule`,
* `right_range_column`, `range_end_rule`, and `left_end_column` fields.
*
*
* string range_match = 11;
* @return The bytes for rangeMatch.
*/
com.google.protobuf.ByteString
getRangeMatchBytes();
}