public static interface Csv.CsvRowOrBuilder extends MessageOrBuilderImplements
MessageOrBuilderMethods
getEntries(int index)
public abstract 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;
| Parameter | |
|---|---|
| Name | Description |
index |
intThe index of the element to return. |
| Returns | |
|---|---|
| Type | Description |
String |
The entries at the given index. |
getEntriesBytes(int index)
public abstract 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;
| Parameter | |
|---|---|
| Name | Description |
index |
intThe index of the value to return. |
| Returns | |
|---|---|
| Type | Description |
ByteString |
The bytes of the entries at the given index. |
getEntriesCount()
public abstract 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 | |
|---|---|
| Type | Description |
int |
The count of entries. |
getEntriesList()
public abstract 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 | |
|---|---|
| Type | Description |
List<String> |
A list containing the entries. |