java.io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequestOrBuilder 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 NaturalJoinTablesRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest)
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 columns_to_match = 4;
* @return A list containing the columnsToMatch.
*/
java.util.List
getColumnsToMatchList();
/**
* repeated string columns_to_match = 4;
* @return The count of columnsToMatch.
*/
int getColumnsToMatchCount();
/**
* repeated string columns_to_match = 4;
* @param index The index of the element to return.
* @return The columnsToMatch at the given index.
*/
java.lang.String getColumnsToMatch(int index);
/**
* repeated string columns_to_match = 4;
* @param index The index of the value to return.
* @return The bytes of the columnsToMatch at the given index.
*/
com.google.protobuf.ByteString
getColumnsToMatchBytes(int index);
/**
* repeated string columns_to_add = 5;
* @return A list containing the columnsToAdd.
*/
java.util.List
getColumnsToAddList();
/**
* repeated string columns_to_add = 5;
* @return The count of columnsToAdd.
*/
int getColumnsToAddCount();
/**
* repeated string columns_to_add = 5;
* @param index The index of the element to return.
* @return The columnsToAdd at the given index.
*/
java.lang.String getColumnsToAdd(int index);
/**
* repeated string columns_to_add = 5;
* @param index The index of the value to return.
* @return The bytes of the columnsToAdd at the given index.
*/
com.google.protobuf.ByteString
getColumnsToAddBytes(int index);
}