Interface ImportedDataInfo.FieldSchemaOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ImportedDataInfo.FieldSchema,ImportedDataInfo.FieldSchema.Builder
- Enclosing class:
- ImportedDataInfo
public static interface ImportedDataInfo.FieldSchemaOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDescription()Description for this field.com.google.protobuf.ByteStringgetDescriptionBytes()Description for this field.StringgetFieldName()Field name.com.google.protobuf.ByteStringgetFieldNameBytes()Field name.booleangetIsRepeated()Is field repeated.ImportedDataInfo.RecordSchemagetSchema()Present iff type == RECORD.ImportedDataInfo.RecordSchemaOrBuildergetSchemaOrBuilder()Present iff type == RECORD.ImportedDataInfo.FieldSchema.TypegetType()Field typeintgetTypeValue()Field typebooleanhasSchema()Present iff type == RECORD.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getFieldName
String getFieldName()
Field name. Matches: [A-Za-z_][A-Za-z_0-9]{0,127}string field_name = 1;
-
getFieldNameBytes
com.google.protobuf.ByteString getFieldNameBytes()
Field name. Matches: [A-Za-z_][A-Za-z_0-9]{0,127}string field_name = 1;
-
getTypeValue
int getTypeValue()
Field type
.google.cloud.bigquery.datatransfer.v1.ImportedDataInfo.FieldSchema.Type type = 2;
-
getType
ImportedDataInfo.FieldSchema.Type getType()
Field type
.google.cloud.bigquery.datatransfer.v1.ImportedDataInfo.FieldSchema.Type type = 2;
-
getIsRepeated
boolean getIsRepeated()
Is field repeated.
bool is_repeated = 3;
-
getDescription
String getDescription()
Description for this field.
string description = 4;
-
getDescriptionBytes
com.google.protobuf.ByteString getDescriptionBytes()
Description for this field.
string description = 4;
-
hasSchema
boolean hasSchema()
Present iff type == RECORD.
.google.cloud.bigquery.datatransfer.v1.ImportedDataInfo.RecordSchema schema = 5;
-
getSchema
ImportedDataInfo.RecordSchema getSchema()
Present iff type == RECORD.
.google.cloud.bigquery.datatransfer.v1.ImportedDataInfo.RecordSchema schema = 5;
-
getSchemaOrBuilder
ImportedDataInfo.RecordSchemaOrBuilder getSchemaOrBuilder()
Present iff type == RECORD.
.google.cloud.bigquery.datatransfer.v1.ImportedDataInfo.RecordSchema schema = 5;
-
-