Interface Csv.CsvRowOrBuilder (0.2.0)

public static interface Csv.CsvRowOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

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
NameDescription
indexint

The index of the element to return.

Returns
TypeDescription
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
NameDescription
indexint

The index of the value to return.

Returns
TypeDescription
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
TypeDescription
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
TypeDescription
List<String>

A list containing the entries.