Interface ImportedDataInfo.TableDefinition.CsvOptionsOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      com.google.protobuf.BoolValue getAllowJaggedRows()
      Accept rows that are missing trailing optional columns.
      com.google.protobuf.BoolValueOrBuilder getAllowJaggedRowsOrBuilder()
      Accept rows that are missing trailing optional columns.
      com.google.protobuf.BoolValue getAllowQuotedNewlines()
      Whether CSV files are allowed to have quoted newlines.
      com.google.protobuf.BoolValueOrBuilder getAllowQuotedNewlinesOrBuilder()
      Whether CSV files are allowed to have quoted newlines.
      com.google.protobuf.StringValue getFieldDelimiter()
      The delimiter.
      com.google.protobuf.StringValueOrBuilder getFieldDelimiterOrBuilder()
      The delimiter.
      com.google.protobuf.StringValue getQuoteChar()
      The quote character.
      com.google.protobuf.StringValueOrBuilder getQuoteCharOrBuilder()
      The quote character.
      com.google.protobuf.Int64Value getSkipLeadingRows()
      Number of leading rows to skip.
      com.google.protobuf.Int64ValueOrBuilder getSkipLeadingRowsOrBuilder()
      Number of leading rows to skip.
      boolean hasAllowJaggedRows()
      Accept rows that are missing trailing optional columns.
      boolean hasAllowQuotedNewlines()
      Whether CSV files are allowed to have quoted newlines.
      boolean hasFieldDelimiter()
      The delimiter.
      boolean hasQuoteChar()
      The quote character.
      boolean hasSkipLeadingRows()
      Number of leading rows to skip.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • 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;