public final class MultiDataSetRequest 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 |
MultiDataSetRequest.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) |
org.threeten.bp.LocalDate |
getEndDate() |
Frequency |
getFrequency() |
Integer |
getMaxRows() |
List<QuandlCodeRequest> |
getQuandlCodeRequests() |
SortOrder |
getSortOrder() |
org.threeten.bp.LocalDate |
getStartDate() |
Transform |
getTransform() |
int |
hashCode() |
String |
toString() |
public List<QuandlCodeRequest> getQuandlCodeRequests()
public org.threeten.bp.LocalDate getStartDate()
public org.threeten.bp.LocalDate getEndDate()
public Frequency getFrequency()
public Integer getMaxRows()
public Transform getTransform()
public SortOrder getSortOrder()
public javax.ws.rs.client.WebTarget appendPathAndQueryParameters(javax.ws.rs.client.WebTarget webTarget)
webTarget - a web target used by the Jersey Client API, not nullCopyright 2014-Present by Jim Moores
${javadoc.footer.license}