com.jimmoores.quandl.example.Example4 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 com.jimmoores.quandl.MetaDataRequest;
import com.jimmoores.quandl.MetaDataResult;
import com.jimmoores.quandl.QuandlSession;
/**
* Example 4.
*/
public final class Example4 {
/**
* Private default constructor.
*/
private Example4() {
}
/**
* The main body of the code.
*/
private void run() {
QuandlSession session = QuandlSession.create();
MetaDataResult metaData = session.getMetaData(MetaDataRequest.of("WIKI/AAPL"));
System.out.println(metaData.toPrettyPrintedString());
}
/**
* Main entry point.
* @param args command line arguments
*/
public static void main(final String[] args) {
Example4 example = new Example4();
example.run();
}
}