Package | Description |
---|---|
com.github.gwtd3.api | |
com.github.gwtd3.api.dsv |
Modifier and Type | Method and Description |
---|---|
static <T> Dsv<T> |
D3.csv(String url,
DsvObjectAccessor<T> accessor)
Issues an HTTP GET request for the comma-separated values (CSV) file at
the specified url.
|
static <T> Dsv<T> |
D3.csv(String url,
DsvObjectAccessor<T> accessor,
DsvCallback<T> callback)
Issues an HTTP GET request for the comma-separated values (CSV) file at
the specified url.
|
static <T> Dsv<T> |
D3.tsv(String url,
DsvObjectAccessor<T> accessor)
Issues an HTTP GET request for the comma-separated values (TSV) file at
the specified url.
|
static <T> Dsv<T> |
D3.tsv(String url,
DsvObjectAccessor<T> accessor,
DsvCallback<T> callback)
Issues an HTTP GET request for the comma-separated values (TSV) file at
the specified url.
|
Modifier and Type | Method and Description |
---|---|
DsvRows<T> |
Dsv.parse(String csvContent,
DsvObjectAccessor<T> accessor)
Parse a CSV string into objects using the header row.
|
Dsv<T> |
Dsv.row(DsvObjectAccessor<T> accessor)
Defines an accessor to invoke on each rows.
|
Copyright © 2015 gwt-d3. All rights reserved.