java.io.deephaven.proto.backplane.grpc.UngroupRequestOrBuilder 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 UngroupRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:io.deephaven.proto.backplane.grpc.UngroupRequest)
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();
/**
* bool null_fill = 3;
* @return The nullFill.
*/
boolean getNullFill();
/**
* repeated string columns_to_ungroup = 4;
* @return A list containing the columnsToUngroup.
*/
java.util.List
getColumnsToUngroupList();
/**
* repeated string columns_to_ungroup = 4;
* @return The count of columnsToUngroup.
*/
int getColumnsToUngroupCount();
/**
* repeated string columns_to_ungroup = 4;
* @param index The index of the element to return.
* @return The columnsToUngroup at the given index.
*/
java.lang.String getColumnsToUngroup(int index);
/**
* repeated string columns_to_ungroup = 4;
* @param index The index of the value to return.
* @return The bytes of the columnsToUngroup at the given index.
*/
com.google.protobuf.ByteString
getColumnsToUngroupBytes(int index);
}