Interface CsvPluginResponseOrBuilder

All Superinterfaces:
MessageLiteOrBuilder, MessageOrBuilder
All Known Implementing Classes:
CsvPluginResponse, CsvPluginResponse.Builder

@Generated public interface CsvPluginResponseOrBuilder extends MessageOrBuilder
  • Method Details

    • getRequestId

      String getRequestId()
       Identifier copied from the request.
       
      string request_id = 1;
      Returns:
      The requestId.
    • getRequestIdBytes

      ByteString getRequestIdBytes()
       Identifier copied from the request.
       
      string request_id = 1;
      Returns:
      The bytes for requestId.
    • hasError

      boolean hasError()
       If the request failed (after we were able to parse and extract the request ID), then we return an error to the
       client; otherwise we return the appropriate response type.
       
      .io.deephaven.proto.csv.ErrorResponse error = 2;
      Returns:
      Whether the error field is set.
    • getError

      ErrorResponse getError()
       If the request failed (after we were able to parse and extract the request ID), then we return an error to the
       client; otherwise we return the appropriate response type.
       
      .io.deephaven.proto.csv.ErrorResponse error = 2;
      Returns:
      The error.
    • getErrorOrBuilder

      ErrorResponseOrBuilder getErrorOrBuilder()
       If the request failed (after we were able to parse and extract the request ID), then we return an error to the
       client; otherwise we return the appropriate response type.
       
      .io.deephaven.proto.csv.ErrorResponse error = 2;
    • hasTableFromCsv

      boolean hasTableFromCsv()
      .io.deephaven.proto.csv.TableFromCsvResponse table_from_csv = 3;
      Returns:
      Whether the tableFromCsv field is set.
    • getTableFromCsv

      TableFromCsvResponse getTableFromCsv()
      .io.deephaven.proto.csv.TableFromCsvResponse table_from_csv = 3;
      Returns:
      The tableFromCsv.
    • getTableFromCsvOrBuilder

      TableFromCsvResponseOrBuilder getTableFromCsvOrBuilder()
      .io.deephaven.proto.csv.TableFromCsvResponse table_from_csv = 3;
    • hasSchemaFromCsv

      boolean hasSchemaFromCsv()
      .io.deephaven.proto.csv.SchemaFromCsvResponse schema_from_csv = 4;
      Returns:
      Whether the schemaFromCsv field is set.
    • getSchemaFromCsv

      SchemaFromCsvResponse getSchemaFromCsv()
      .io.deephaven.proto.csv.SchemaFromCsvResponse schema_from_csv = 4;
      Returns:
      The schemaFromCsv.
    • getSchemaFromCsvOrBuilder

      SchemaFromCsvResponseOrBuilder getSchemaFromCsvOrBuilder()
      .io.deephaven.proto.csv.SchemaFromCsvResponse schema_from_csv = 4;
    • getResponseCase