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

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

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

import java.util.ArrayList;

public class Composite {
	
	private String dataType;
	private ArrayList coordinates;
	private ArrayList> values;
	public String getDataType() {
		return dataType;
	}
	public void setDataType(String dataType) {
		this.dataType = dataType;
	}
	public ArrayList getCoordinates() {
		return coordinates;
	}
	public void setCoordinates(ArrayList coordinates) {
		this.coordinates = coordinates;
	}
	public ArrayList> getValues() {
		return values;
	}
	public void setValues(ArrayList> values) {
		this.values = values;
	}
	
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy