public final class DataSetRequest extends Object
DataSetRequest.Builder.of("WIKI/APPL")
.withColumn(4)
.withFrequency(Frequency.ANNUAL)
.withStartDate(LocalDate.of(2000, 1, 1))
.withEndDate(LocalDate.of(2010, 1, 1)
.withSortOrder(SortOrder.ASCENDING)
.withTransform(Transform.RDIFF)
.build();
The resulting object should be passed into one of the methods in the QuandlConnector class. If anything is
not specified, it will not be included in the request and so the results will reflect the default
Quandl behavior (e.g. all columns, no row limits, etc).| Modifier and Type | Class and Description |
|---|---|
static class |
DataSetRequest.Builder
Inner builder class.
|
| Modifier and Type | Method and Description |
|---|---|
javax.ws.rs.client.WebTarget |
appendPathAndQueryParameters(javax.ws.rs.client.WebTarget webTarget)
Append any specified parameters to the provided WebTarget.
|
boolean |
equals(Object obj) |
Frequency |
getFrequency() |
String |
getQuandlCode() |
int |
hashCode() |
String |
toString() |
public String getQuandlCode()
public Frequency getFrequency()
public javax.ws.rs.client.WebTarget appendPathAndQueryParameters(javax.ws.rs.client.WebTarget webTarget)
webTarget - a web target used by the Jersey Client APICopyright 2014-Present by Jim Moores
${javadoc.footer.license}