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 String
getDescription()
Description for this field.com.google.protobuf.ByteString
getDescriptionBytes()
Description for this field.String
getFieldName()
Field name.com.google.protobuf.ByteString
getFieldNameBytes()
Field name.boolean
getIsRepeated()
Is field repeated.ImportedDataInfo.RecordSchema
getSchema()
Present iff type == RECORD.ImportedDataInfo.RecordSchemaOrBuilder
getSchemaOrBuilder()
Present iff type == RECORD.ImportedDataInfo.FieldSchema.Type
getType()
Field typeint
getTypeValue()
Field typeboolean
hasSchema()
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;
-
-