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

com.barchart.ondemand.api.responses.Momentums 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.List;

import com.fasterxml.jackson.annotation.JsonProperty;

public class Momentums extends ResponseBase {

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

	public List all() {
		if (results == null) {
			return new ArrayList();
		}
		return results;
	}

	public Momentum byExchange(final String exchange) {
		if (exchange == null) {
			return null;
		}

		for (Momentum p : all()) {
			if (p.getExchange() != null && p.getExchange().equalsIgnoreCase(exchange)) {
				return p;
			}
		}

		return null;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy