Interface ImportedDataInfo.TableDefinition.CsvOptionsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ImportedDataInfo.TableDefinition.CsvOptions,ImportedDataInfo.TableDefinition.CsvOptions.Builder
- Enclosing class:
- ImportedDataInfo.TableDefinition
public static interface ImportedDataInfo.TableDefinition.CsvOptionsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.BoolValuegetAllowJaggedRows()Accept rows that are missing trailing optional columns.com.google.protobuf.BoolValueOrBuildergetAllowJaggedRowsOrBuilder()Accept rows that are missing trailing optional columns.com.google.protobuf.BoolValuegetAllowQuotedNewlines()Whether CSV files are allowed to have quoted newlines.com.google.protobuf.BoolValueOrBuildergetAllowQuotedNewlinesOrBuilder()Whether CSV files are allowed to have quoted newlines.com.google.protobuf.StringValuegetFieldDelimiter()The delimiter.com.google.protobuf.StringValueOrBuildergetFieldDelimiterOrBuilder()The delimiter.com.google.protobuf.StringValuegetQuoteChar()The quote character.com.google.protobuf.StringValueOrBuildergetQuoteCharOrBuilder()The quote character.com.google.protobuf.Int64ValuegetSkipLeadingRows()Number of leading rows to skip.com.google.protobuf.Int64ValueOrBuildergetSkipLeadingRowsOrBuilder()Number of leading rows to skip.booleanhasAllowJaggedRows()Accept rows that are missing trailing optional columns.booleanhasAllowQuotedNewlines()Whether CSV files are allowed to have quoted newlines.booleanhasFieldDelimiter()The delimiter.booleanhasQuoteChar()The quote character.booleanhasSkipLeadingRows()Number of leading rows to skip.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasFieldDelimiter
boolean hasFieldDelimiter()
The delimiter. We currently restrict this to U+0001 to U+00FF and apply additional constraints during validation.
.google.protobuf.StringValue field_delimiter = 1;
-
getFieldDelimiter
com.google.protobuf.StringValue getFieldDelimiter()
The delimiter. We currently restrict this to U+0001 to U+00FF and apply additional constraints during validation.
.google.protobuf.StringValue field_delimiter = 1;
-
getFieldDelimiterOrBuilder
com.google.protobuf.StringValueOrBuilder getFieldDelimiterOrBuilder()
The delimiter. We currently restrict this to U+0001 to U+00FF and apply additional constraints during validation.
.google.protobuf.StringValue field_delimiter = 1;
-
hasAllowQuotedNewlines
boolean hasAllowQuotedNewlines()
Whether CSV files are allowed to have quoted newlines. If quoted newlines are allowed, we can't split CSV files.
.google.protobuf.BoolValue allow_quoted_newlines = 2;
-
getAllowQuotedNewlines
com.google.protobuf.BoolValue getAllowQuotedNewlines()
Whether CSV files are allowed to have quoted newlines. If quoted newlines are allowed, we can't split CSV files.
.google.protobuf.BoolValue allow_quoted_newlines = 2;
-
getAllowQuotedNewlinesOrBuilder
com.google.protobuf.BoolValueOrBuilder getAllowQuotedNewlinesOrBuilder()
Whether CSV files are allowed to have quoted newlines. If quoted newlines are allowed, we can't split CSV files.
.google.protobuf.BoolValue allow_quoted_newlines = 2;
-
hasQuoteChar
boolean hasQuoteChar()
The quote character. We currently restrict this to U+0000 to U+00FF and apply additional constraints during validation. Set to '\0' to indicate no quote is used.
.google.protobuf.StringValue quote_char = 3;
-
getQuoteChar
com.google.protobuf.StringValue getQuoteChar()
The quote character. We currently restrict this to U+0000 to U+00FF and apply additional constraints during validation. Set to '\0' to indicate no quote is used.
.google.protobuf.StringValue quote_char = 3;
-
getQuoteCharOrBuilder
com.google.protobuf.StringValueOrBuilder getQuoteCharOrBuilder()
The quote character. We currently restrict this to U+0000 to U+00FF and apply additional constraints during validation. Set to '\0' to indicate no quote is used.
.google.protobuf.StringValue quote_char = 3;
-
hasSkipLeadingRows
boolean hasSkipLeadingRows()
Number of leading rows to skip.
.google.protobuf.Int64Value skip_leading_rows = 4;
-
getSkipLeadingRows
com.google.protobuf.Int64Value getSkipLeadingRows()
Number of leading rows to skip.
.google.protobuf.Int64Value skip_leading_rows = 4;
-
getSkipLeadingRowsOrBuilder
com.google.protobuf.Int64ValueOrBuilder getSkipLeadingRowsOrBuilder()
Number of leading rows to skip.
.google.protobuf.Int64Value skip_leading_rows = 4;
-
hasAllowJaggedRows
boolean hasAllowJaggedRows()
Accept rows that are missing trailing optional columns.
.google.protobuf.BoolValue allow_jagged_rows = 5;
-
getAllowJaggedRows
com.google.protobuf.BoolValue getAllowJaggedRows()
Accept rows that are missing trailing optional columns.
.google.protobuf.BoolValue allow_jagged_rows = 5;
-
getAllowJaggedRowsOrBuilder
com.google.protobuf.BoolValueOrBuilder getAllowJaggedRowsOrBuilder()
Accept rows that are missing trailing optional columns.
.google.protobuf.BoolValue allow_jagged_rows = 5;
-
-