org.epos.library.covjson.Composite Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of epos-covjson-java-library Show documentation
Show all versions of epos-covjson-java-library Show documentation
Java library to create and manipulate EPOS COvJSON
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;
}
}