All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.barchart.ondemand.api.responses.History Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package com.barchart.ondemand.api.responses;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;

import com.fasterxml.jackson.annotation.JsonProperty;

public class History extends ResponseBase {

	@JsonProperty("results")
	private List results = new ArrayList();

	public Collection all() {
		if (results == null) {
			return new ArrayList();
		}
		return Collections.unmodifiableCollection(results);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy