Package io.deephaven.proto.jdbc
Interface JdbcPluginResponseOrBuilder
- All Superinterfaces:
MessageLiteOrBuilder,MessageOrBuilder
- All Known Implementing Classes:
JdbcPluginResponse,JdbcPluginResponse.Builder
-
Method Summary
Modifier and TypeMethodDescription.io.deephaven.proto.jdbc.JdbcCatalogNamesResponse catalog_names = 5;.io.deephaven.proto.jdbc.JdbcCatalogNamesResponse catalog_names = 5;.io.deephaven.proto.jdbc.JdbcConnectResponse connect = 3;.io.deephaven.proto.jdbc.JdbcConnectResponse connect = 3;.io.deephaven.proto.jdbc.JdbcDisconnectResponse disconnect = 4;.io.deephaven.proto.jdbc.JdbcDisconnectResponse disconnect = 4;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.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.jdbc.JdbcGenerateSchemaResponse generate_schema = 7;.io.deephaven.proto.jdbc.JdbcGenerateSchemaResponse generate_schema = 7;.io.deephaven.proto.jdbc.ImportSourceResponse import_source = 9;.io.deephaven.proto.jdbc.ImportSourceResponse import_source = 9;.io.deephaven.proto.jdbc.JdbcQueryTableResponse query_table = 8;.io.deephaven.proto.jdbc.JdbcQueryTableResponse query_table = 8;Identifier copied from the request.Identifier copied from the request..io.deephaven.proto.jdbc.JdbcTableNamesResponse table_names = 6;.io.deephaven.proto.jdbc.JdbcTableNamesResponse table_names = 6;boolean.io.deephaven.proto.jdbc.JdbcCatalogNamesResponse catalog_names = 5;boolean.io.deephaven.proto.jdbc.JdbcConnectResponse connect = 3;boolean.io.deephaven.proto.jdbc.JdbcDisconnectResponse disconnect = 4;booleanhasError()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.boolean.io.deephaven.proto.jdbc.JdbcGenerateSchemaResponse generate_schema = 7;boolean.io.deephaven.proto.jdbc.ImportSourceResponse import_source = 9;boolean.io.deephaven.proto.jdbc.JdbcQueryTableResponse query_table = 8;boolean.io.deephaven.proto.jdbc.JdbcTableNamesResponse table_names = 6;Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
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.jdbc.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.jdbc.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.jdbc.ErrorResponse error = 2; -
hasConnect
boolean hasConnect().io.deephaven.proto.jdbc.JdbcConnectResponse connect = 3;- Returns:
- Whether the connect field is set.
-
getConnect
JdbcConnectResponse getConnect().io.deephaven.proto.jdbc.JdbcConnectResponse connect = 3;- Returns:
- The connect.
-
getConnectOrBuilder
JdbcConnectResponseOrBuilder getConnectOrBuilder().io.deephaven.proto.jdbc.JdbcConnectResponse connect = 3; -
hasDisconnect
boolean hasDisconnect().io.deephaven.proto.jdbc.JdbcDisconnectResponse disconnect = 4;- Returns:
- Whether the disconnect field is set.
-
getDisconnect
JdbcDisconnectResponse getDisconnect().io.deephaven.proto.jdbc.JdbcDisconnectResponse disconnect = 4;- Returns:
- The disconnect.
-
getDisconnectOrBuilder
JdbcDisconnectResponseOrBuilder getDisconnectOrBuilder().io.deephaven.proto.jdbc.JdbcDisconnectResponse disconnect = 4; -
hasCatalogNames
boolean hasCatalogNames().io.deephaven.proto.jdbc.JdbcCatalogNamesResponse catalog_names = 5;- Returns:
- Whether the catalogNames field is set.
-
getCatalogNames
JdbcCatalogNamesResponse getCatalogNames().io.deephaven.proto.jdbc.JdbcCatalogNamesResponse catalog_names = 5;- Returns:
- The catalogNames.
-
getCatalogNamesOrBuilder
JdbcCatalogNamesResponseOrBuilder getCatalogNamesOrBuilder().io.deephaven.proto.jdbc.JdbcCatalogNamesResponse catalog_names = 5; -
hasTableNames
boolean hasTableNames().io.deephaven.proto.jdbc.JdbcTableNamesResponse table_names = 6;- Returns:
- Whether the tableNames field is set.
-
getTableNames
JdbcTableNamesResponse getTableNames().io.deephaven.proto.jdbc.JdbcTableNamesResponse table_names = 6;- Returns:
- The tableNames.
-
getTableNamesOrBuilder
JdbcTableNamesResponseOrBuilder getTableNamesOrBuilder().io.deephaven.proto.jdbc.JdbcTableNamesResponse table_names = 6; -
hasGenerateSchema
boolean hasGenerateSchema().io.deephaven.proto.jdbc.JdbcGenerateSchemaResponse generate_schema = 7;- Returns:
- Whether the generateSchema field is set.
-
getGenerateSchema
JdbcGenerateSchemaResponse getGenerateSchema().io.deephaven.proto.jdbc.JdbcGenerateSchemaResponse generate_schema = 7;- Returns:
- The generateSchema.
-
getGenerateSchemaOrBuilder
JdbcGenerateSchemaResponseOrBuilder getGenerateSchemaOrBuilder().io.deephaven.proto.jdbc.JdbcGenerateSchemaResponse generate_schema = 7; -
hasQueryTable
boolean hasQueryTable().io.deephaven.proto.jdbc.JdbcQueryTableResponse query_table = 8;- Returns:
- Whether the queryTable field is set.
-
getQueryTable
JdbcQueryTableResponse getQueryTable().io.deephaven.proto.jdbc.JdbcQueryTableResponse query_table = 8;- Returns:
- The queryTable.
-
getQueryTableOrBuilder
JdbcQueryTableResponseOrBuilder getQueryTableOrBuilder().io.deephaven.proto.jdbc.JdbcQueryTableResponse query_table = 8; -
hasImportSource
boolean hasImportSource().io.deephaven.proto.jdbc.ImportSourceResponse import_source = 9;- Returns:
- Whether the importSource field is set.
-
getImportSource
ImportSourceResponse getImportSource().io.deephaven.proto.jdbc.ImportSourceResponse import_source = 9;- Returns:
- The importSource.
-
getImportSourceOrBuilder
ImportSourceResponseOrBuilder getImportSourceOrBuilder().io.deephaven.proto.jdbc.ImportSourceResponse import_source = 9; -
getResponseCase
JdbcPluginResponse.ResponseCase getResponseCase()
-