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

org.epos.library.covjson.Channel Maven / Gradle / Ivy

The newest version!
package org.epos.library.covjson;

import java.util.ArrayList;
import java.util.HashMap;

public class Channel {
	
	private String label;
	private HashMap> axis = new HashMap>();
	private ArrayList temporal = new ArrayList();
	private Double latitude = null, longitude = null;
	private HashMap ranges = new HashMap();
	private HashMap parameters = new HashMap();
	
	public String getLabel() {
		return label;
	}
	public void setLabel(String label) {
		this.label = label;
	}
	public HashMap> getAxis() {
		return axis;
	}
	public void setAxis(HashMap> axis) {
		this.axis = axis;
	}
	public ArrayList getTemporal() {
		return temporal;
	}
	public void setTemporal(ArrayList temporal) {
		this.temporal = temporal;
	}
	public Double getLatitude() {
		return latitude;
	}
	public void setLatitude(Double latitude) {
		this.latitude = latitude;
	}
	public Double getLongitude() {
		return longitude;
	}
	public void setLongitude(Double longitude) {
		this.longitude = longitude;
	}
	public HashMap getRanges() {
		return ranges;
	}
	public void setRanges(HashMap ranges) {
		this.ranges = ranges;
	}
	public HashMap getParameters() {
		return parameters;
	}
	public void setParameters(HashMap parameters) {
		this.parameters = parameters;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy