Interface GetDatabaseDdlResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
GetDatabaseDdlResponse,GetDatabaseDdlResponse.Builder
public interface GetDatabaseDdlResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetStatements(int index)A list of formatted DDL statements defining the schema of the database specified in the request.com.google.protobuf.ByteStringgetStatementsBytes(int index)A list of formatted DDL statements defining the schema of the database specified in the request.intgetStatementsCount()A list of formatted DDL statements defining the schema of the database specified in the request.List<String>getStatementsList()A list of formatted DDL statements defining the schema of the database specified in the request.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getStatementsList
List<String> getStatementsList()
A list of formatted DDL statements defining the schema of the database specified in the request.
repeated string statements = 1;- Returns:
- A list containing the statements.
-
getStatementsCount
int getStatementsCount()
A list of formatted DDL statements defining the schema of the database specified in the request.
repeated string statements = 1;- Returns:
- The count of statements.
-
getStatements
String getStatements(int index)
A list of formatted DDL statements defining the schema of the database specified in the request.
repeated string statements = 1;- Parameters:
index- The index of the element to return.- Returns:
- The statements at the given index.
-
getStatementsBytes
com.google.protobuf.ByteString getStatementsBytes(int index)
A list of formatted DDL statements defining the schema of the database specified in the request.
repeated string statements = 1;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the statements at the given index.
-
-