Interface CsvOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Csv
,Csv.Builder
public interface CsvOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Csv.CsvRow
getDataRows(int index)
The list of data rows in a CSV file, as string arrays rather than as a single comma-separated string.int
getDataRowsCount()
The list of data rows in a CSV file, as string arrays rather than as a single comma-separated string.List<Csv.CsvRow>
getDataRowsList()
The list of data rows in a CSV file, as string arrays rather than as a single comma-separated string.Csv.CsvRowOrBuilder
getDataRowsOrBuilder(int index)
The list of data rows in a CSV file, as string arrays rather than as a single comma-separated string.List<? extends Csv.CsvRowOrBuilder>
getDataRowsOrBuilderList()
The list of data rows in a CSV file, as string arrays rather than as a single comma-separated string.String
getHeaders(int index)
The list of headers for data columns in a CSV file.com.google.protobuf.ByteString
getHeadersBytes(int index)
The list of headers for data columns in a CSV file.int
getHeadersCount()
The list of headers for data columns in a CSV file.List<String>
getHeadersList()
The list of headers for data columns in a CSV file.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getHeadersList
List<String> getHeadersList()
The list of headers for data columns in a CSV file.
repeated string headers = 1;
- Returns:
- A list containing the headers.
-
getHeadersCount
int getHeadersCount()
The list of headers for data columns in a CSV file.
repeated string headers = 1;
- Returns:
- The count of headers.
-
getHeaders
String getHeaders(int index)
The list of headers for data columns in a CSV file.
repeated string headers = 1;
- Parameters:
index
- The index of the element to return.- Returns:
- The headers at the given index.
-
getHeadersBytes
com.google.protobuf.ByteString getHeadersBytes(int index)
The list of headers for data columns in a CSV file.
repeated string headers = 1;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the headers at the given index.
-
getDataRowsList
List<Csv.CsvRow> getDataRowsList()
The list of data rows in a CSV file, as string arrays rather than as a single comma-separated string.
repeated .google.cloud.advisorynotifications.v1.Csv.CsvRow data_rows = 2;
-
getDataRows
Csv.CsvRow getDataRows(int index)
The list of data rows in a CSV file, as string arrays rather than as a single comma-separated string.
repeated .google.cloud.advisorynotifications.v1.Csv.CsvRow data_rows = 2;
-
getDataRowsCount
int getDataRowsCount()
The list of data rows in a CSV file, as string arrays rather than as a single comma-separated string.
repeated .google.cloud.advisorynotifications.v1.Csv.CsvRow data_rows = 2;
-
getDataRowsOrBuilderList
List<? extends Csv.CsvRowOrBuilder> getDataRowsOrBuilderList()
The list of data rows in a CSV file, as string arrays rather than as a single comma-separated string.
repeated .google.cloud.advisorynotifications.v1.Csv.CsvRow data_rows = 2;
-
getDataRowsOrBuilder
Csv.CsvRowOrBuilder getDataRowsOrBuilder(int index)
The list of data rows in a CSV file, as string arrays rather than as a single comma-separated string.
repeated .google.cloud.advisorynotifications.v1.Csv.CsvRow data_rows = 2;
-
-