Interface OracleTableOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
OracleTable
,OracleTable.Builder
public interface OracleTableOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OracleColumn
getOracleColumns(int index)
Oracle columns in the schema.int
getOracleColumnsCount()
Oracle columns in the schema.List<OracleColumn>
getOracleColumnsList()
Oracle columns in the schema.OracleColumnOrBuilder
getOracleColumnsOrBuilder(int index)
Oracle columns in the schema.List<? extends OracleColumnOrBuilder>
getOracleColumnsOrBuilderList()
Oracle columns in the schema.String
getTableName()
Table name.com.google.protobuf.ByteString
getTableNameBytes()
Table name.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTableName
String getTableName()
Table name.
string table_name = 1;
- Returns:
- The tableName.
-
getTableNameBytes
com.google.protobuf.ByteString getTableNameBytes()
Table name.
string table_name = 1;
- Returns:
- The bytes for tableName.
-
getOracleColumnsList
List<OracleColumn> getOracleColumnsList()
Oracle columns in the schema. When unspecified as part of inclue/exclude lists, includes/excludes everything.
repeated .google.cloud.datastream.v1alpha1.OracleColumn oracle_columns = 2;
-
getOracleColumns
OracleColumn getOracleColumns(int index)
Oracle columns in the schema. When unspecified as part of inclue/exclude lists, includes/excludes everything.
repeated .google.cloud.datastream.v1alpha1.OracleColumn oracle_columns = 2;
-
getOracleColumnsCount
int getOracleColumnsCount()
Oracle columns in the schema. When unspecified as part of inclue/exclude lists, includes/excludes everything.
repeated .google.cloud.datastream.v1alpha1.OracleColumn oracle_columns = 2;
-
getOracleColumnsOrBuilderList
List<? extends OracleColumnOrBuilder> getOracleColumnsOrBuilderList()
Oracle columns in the schema. When unspecified as part of inclue/exclude lists, includes/excludes everything.
repeated .google.cloud.datastream.v1alpha1.OracleColumn oracle_columns = 2;
-
getOracleColumnsOrBuilder
OracleColumnOrBuilder getOracleColumnsOrBuilder(int index)
Oracle columns in the schema. When unspecified as part of inclue/exclude lists, includes/excludes everything.
repeated .google.cloud.datastream.v1alpha1.OracleColumn oracle_columns = 2;
-
-