Interface Csv.CsvRowOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Csv.CsvRow
,Csv.CsvRow.Builder
- Enclosing class:
- Csv
public static interface Csv.CsvRowOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getEntries(int index)
The data entries in a CSV file row, as a string array rather than a single comma-separated string.com.google.protobuf.ByteString
getEntriesBytes(int index)
The data entries in a CSV file row, as a string array rather than a single comma-separated string.int
getEntriesCount()
The data entries in a CSV file row, as a string array rather than a single comma-separated string.List<String>
getEntriesList()
The data entries in a CSV file row, as a string array rather than a single comma-separated string.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getEntriesList
List<String> getEntriesList()
The data entries in a CSV file row, as a string array rather than a single comma-separated string.
repeated string entries = 1;
- Returns:
- A list containing the entries.
-
getEntriesCount
int getEntriesCount()
The data entries in a CSV file row, as a string array rather than a single comma-separated string.
repeated string entries = 1;
- Returns:
- The count of entries.
-
getEntries
String getEntries(int index)
The data entries in a CSV file row, as a string array rather than a single comma-separated string.
repeated string entries = 1;
- Parameters:
index
- The index of the element to return.- Returns:
- The entries at the given index.
-
getEntriesBytes
com.google.protobuf.ByteString getEntriesBytes(int index)
The data entries in a CSV file row, as a string array rather than a single comma-separated string.
repeated string entries = 1;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the entries at the given index.
-
-