com.jimmoores.quandl.example.Example6 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quandl-jersey1 Show documentation
Show all versions of quandl-jersey1 Show documentation
Quandl REST API wrapper for Java
The newest version!
package com.jimmoores.quandl.example;
import java.util.Map;
import com.jimmoores.quandl.HeaderDefinition;
import com.jimmoores.quandl.MultiMetaDataRequest;
import com.jimmoores.quandl.QuandlSession;
import com.jimmoores.quandl.util.PrettyPrinter;
/**
* Example 6.
*/
public final class Example6 {
/**
* Private default constructor.
*/
private Example6() {
}
/**
* The main body of the code.
*/
private void run() {
QuandlSession session = QuandlSession.create();
Map headers = session.getMultipleHeaderDefinition(MultiMetaDataRequest.of("WIKI/AAPL", "DOE/RWTC", "WIKI/MSFT"));
System.out.println(PrettyPrinter.toPrettyPrintedString(headers));
}
/**
* Main entry point.
* @param args command line arguments
*/
public static void main(final String[] args) {
Example6 example = new Example6();
example.run();
}
}