Package com.google.cloud.dataplex.v1
Interface StorageFormat.CsvOptionsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
StorageFormat.CsvOptions
,StorageFormat.CsvOptions.Builder
- Enclosing class:
- StorageFormat
public static interface StorageFormat.CsvOptionsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDelimiter()
Optional.com.google.protobuf.ByteString
getDelimiterBytes()
Optional.String
getEncoding()
Optional.com.google.protobuf.ByteString
getEncodingBytes()
Optional.int
getHeaderRows()
Optional.String
getQuote()
Optional.com.google.protobuf.ByteString
getQuoteBytes()
Optional.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getEncoding
String getEncoding()
Optional. The character encoding of the data. Accepts "US-ASCII", "UTF-8", and "ISO-8859-1". Defaults to UTF-8 if unspecified.
string encoding = 1 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The encoding.
-
getEncodingBytes
com.google.protobuf.ByteString getEncodingBytes()
Optional. The character encoding of the data. Accepts "US-ASCII", "UTF-8", and "ISO-8859-1". Defaults to UTF-8 if unspecified.
string encoding = 1 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The bytes for encoding.
-
getHeaderRows
int getHeaderRows()
Optional. The number of rows to interpret as header rows that should be skipped when reading data rows. Defaults to 0.
int32 header_rows = 2 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The headerRows.
-
getDelimiter
String getDelimiter()
Optional. The delimiter used to separate values. Defaults to ','.
string delimiter = 3 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The delimiter.
-
getDelimiterBytes
com.google.protobuf.ByteString getDelimiterBytes()
Optional. The delimiter used to separate values. Defaults to ','.
string delimiter = 3 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The bytes for delimiter.
-
getQuote
String getQuote()
Optional. The character used to quote column values. Accepts '"' (double quotation mark) or ''' (single quotation mark). Defaults to '"' (double quotation mark) if unspecified.
string quote = 4 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The quote.
-
getQuoteBytes
com.google.protobuf.ByteString getQuoteBytes()
Optional. The character used to quote column values. Accepts '"' (double quotation mark) or ''' (single quotation mark). Defaults to '"' (double quotation mark) if unspecified.
string quote = 4 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The bytes for quote.
-
-