Interface TableSchemaOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TableSchema,TableSchema.Builder
public interface TableSchemaOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TableFieldSchemagetFields(int index)Describes the fields in a table.intgetFieldsCount()Describes the fields in a table.List<TableFieldSchema>getFieldsList()Describes the fields in a table.TableFieldSchemaOrBuildergetFieldsOrBuilder(int index)Describes the fields in a table.List<? extends TableFieldSchemaOrBuilder>getFieldsOrBuilderList()Describes the fields in a table.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getFieldsList
List<TableFieldSchema> getFieldsList()
Describes the fields in a table.
repeated .google.cloud.bigquery.storage.v1beta2.TableFieldSchema fields = 1;
-
getFields
TableFieldSchema getFields(int index)
Describes the fields in a table.
repeated .google.cloud.bigquery.storage.v1beta2.TableFieldSchema fields = 1;
-
getFieldsCount
int getFieldsCount()
Describes the fields in a table.
repeated .google.cloud.bigquery.storage.v1beta2.TableFieldSchema fields = 1;
-
getFieldsOrBuilderList
List<? extends TableFieldSchemaOrBuilder> getFieldsOrBuilderList()
Describes the fields in a table.
repeated .google.cloud.bigquery.storage.v1beta2.TableFieldSchema fields = 1;
-
getFieldsOrBuilder
TableFieldSchemaOrBuilder getFieldsOrBuilder(int index)
Describes the fields in a table.
repeated .google.cloud.bigquery.storage.v1beta2.TableFieldSchema fields = 1;
-
-