Interface Zone.DiscoverySpec.CsvOptionsOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getDelimiter()
      Optional.
      com.google.protobuf.ByteString getDelimiterBytes()
      Optional.
      boolean getDisableTypeInference()
      Optional.
      String getEncoding()
      Optional.
      com.google.protobuf.ByteString getEncodingBytes()
      Optional.
      int getHeaderRows()
      Optional.
      • 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

      • getHeaderRows

        int getHeaderRows()
         Optional. The number of rows to interpret as header rows that should be
         skipped when reading data rows.
         
        int32 header_rows = 1 [(.google.api.field_behavior) = OPTIONAL];
        Returns:
        The headerRows.
      • getDelimiter

        String getDelimiter()
         Optional. The delimiter being used to separate values. This defaults to
         ','.
         
        string delimiter = 2 [(.google.api.field_behavior) = OPTIONAL];
        Returns:
        The delimiter.
      • getDelimiterBytes

        com.google.protobuf.ByteString getDelimiterBytes()
         Optional. The delimiter being used to separate values. This defaults to
         ','.
         
        string delimiter = 2 [(.google.api.field_behavior) = OPTIONAL];
        Returns:
        The bytes for delimiter.
      • getEncoding

        String getEncoding()
         Optional. The character encoding of the data. The default is UTF-8.
         
        string encoding = 3 [(.google.api.field_behavior) = OPTIONAL];
        Returns:
        The encoding.
      • getEncodingBytes

        com.google.protobuf.ByteString getEncodingBytes()
         Optional. The character encoding of the data. The default is UTF-8.
         
        string encoding = 3 [(.google.api.field_behavior) = OPTIONAL];
        Returns:
        The bytes for encoding.
      • getDisableTypeInference

        boolean getDisableTypeInference()
         Optional. Whether to disable the inference of data type for CSV data.
         If true, all columns will be registered as strings.
         
        bool disable_type_inference = 4 [(.google.api.field_behavior) = OPTIONAL];
        Returns:
        The disableTypeInference.