java.io.deephaven.proto.backplane.grpc.SelectDistinctRequestOrBuilder 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 SelectDistinctRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:io.deephaven.proto.backplane.grpc.SelectDistinctRequest)
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 source_id = 2;
* @return Whether the sourceId field is set.
*/
boolean hasSourceId();
/**
* .io.deephaven.proto.backplane.grpc.TableReference source_id = 2;
* @return The sourceId.
*/
io.deephaven.proto.backplane.grpc.TableReference getSourceId();
/**
* .io.deephaven.proto.backplane.grpc.TableReference source_id = 2;
*/
io.deephaven.proto.backplane.grpc.TableReferenceOrBuilder getSourceIdOrBuilder();
/**
* repeated string column_names = 3;
* @return A list containing the columnNames.
*/
java.util.List
getColumnNamesList();
/**
* repeated string column_names = 3;
* @return The count of columnNames.
*/
int getColumnNamesCount();
/**
* repeated string column_names = 3;
* @param index The index of the element to return.
* @return The columnNames at the given index.
*/
java.lang.String getColumnNames(int index);
/**
* repeated string column_names = 3;
* @param index The index of the value to return.
* @return The bytes of the columnNames at the given index.
*/
com.google.protobuf.ByteString
getColumnNamesBytes(int index);
}