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

com.barchart.ondemand.api.responses.Charts 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 Charts extends ResponseBase {

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

	public Collection all() {
		return Collections.unmodifiableCollection(results);
	}

	public Chart bySymbol(final String symbol) {
		if (symbol == null) {
			return null;
		}

		for (Chart fh : results) {
			if (fh.getSymbol() != null && fh.getSymbol().equalsIgnoreCase(symbol)) {
				return fh;
			}
		}

		return null;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy