Interface CSVOptionsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CSVOptions
,CSVOptions.Builder
public interface CSVOptionsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDelimiter()
Delimiter characters in CSV.com.google.protobuf.ByteString
getDelimiterBytes()
Delimiter characters in CSV.boolean
getHeaderRequired()
If set, will include a header row in the CSV report.String
getRecordSeparator()
Record separator characters in CSV.com.google.protobuf.ByteString
getRecordSeparatorBytes()
Record separator characters in CSV.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getRecordSeparator
String getRecordSeparator()
Record separator characters in CSV.
string record_separator = 1;
- Returns:
- The recordSeparator.
-
getRecordSeparatorBytes
com.google.protobuf.ByteString getRecordSeparatorBytes()
Record separator characters in CSV.
string record_separator = 1;
- Returns:
- The bytes for recordSeparator.
-
getDelimiter
String getDelimiter()
Delimiter characters in CSV.
string delimiter = 2;
- Returns:
- The delimiter.
-
getDelimiterBytes
com.google.protobuf.ByteString getDelimiterBytes()
Delimiter characters in CSV.
string delimiter = 2;
- Returns:
- The bytes for delimiter.
-
getHeaderRequired
boolean getHeaderRequired()
If set, will include a header row in the CSV report.
bool header_required = 3;
- Returns:
- The headerRequired.
-
-