Package | Description |
---|---|
com.github.gwtd3.api.dsv |
Modifier and Type | Method and Description |
---|---|
DsvRows<DsvRow> |
Dsv.parse(String csvContent)
Parse a CSV string into objects using the header row.
|
DsvRows<T> |
Dsv.parse(String csvContent,
DsvObjectAccessor<T> accessor)
Parse a CSV string into objects using the header row.
|
DsvRows<com.google.gwt.core.client.JsArrayString> |
Dsv.parseRows(String csvContent)
Parses the specified string, which is the contents of a CSV file,
returning an array of arrays representing the parsed rows.
|
DsvRows<T> |
Dsv.parseRows(String csvContent,
DsvArrayAccessor<T> accessor)
Parses the specified string, which is the contents of a CSV file,
returning an array of arrays representing the parsed rows.
|
Modifier and Type | Method and Description |
---|---|
void |
DsvCallback.get(com.google.gwt.core.client.JavaScriptObject error,
DsvRows<T> data)
When the CSV data is available, the specified callback will be invoked
with the parsed rows as the argument.
|
Copyright © 2015 gwt-d3. All rights reserved.